diff --git a/2.5DHero/2.5DHero/2.5DHero.vbproj b/2.5DHero/2.5DHero/2.5DHero.vbproj index 88a3a2ac7..c0010ab88 100644 --- a/2.5DHero/2.5DHero/2.5DHero.vbproj +++ b/2.5DHero/2.5DHero/2.5DHero.vbproj @@ -304,7 +304,7 @@ - + @@ -364,6 +364,7 @@ + @@ -1714,7 +1715,6 @@ - @@ -1776,8 +1776,6 @@ - - @@ -1793,7 +1791,6 @@ - @@ -1810,59 +1807,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/2.5DHero/2.5DHero/Battle/BattleSystemV2/Battle.vb b/2.5DHero/2.5DHero/Battle/BattleSystemV2/Battle.vb index ac11c8d86..03f698573 100644 --- a/2.5DHero/2.5DHero/Battle/BattleSystemV2/Battle.vb +++ b/2.5DHero/2.5DHero/Battle/BattleSystemV2/Battle.vb @@ -6694,7 +6694,7 @@ For i = 0 To expPokemon.Count - 1 Dim PokeIndex As Integer = expPokemon(i) - If Core.Player.Pokemons(PokeIndex).Level < CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100")) Then + If Core.Player.Pokemons(PokeIndex).Level < CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100")) Then Dim EXP As Integer = BattleCalculation.GainExp(Core.Player.Pokemons(PokeIndex), BattleScreen, expPokemon) BattleScreen.BattleQuery.Add(New TextQueryObject(Core.Player.Pokemons(PokeIndex).GetDisplayName() & " gained " & EXP & " experience points.")) diff --git a/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleMenu.vb b/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleMenu.vb index 8f8010848..56a713441 100644 --- a/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleMenu.vb +++ b/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleMenu.vb @@ -97,7 +97,7 @@ Dim NeedExp As Integer = NextLvExp - currentExp - If p.Level = CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100")) Then + If p.Level = CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100")) Then NextLvExp = 0 Else Dim barPercentage As Integer = CInt((currentExp / NextLvExp) * 100) @@ -977,7 +977,7 @@ If Item.IsBall = True Then Core.Player.Inventory.RemoveItem(itemID, 1) If TempBattleScreen.IsTrainerBattle = False Then - If BattleScreen.CanCatch = True Or CBool(OldGameModeManager.GetGameRuleValue("OnlyCaptureFirst", "0")) = True And Core.Player.PokeFiles.Contains(BattleScreen.TempPokeFile) = True Then + If BattleScreen.CanCatch = True Or CBool(GameModeManager.GetGameRuleValue("OnlyCaptureFirst", "0")) = True And Core.Player.PokeFiles.Contains(BattleScreen.TempPokeFile) = True Then TempBattleScreen.BattleQuery.Clear() TempBattleScreen.BattleQuery.Add(TempBattleScreen.FocusBattle()) TempBattleScreen.BattleQuery.Insert(0, New ToggleMenuQueryObject(True)) diff --git a/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleScreen.vb b/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleScreen.vb index 39d6623df..d5f9ea7a2 100644 --- a/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleScreen.vb +++ b/2.5DHero/2.5DHero/Battle/BattleSystemV2/BattleScreen.vb @@ -745,7 +745,7 @@ End Select End If - If File.Exists(GameController.GamePath & "\maps\battle\" & levelfile) = False And File.Exists(GameController.GamePath & OldGameModeManager.ActiveGameMode.MapPath & "battle\" & levelfile) = False Then + If File.Exists(GameController.GamePath & "\maps\battle\" & levelfile) = False And File.Exists(GameController.GamePath & GameModeManager.ActiveGameMode.MapPath & "battle\" & levelfile) = False Then Select Case Me.defaultMapType Case 0 levelfile = cRegion & "0.dat" @@ -778,7 +778,7 @@ End If End If - If File.Exists(GameController.GamePath & "\maps\battle\" & levelfile) = False And File.Exists(GameController.GamePath & OldGameModeManager.ActiveGameMode.MapPath & "battle\" & levelfile) = False Then + If File.Exists(GameController.GamePath & "\maps\battle\" & levelfile) = False And File.Exists(GameController.GamePath & GameModeManager.ActiveGameMode.MapPath & "battle\" & levelfile) = False Then Select Case Me.defaultMapType Case 0 levelfile = "battle0.dat" @@ -998,7 +998,7 @@ nextIndex: Next 'Remove fainted Pokémon from player's team if the DeathInsteadOfFaint GameRule is activated. - If CBool(OldGameModeManager.GetGameRuleValue("DeathInsteadOfFaint", "0")) = True Then + If CBool(GameModeManager.GetGameRuleValue("DeathInsteadOfFaint", "0")) = True Then For i = 0 To Core.Player.Pokemons.Count - 1 If i <= Core.Player.Pokemons.Count - 1 Then If Core.Player.Pokemons(i).HP <= 0 Or Core.Player.Pokemons(i).Status = Pokemon.StatusProblems.Fainted Then @@ -1064,7 +1064,7 @@ nextIndex: ResetVars() If IsTrainerBattle = True Then - ActionScript.RegisterID("trainer_" & Trainer.TrainerFile) + Construct.Framework.RegisterHandler.NewRegister("trainer_" & Trainer.TrainerFile, "") End If If Me.BattleMode <> BattleModes.PVP Then diff --git a/2.5DHero/2.5DHero/Battle/Trainer.vb b/2.5DHero/2.5DHero/Battle/Trainer.vb index b337e8111..a3064b36c 100644 --- a/2.5DHero/2.5DHero/Battle/Trainer.vb +++ b/2.5DHero/2.5DHero/Battle/Trainer.vb @@ -1,6 +1,4 @@ -Imports net.Pokemon3D.Game.ScriptVersion2 - -Public Class Trainer +Public Class Trainer Public AILevel As Integer = 0 Public SignatureMoves As New List(Of BattleSystem.Attack) @@ -35,11 +33,11 @@ Public Class Trainer Public Shared FrontierTrainer As Integer = -1 Public Function IsBeaten() As Boolean - Return ActionScript.IsRegistered("trainer_" & TrainerFile) + Return Construct.Framework.RegisterHandler.IsRegistered("trainer_" & TrainerFile) End Function Public Shared Function IsBeaten(ByVal CheckTrainerFile As String) As Boolean - Return ActionScript.IsRegistered("trainer_" & CheckTrainerFile) + Return Construct.Framework.RegisterHandler.IsRegistered("trainer_" & CheckTrainerFile) End Function Public Sub New() @@ -48,7 +46,7 @@ Public Class Trainer Public Sub New(ByVal TrainerFile As String) Me.TrainerFile = TrainerFile - Dim path As String = OldGameModeManager.GetScriptPath("Trainer\" & TrainerFile & ".trainer") + Dim path As String = GameModeManager.GetScriptPath("Trainer\" & TrainerFile & ".trainer") Security.FileValidation.CheckFileValid(path, False, "Trainer.vb") Dim Data() As String = System.IO.File.ReadAllLines(path) @@ -105,8 +103,8 @@ Public Class Trainer End If newData.Add("IntroSequence|" & sequenceData) - Logger.Log(Logger.LogTypes.Warning, "Trainer.vb: Converted legacy trainer file! Generated new trainer data:") - Logger.Log(Logger.LogTypes.Message, newData.ToArray().ArrayToString()) + Logger.Log("215", Logger.LogTypes.Warning, "Trainer.vb: Converted legacy trainer file! Generated new trainer data:") + Logger.Log("216", Logger.LogTypes.Message, newData.ToArray().ArrayToString()) LoadTrainer(newData.ToArray()) End Sub @@ -124,7 +122,7 @@ Public Class Trainer Select Case pointer.ToLower() Case "name" - Me.Name = ScriptCommander.Parse(value).ToString() + Me.Name = Construct.Framework.Parser.EvaluateScriptExpression(value) If Me.Name.Contains(",") = True Then Me.Name2 = Me.Name.GetSplit(1) Me.Name = Me.Name.GetSplit(0) @@ -132,7 +130,7 @@ Public Class Trainer isDoubleTrainerValid += 1 End If Case "trainerclass" - Me.TrainerType = ScriptCommander.Parse(value).ToString() + Me.TrainerType = Construct.Framework.Parser.EvaluateScriptExpression(value) If Me.TrainerType.Contains(",") = True Then Me.TrainerType2 = TrainerType.GetSplit(1) Me.TrainerType = TrainerType.GetSplit(0) @@ -140,11 +138,11 @@ Public Class Trainer isDoubleTrainerValid += 1 End If Case "money" - Me.Money = CInt(ScriptCommander.Parse(value).ToString()) + Me.Money = CInt(Construct.Framework.Parser.EvaluateScriptExpression(value)) Case "intromessage" - Me.IntroMessage = ScriptCommander.Parse(value).ToString() + Me.IntroMessage = Construct.Framework.Parser.EvaluateScriptExpression(value) Case "outromessage" - Me.OutroMessage = ScriptCommander.Parse(value).ToString() + Me.OutroMessage = Construct.Framework.Parser.EvaluateScriptExpression(value) If Me.OutroMessage.Contains("|") = True Then Me.OutroMessage2 = OutroMessage.GetSplit(1, "|") Me.OutroMessage = OutroMessage.GetSplit(0, "|") @@ -152,9 +150,9 @@ Public Class Trainer isDoubleTrainerValid += 1 End If Case "defeatmessage" - Me.DefeatMessage = ScriptCommander.Parse(value).ToString() + Me.DefeatMessage = Construct.Framework.Parser.EvaluateScriptExpression(value) Case "textureid" - Me.SpriteName = ScriptCommander.Parse(value).ToString() + Me.SpriteName = Construct.Framework.Parser.EvaluateScriptExpression(value) If Me.SpriteName.Contains(",") = True Then Me.SpriteName2 = Me.SpriteName.GetSplit(1) Me.SpriteName = Me.SpriteName.GetSplit(0) @@ -162,34 +160,34 @@ Public Class Trainer isDoubleTrainerValid += 1 End If Case "region" - Me.Region = ScriptCommander.Parse(value).ToString() + Me.Region = Construct.Framework.Parser.EvaluateScriptExpression(value) Case "inimusic" - Me.IniMusic = ScriptCommander.Parse(value).ToString() + Me.IniMusic = Construct.Framework.Parser.EvaluateScriptExpression(value) Case "defeatmusic" - Me.DefeatMusic = ScriptCommander.Parse(value).ToString() + Me.DefeatMusic = Construct.Framework.Parser.EvaluateScriptExpression(value) Case "battlemusic" - Me.BattleMusic = ScriptCommander.Parse(value).ToString() + Me.BattleMusic = Construct.Framework.Parser.EvaluateScriptExpression(value) Case "insightmusic" - Me.InSightMusic = ScriptCommander.Parse(value).ToString() + Me.InSightMusic = Construct.Framework.Parser.EvaluateScriptExpression(value) Case "pokemon1", "pokemon2", "pokemon3", "pokemon4", "pokemon5", "pokemon6" If value <> "" Then PokeLines.Add(value) End If Case "items" If value <> "" Then - Dim itemData() As String = ScriptCommander.Parse(value).ToString().Split(CChar(",")) + Dim itemData() As String = Construct.Framework.Parser.EvaluateScriptExpression(value).Split(CChar(",")) For Each ItemID As String In itemData Items.Add(Item.GetItemByID(CInt(ItemID))) Next End If Case "gender" - Dim GenderInt As Integer = CInt(ScriptCommander.Parse(value).ToString()) + Dim GenderInt As Integer = CInt(Construct.Framework.Parser.EvaluateScriptExpression(value)) Me.Gender = CInt(MathHelper.Clamp(GenderInt, -1, 1)) Case "ai" - Me.AILevel = CInt(ScriptCommander.Parse(value).ToString()) + Me.AILevel = CInt(Construct.Framework.Parser.EvaluateScriptExpression(value)) Case "introsequence" - value = ScriptCommander.Parse(value).ToString() + value = Construct.Framework.Parser.EvaluateScriptExpression(value) If value.Contains(",") = True Then vsdata = value.GetSplit(0) @@ -198,7 +196,7 @@ Public Class Trainer vsdata = value End If Case "introtype" - Me.IntroType = CInt(ScriptCommander.Parse(value).ToString()) + Me.IntroType = CInt(Construct.Framework.Parser.EvaluateScriptExpression(value)) End Select End If Next @@ -206,8 +204,8 @@ Public Class Trainer For Each PokeLine As String In PokeLines Dim PokeData As String = PokeLine.GetSplit(1, "|") If PokeData <> "" Then - If ScriptCommander.Parse(PokeData).ToString().StartsWith("{") = True Then - PokeData = ScriptCommander.Parse(PokeData).ToString().Replace("§", ",") + If Construct.Framework.Parser.EvaluateScriptExpression(PokeData).StartsWith("{") = True Then + PokeData = Construct.Framework.Parser.EvaluateScriptExpression(PokeData).Replace("§", ",") End If If PokeData.StartsWith("{") = True And PokeData.EndsWith("}") = True Then Dim p As Pokemon = Pokemon.GetPokemonByData(PokeData) @@ -260,8 +258,8 @@ Public Class Trainer readData = readData.Remove(0, 1) End While - Dim ID As Integer = ScriptConversion.ToInteger(ScriptCommander.Parse(firstPart)) - Dim Level As Integer = ScriptConversion.ToInteger(ScriptCommander.Parse(secondPart)) + Dim ID As Integer = Construct.Framework.Converter.ToInteger(Construct.Framework.Parser.EvaluateScriptExpression(firstPart)) + Dim Level As Integer = Construct.Framework.Converter.ToInteger(Construct.Framework.Parser.EvaluateScriptExpression(secondPart)) Dim addLevel As Integer = 0 If Core.Player.DifficultyMode = 1 Then @@ -271,7 +269,7 @@ Public Class Trainer End If Level += addLevel - Dim maxLevel As Integer = CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100")) + Dim maxLevel As Integer = CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100")) If Level > maxLevel Then Level = maxLevel @@ -448,7 +446,7 @@ Public Class Trainer Public Function HasBattlePokemon() As Boolean For Each Pokemon As Pokemon In Pokemons - If Pokemon.Status <> net.Pokemon3D.Game.Pokemon.StatusProblems.Fainted And Pokemon.HP > 0 Then + If Pokemon.Status <> Pokemon.StatusProblems.Fainted And Pokemon.HP > 0 Then Return True End If Next diff --git a/2.5DHero/2.5DHero/Construct/Controller.vb b/2.5DHero/2.5DHero/Construct/Controller.vb index 18038497d..dfb09d02e 100644 --- a/2.5DHero/2.5DHero/Construct/Controller.vb +++ b/2.5DHero/2.5DHero/Construct/Controller.vb @@ -142,7 +142,7 @@ filePath = filePath & ".dat" End If - Dim path As String = OldGameModeManager.GetScriptPath(filePath) + Dim path As String = GameModeManager.GetScriptPath(filePath) Security.FileValidation.CheckFileValid(path, False, "ScriptController") If IO.File.Exists(path) = True Then diff --git a/2.5DHero/2.5DHero/Construct/Framework/ScriptClasses/CL_Pokemon.vb b/2.5DHero/2.5DHero/Construct/Framework/ScriptClasses/CL_Pokemon.vb index 9a90b99f6..4f14d919b 100644 --- a/2.5DHero/2.5DHero/Construct/Framework/ScriptClasses/CL_Pokemon.vb +++ b/2.5DHero/2.5DHero/Construct/Framework/ScriptClasses/CL_Pokemon.vb @@ -1180,7 +1180,7 @@ Private Function F_GenerateFrontier(ByVal argument As String) As String Dim level As Integer = Int(argument.GetSplit(0)) - level = level.Clamp(1, CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100"))) + level = level.Clamp(1, CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100"))) Dim pokemon_class As Integer = Int(argument.GetSplit(1)) Dim IDPreset As List(Of Integer) = Nothing diff --git a/2.5DHero/2.5DHero/Core/Core.vb b/2.5DHero/2.5DHero/Core/Core.vb index 958350fd6..7e0d86fe0 100644 --- a/2.5DHero/2.5DHero/Core/Core.vb +++ b/2.5DHero/2.5DHero/Core/Core.vb @@ -86,87 +86,92 @@ Public Sub LoadContent() KeyBindings.Load() + GameModeManager.LoadGameModes() - Logger.Debug("Loaded game modes.") + Logger.Debug("162", "Loaded game modes.") FontManager.LoadFonts() Screen.TextBox.TextFont = FontManager.GetFontContainer("textfont") - Logger.Debug("Loaded fonts.") - + Logger.Debug("163", "Loaded fonts.") TextureManager.InitializeTextures() - MusicManager.Setup() - MusicManager.LoadMusic(False) - SoundManager.LoadSounds(False) - Logger.Debug("Loaded content.") + Logger.Debug("164", "Loaded content.") - Logger.Debug("Validated files. Result: " & Security.FileValidation.IsValid(True).ToString()) + Logger.Debug("165", "Validated files. Result: " & Security.FileValidation.IsValid(True).ToString()) If Security.FileValidation.IsValid(False) = False Then - Logger.Log(Logger.LogTypes.Warning, "Core.vb: File Validation failed! Download a fresh copy of the game to fix this issue.") + Logger.Log("250", Logger.LogTypes.Warning, "Core.vb: File Validation failed! Download a fresh copy of the game to fix this issue.") End If - GameMessage = New GameMessage(net.Pokemon3D.Game.TextureManager.DefaultTexture, New Size(10, 40), New Vector2(0, 0)) - GameMessage.Dock = net.Pokemon3D.Game.GameMessage.DockStyles.Top + GameMessage = New GameMessage(Game.TextureManager.DefaultTexture, New Size(10, 40), New Vector2(0, 0)) + GameMessage.Dock = Game.GameMessage.DockStyles.Top GameMessage.BackgroundColor = Color.Black GameMessage.TextPosition = New Vector2(10, 10) - Logger.Debug("Gamemessage initialized.") + Logger.Debug("166", "Gamemessage initialized.") GameOptions.Load() If System.IO.Directory.Exists(GameController.GamePath & "\Temp") = True Then Try System.IO.Directory.Delete(GameController.GamePath & "\Temp", True) - Logger.Log(Logger.LogTypes.Message, "Core.vb: Deleted Temp directory.") + Logger.Log("251", Logger.LogTypes.Message, "Core.vb: Deleted Temp directory.") Catch ex As Exception - Logger.Log(Logger.LogTypes.Warning, "Core.vb: Failed to delete the Temp directory.") + Logger.Log("252", Logger.LogTypes.Warning, "Core.vb: Failed to delete the Temp directory.") End Try End If GameJolt.StaffProfile.SetupStaff() - - ScriptVersion2.ScriptLibrary.InitializeLibrary() End Sub Public Sub Update(ByVal gameTime As GameTime) - Core.GameTime = gameTime + If KeyBindings.IsInitialized Then + Core.GameTime = gameTime - KeyBoardHandler.Update() - ControllerHandler.Update() + KeyBoardHandler.Update() + ControllerHandler.Update() - ConnectScreen.UpdateConnectSet() + ConnectScreen.UpdateConnectSet() - If Core.GameInstance.IsActive = False Then - If Core.CurrentScreen.CanBePaused = True Then - Core.SetScreen(New PauseScreen(Core.CurrentScreen)) - End If - Else - If KeyBoardHandler.KeyPressed(KeyBindings.EscapeKey) = True Or ControllerHandler.ButtonDown(Buttons.Start) = True Then - CurrentScreen.EscapePressed() - End If - End If - - CurrentScreen.Update() - If CurrentScreen.CanChat = True Then - If KeyBoardHandler.KeyPressed(KeyBindings.ChatKey) = True Or ControllerHandler.ButtonPressed(Buttons.RightShoulder) = True Then - If JoinServerScreen.Online = True Or Player.SandBoxMode = True Or GameController.IS_DEBUG_ACTIVE = True Then - SetScreen(New ChatScreen(CurrentScreen)) + If Core.GameInstance.IsActive = False Then + If Core.CurrentScreen.CanBePaused = True Then + Core.SetScreen(New PauseScreen(Core.CurrentScreen)) + End If + Else + If KeyBoardHandler.KeyPressed(KeyBindings.EscapeKey) = True Or ControllerHandler.ButtonDown(Buttons.Start) = True Then + CurrentScreen.EscapePressed() End If End If + + CurrentScreen.Update() + If CurrentScreen.CanChat = True Then + If KeyBoardHandler.KeyPressed(KeyBindings.ChatKey) = True Then + OpenChatScreen() + End If + End If + + MainGameFunctions.FunctionKeys() + + MusicPlayer.GetInstance().Update(gameTime) + + GameMessage.Update() + Controls.MakeMouseVisible() + + MouseHandler.Update() + + LoadingDots.Update() + ForcedCrash.Update() + + ServersManager.Update() + Else + 'Update the current screen when the keybindings have not been initialized, because this happens in the Update method of the SplashScreen. + CurrentScreen.Update() End If + End Sub - MainGameFunctions.FunctionKeys() - MusicManager.Update() - - GameMessage.Update() - Controls.MakeMouseVisible() - - MouseHandler.Update() - - LoadingDots.Update() - ForcedCrash.Update() - - ServersManager.Update() + Public Sub OpenChatScreen() + If JoinServerScreen.Online = True Or Player.SandBoxMode = True Or GameController.IS_DEBUG_ACTIVE = True Then + SetScreen(New ChatScreen(CurrentScreen)) + End If End Sub Public Sub Draw() diff --git a/2.5DHero/2.5DHero/Core/GameOptions.vb b/2.5DHero/2.5DHero/Core/GameOptions.vb index 45ea8a488..cf85efffa 100644 --- a/2.5DHero/2.5DHero/Core/GameOptions.vb +++ b/2.5DHero/2.5DHero/Core/GameOptions.vb @@ -209,7 +209,7 @@ Public Class GameOptions MediaPlayer.IsMuted = .Muted Entity.drawViewBox = .ShowBoundingBoxes Logger.DisplayLog = .ShowDebugConsole - OldLocalization.Load(.Language) + Localization.Load(.Language) ContentPackManager.CreateContentPackFolder() If _dataModel.ContentPacks.Length > 0 Then @@ -264,7 +264,7 @@ Public Class GameOptions _dataModel.ShowBoundingBoxes = Entity.drawViewBox _dataModel.Muted = MediaPlayer.IsMuted _dataModel.ShowDebugConsole = Logger.DisplayLog - _dataModel.Language = OldLocalization.LanguageSuffix + _dataModel.Language = Localization.LanguageSuffix End If IO.File.WriteAllText(GameController.GamePath & "\Save\options.dat", _dataModel.ToString(" ")) diff --git a/2.5DHero/2.5DHero/Core/MainGameFunctions.vb b/2.5DHero/2.5DHero/Core/MainGameFunctions.vb index ca504bfe5..670f3ff74 100644 --- a/2.5DHero/2.5DHero/Core/MainGameFunctions.vb +++ b/2.5DHero/2.5DHero/Core/MainGameFunctions.vb @@ -17,9 +17,9 @@ Core.GameOptions.Save() If Core.GameOptions.LightingEnabled Then - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_lighting_on", "Lighting Enabled"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_lighting_on", "Lighting Enabled"), 12, FontManager.MainFont, Color.White) Else - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_lighting_off", "Lighting Disabled"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_lighting_off", "Lighting Disabled"), 12, FontManager.MainFont, Color.White) End If ElseIf KeyBoardHandler.KeyPressed(KeyBindings.FullScreenKey) AndAlso Core.CurrentScreen.CanGoFullscreen Then ToggleFullScreen() @@ -33,7 +33,7 @@ If KeyBoardHandler.KeyDown(KeyBindings.DebugKey) = True Then If KeyBoardHandler.KeyPressed(Keys.F) Then TextureManager.TextureList.Clear() - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_debug_texture_list_clear", "Texture list have cleared"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_debug_texture_list_clear", "Texture list have cleared"), 12, FontManager.MainFont, Color.White) ElseIf KeyBoardHandler.KeyPressed(Keys.S) Then Core.SetWindowSize(New Vector2(1200, 680)) ElseIf KeyBoardHandler.KeyPressed(Keys.L) Then @@ -107,10 +107,10 @@ stream.Dispose() End If - Core.GameMessage.SetupText(OldLocalization.GetString("game_message_screenshot") & fileName, FontManager.MainFont, Color.White) + Core.GameMessage.SetupText(Localization.GetString("game_message_screenshot") & fileName, FontManager.MainFont, Color.White) Core.GameMessage.ShowMessage(12, Core.GraphicsDevice) Catch ex As Exception - Logger.Log(Logger.LogTypes.ErrorMessage, "Basic.vb: " & OldLocalization.GetString("game_message_screenshot_failed") & ". More information: " & ex.Message) + Logger.Log(Logger.LogTypes.ErrorMessage, "Basic.vb: " & Localization.GetString("game_message_screenshot_failed") & ". More information: " & ex.Message) End Try End Sub @@ -134,7 +134,7 @@ Core.GraphicsManager.ToggleFullScreen() - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_fullscreen_on"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_fullscreen_on"), 12, FontManager.MainFont, Color.White) Else Core.GraphicsManager.PreferredBackBufferWidth = 1200 Core.GraphicsManager.PreferredBackBufferHeight = 680 @@ -144,7 +144,7 @@ Core.GraphicsManager.ToggleFullScreen() - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_fullscreen_off"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_fullscreen_off"), 12, FontManager.MainFont, Color.White) End If Core.GraphicsManager.ApplyChanges() diff --git a/2.5DHero/2.5DHero/Debug/DebugDisplay.vb b/2.5DHero/2.5DHero/Debug/DebugDisplay.vb index ef51b52bc..094b4de64 100644 --- a/2.5DHero/2.5DHero/Debug/DebugDisplay.vb +++ b/2.5DHero/2.5DHero/Debug/DebugDisplay.vb @@ -12,7 +12,7 @@ Dim ActionscriptActive As Boolean = True If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - ActionscriptActive = CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady + ActionscriptActive = Construct.Controller.GetInstance.IsReady End If Dim thirdPersonString As String = "" diff --git a/2.5DHero/2.5DHero/Debug/Logger.vb b/2.5DHero/2.5DHero/Debug/Logger.vb index 1b961000a..88e7f3b88 100644 --- a/2.5DHero/2.5DHero/Debug/Logger.vb +++ b/2.5DHero/2.5DHero/Debug/Logger.vb @@ -116,8 +116,8 @@ Public Class Logger End If Dim GameMode As String = "[No GameMode loaded]" - If Not OldGameModeManager.ActiveGameMode Is Nothing Then - GameMode = OldGameModeManager.ActiveGameMode.Name + If Not GameModeManager.ActiveGameMode Is Nothing Then + GameMode = GameModeManager.ActiveGameMode.Name End If Dim OnlineInformation As String = "GameJolt Account: FALSE" @@ -131,8 +131,10 @@ Public Class Logger Dim ScriptInfo As String = "Actionscript: No script running" If Not CurrentScreen Is Nothing Then If CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - If CType(CurrentScreen, OverworldScreen).ActionScript.IsReady = False Then - ScriptInfo = "Actionscript: " & ActionScript.CSL().ScriptName & "; Line: " & ActionScript.CSL().CurrentLine + If Construct.Controller.GetInstance.IsReady = False Then + 'ScriptInfo = "Actionscript: " & ActionScript.CSL().ScriptName & "; Line: " & ActionScript.CSL().CurrentLine + 'Test + ScriptInfo = "Actionscript: " & Construct.Controller.GetInstance.ActiveScript.OriginIdentifier & "; Line: " & Construct.Controller.GetInstance.ActiveScript.ActiveLine.ToString End If End If End If @@ -176,7 +178,7 @@ Public Class Logger Dim specs As String = "Operating system: " & My.Computer.Info.OSFullName & " [" & My.Computer.Info.OSVersion & "]" & vbNewLine & "Core architecture: " & architectureString & vbNewLine & "System time: " & My.Computer.Clock.LocalTime.ToString() & vbNewLine & - "System language: " & System.Globalization.CultureInfo.CurrentCulture.EnglishName & "(" & System.Globalization.CultureInfo.CurrentCulture.ThreeLetterWindowsLanguageName & ") / Loaded game language: " & OldLocalization.LanguageSuffix & vbNewLine & + "System language: " & System.Globalization.CultureInfo.CurrentCulture.EnglishName & "(" & System.Globalization.CultureInfo.CurrentCulture.ThreeLetterWindowsLanguageName & ") / Loaded game language: " & Localization.LanguageSuffix & vbNewLine & "Decimal separator: " & GameController.DecSeparator & vbNewLine & "Available physical memory: " & Math.Round((My.Computer.Info.TotalPhysicalMemory / Math.Pow(1024, 3)), 2).ToString() & " Gigabyte" & vbNewLine & "Available logical processors: " & Environment.ProcessorCount.ToString() diff --git a/2.5DHero/2.5DHero/Dialogues/TextBox.vb b/2.5DHero/2.5DHero/Dialogues/TextBox.vb index 230a816de..1457a8bb0 100644 --- a/2.5DHero/2.5DHero/Dialogues/TextBox.vb +++ b/2.5DHero/2.5DHero/Dialogues/TextBox.vb @@ -107,8 +107,8 @@ tokenEndIdx = possibleToken.IndexOf(">") If Not tokenEndIdx = -1 Then validToken = possibleToken.Substring(0, tokenEndIdx) - If OldLocalization.LocalizationTokens.ContainsKey(validToken) = True Then - If OldLocalization.LocalizationTokens.TryGetValue(validToken, token) = True Then + If Localization.LocalizationTokens.ContainsKey(validToken) = True Then + If Localization.LocalizationTokens.TryGetValue(validToken, token) = True Then Me.Text = Me.Text.Replace("<" & validToken & ">", token.TokenContent) End If End If diff --git a/2.5DHero/2.5DHero/Entites/Entity.vb b/2.5DHero/2.5DHero/Entites/Entity.vb index edf09becf..154cb1b0b 100644 --- a/2.5DHero/2.5DHero/Entites/Entity.vb +++ b/2.5DHero/2.5DHero/Entites/Entity.vb @@ -372,7 +372,7 @@ CPosition = CType(Screen.Camera, BattleSystem.BattleCamera).CPosition End If If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - ActionScriptActive = Not CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady + ActionScriptActive = Not Construct.Controller.GetInstance().IsReady End If End If End SyncLock diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/CutDownTree.vb b/2.5DHero/2.5DHero/Entites/Enviroment/CutDownTree.vb index 88b2f2518..eea63d24d 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/CutDownTree.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/CutDownTree.vb @@ -62,13 +62,11 @@ Me.CanBeRemoved = True Dim s As String = - "version=2" & vbNewLine & "@text.show(" & Text & ")" & vbNewLine & - "@sound.play(destroy,0)" & vbNewLine & - ":end" + "@sound.play(destroy,0)" PlayerStatistics.Track("Cut used", 1) - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2, False) + Construct.Controller.GetInstance().RunFromString(s, {}) End If End Sub diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/DiveTile.vb b/2.5DHero/2.5DHero/Entites/Enviroment/DiveTile.vb index cb56b0f66..d592b8f34 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/DiveTile.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/DiveTile.vb @@ -15,9 +15,12 @@ If CInt(Me.Position.X) = CInt(Screen.Camera.Position.X) And CInt(Me.Position.Y) = CInt(Screen.Camera.Position.Y) And CInt(Me.Position.Z) = CInt(Screen.Camera.Position.Z) Then If Controls.Accept(True, True, True) = True Then If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - If CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady Then + If Construct.Controller.GetInstance.IsReady Then Me.StartDive() End If + 'If CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady Then + ' Me.StartDive() + 'End If End If End If End If @@ -54,46 +57,30 @@ If result = 0 Then If diveUp = 0 Then 'Down - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & GetDivePokemon() & "~used Dive!)" & vbNewLine & + + Dim s As String = "@text.show(" & GetDivePokemon() & "~used Dive!)" & vbNewLine & "@screen.fadeout" & vbNewLine & "@player.warp(" & Me.AdditionalValue & ")" & vbNewLine & "@level.update" & vbNewLine & "@player.setmovement(0,-0.5,0)" & vbNewLine & "@screen.fadein" & vbNewLine & "@player.move(8)" & vbNewLine & - "@player.resetmovement" & vbNewLine & - ":end" + "@player.resetmovement" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) - ElseIf diveUp = 1 Then + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) + Else 'Up - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & GetDivePokemon() & "~used Dive!)" & vbNewLine & + + Dim s As String = "@text.show(" & GetDivePokemon() & "~used Dive!)" & vbNewLine & "@player.setmovement(0,0.5,0)" & vbNewLine & "@player.move(8)" & vbNewLine & "@player.resetmovement" & vbNewLine & "@screen.fadeout" & vbNewLine & "@player.warp(" & Me.AdditionalValue & ")" & vbNewLine & "@level.update" & vbNewLine & - "@screen.fadein" & vbNewLine & - ":end" + "@screen.fadein" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) - ElseIf diveUp = 2 Then - 'Up - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & GetDivePokemon() & "~used Dive!)" & vbNewLine & - "@player.setmovement(0,0.5,0)" & vbNewLine & - "@player.move(6)" & vbNewLine & - "@player.resetmovement" & vbNewLine & - "@screen.fadeout" & vbNewLine & - "@player.warp(" & Me.AdditionalValue & ")" & vbNewLine & - "@level.update" & vbNewLine & - "@screen.fadein" & vbNewLine & - ":end" - - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) End If End If End Sub diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/HeadbuttTree.vb b/2.5DHero/2.5DHero/Entites/Enviroment/HeadbuttTree.vb index aca8de8cc..5e96b7a90 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/HeadbuttTree.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/HeadbuttTree.vb @@ -57,22 +57,18 @@ Dim spawnedPokemon As Pokemon = Spawner.GetPokemon(Screen.Level.LevelFile, Spawner.EncounterMethods.Headbutt, False) If spawnedPokemon Is Nothing Then - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & pName & " used~Headbutt!)" & vbNewLine & + Dim s As String = "@text.show(" & pName & " used~Headbutt!)" & vbNewLine & "@sound.play(destroy,0)" & vbNewLine & "@level.wait(20)" & vbNewLine & - "@text.show(Nothing happened...)" & vbNewLine & - ":end" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + "@text.show(Nothing happened...)" + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) Else - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & pName & " used~Headbutt!)" & vbNewLine & + Dim s As String = "@text.show(" & pName & " used~Headbutt!)" & vbNewLine & "@sound.play(destroy,0)" & vbNewLine & "@level.wait(20)" & vbNewLine & "@text.show(A wild Pokémon~appeared!)" & vbNewLine & - "@battle.wild(" & spawnedPokemon.Number & "," & spawnedPokemon.Level & ")" & vbNewLine & - ":end" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + "@battle.wild(" & spawnedPokemon.Number & "," & spawnedPokemon.Level & ")" + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) End If End If End Sub diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/RockClimbEntity.vb b/2.5DHero/2.5DHero/Entites/Enviroment/RockClimbEntity.vb index 75cd2d3e0..bc6e4befb 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/RockClimbEntity.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/RockClimbEntity.vb @@ -112,28 +112,25 @@ Screen.Level.OwnPlayer.Texture = RockClimbPokemon.GetOverworldTexture() Screen.Level.OwnPlayer.ChangeTexture() - Dim s As String = "version=2" & vbNewLine & - "@pokemon.cry(" & RockClimbPokemon.Number & ")" & vbNewLine & + Dim s As String = "@pokemon.cry(" & RockClimbPokemon.Number & ")" & vbNewLine & "@player.setmovement(" & Screen.Camera.GetMoveDirection().X & ",1," & Screen.Camera.GetMoveDirection().Z & ")" & vbNewLine & "@sound.play(destroy)" & vbNewLine & "@player.move(" & Steps & ")" & vbNewLine & "@player.setmovement(" & Screen.Camera.GetMoveDirection().X & ",0," & Screen.Camera.GetMoveDirection().Z & ")" & vbNewLine & - "@pokemon.hide" & vbNewLine & + "@overworldpokemon.hide" & vbNewLine & "@player.move(1)" & vbNewLine & - "@pokemon.hide" & vbNewLine & - "@player.wearskin(" & tempSkin & ")" & vbNewLine + "@overworldpokemon.hide" & vbNewLine & + "@player.wearskin(" & tempSkin & ")" If Not Me.TempScriptEntity Is Nothing Then - s &= GetScriptStartLine(Me.TempScriptEntity) & vbNewLine + s &= vbNewLine & GetScriptStartLine(Me.TempScriptEntity) Me.TempScriptEntity = Nothing End If - s &= ":end" - 'Reset the player's transparency: Screen.Level.OwnPlayer.Opacity = 1.0F - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2, False) + Construct.Controller.GetInstance().RunFromString(s) End If facing = CInt(Me.Rotation.Y / MathHelper.PiOver2) @@ -185,26 +182,23 @@ Screen.Level.OwnPlayer.Texture = RockClimbPokemon.GetOverworldTexture() Screen.Level.OwnPlayer.ChangeTexture() - Dim s As String = "version=2" & vbNewLine & - "@pokemon.cry(" & RockClimbPokemon.Number & ")" & vbNewLine & + Dim s As String = "@pokemon.cry(" & RockClimbPokemon.Number & ")" & vbNewLine & "@player.move(1)" & vbNewLine & "@player.setmovement(" & Screen.Camera.GetMoveDirection().X & ",-1," & Screen.Camera.GetMoveDirection().Z & ")" & vbNewLine & "@sound.play(destroy)" & vbNewLine & "@player.move(" & Steps & ")" & vbNewLine & - "@pokemon.hide" & vbNewLine & - "@player.wearskin(" & tempSkin & ")" & vbNewLine + "@overworldpokemon.hide" & vbNewLine & + "@player.wearskin(" & tempSkin & ")" If Not Me.TempScriptEntity Is Nothing Then - s &= GetScriptStartLine(Me.TempScriptEntity) & vbNewLine + s &= vbNewLine & GetScriptStartLine(Me.TempScriptEntity) Me.TempScriptEntity = Nothing End If - s &= ":end" - 'Reset the player's transparency: Screen.Level.OwnPlayer.Opacity = 1.0F - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2, False) + Construct.Controller.GetInstance().RunFromString(s) End If End Sub diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/RotationTile.vb b/2.5DHero/2.5DHero/Entites/Enviroment/RotationTile.vb index 5508c84d2..c66852409 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/RotationTile.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/RotationTile.vb @@ -27,17 +27,15 @@ Public Overrides Sub Update() If Me.RotationType = RotationTypes.StartSpin Then If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - If CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady = True Then + If Construct.Controller.GetInstance().IsReady = True Then If Me.Position.X = Screen.Camera.Position.X And CInt(Me.Position.Y) = CInt(Screen.Camera.Position.Y) And Me.Position.Z = Screen.Camera.Position.Z Then Dim steps As Integer = GetSteps() - Dim s As String = "version=2" & vbNewLine & - "@player.move(0)" & vbNewLine & + Dim s As String = "@player.move(0)" & vbNewLine & "@player.turnto(" & Me.RotateTo.ToString() & ")" & vbNewLine & - "@player.move(" & steps & ")" & vbNewLine & - ":end" + "@player.move(" & steps & ")" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) End If End If End If diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/ScriptBlock.vb b/2.5DHero/2.5DHero/Entites/Enviroment/ScriptBlock.vb index 65d6226b2..a52d2687f 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/ScriptBlock.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/ScriptBlock.vb @@ -36,8 +36,8 @@ If Me.TriggerID = 0 Or Me.TriggerID = 4 Then ActivateScript = True TriggeredScriptBlock = True - If ActionScript.TempInputDirection = -1 Then - ActionScript.TempInputDirection = Screen.Camera.GetPlayerFacingDirection() + If Construct.Controller.GetInstance().CorrectPlayerOrientation = -1 Then + Construct.Controller.GetInstance().CorrectPlayerOrientation = Screen.Camera.GetPlayerFacingDirection() End If If Screen.Camera.Name = "Overworld" Then @@ -55,7 +55,7 @@ Public Overrides Sub ClickFunction() If Me.TriggerID = 1 Then - ActionScript.TempInputDirection = -1 + Construct.Controller.GetInstance().CorrectPlayerOrientation = -1 Me.clickedToActivate = True TriggerScript(False) End If @@ -75,17 +75,18 @@ If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then Dim oS As OverworldScreen = CType(Core.CurrentScreen, OverworldScreen) - If oS.ActionScript.IsReady = True Or canAttach = True Then - If Me.CorrectRotation() = True Then - If Me.clickedToActivate = True Then - Me.clickedToActivate = False - SoundManager.PlaySound("select") - End If + With Construct.Controller.GetInstance() + If .IsReady = True Or canAttach = True Then + If Me.CorrectRotation() = True Then + If Me.clickedToActivate = True Then + Me.clickedToActivate = False + SoundManager.PlaySound("select") + End If - oS.ActionScript.StartScript(Me._scriptID, GetActivationID()) - ActionScript.TempSpin = True + .RunFromFile(Me._scriptID, {Construct.Controller.ScriptRunOptions.CheckDelay, Construct.Controller.ScriptRunOptions.OrientatePlayer}) + End If End If - End If + End With End If TriggeredScriptBlock = False End Sub diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/SignBlock.vb b/2.5DHero/2.5DHero/Entites/Enviroment/SignBlock.vb index 16c06f05c..256ffcb3e 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/SignBlock.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/SignBlock.vb @@ -22,7 +22,7 @@ Public Overrides Sub ClickFunction() Dim canRead As Boolean = False - Select Case Screen.Camera.GetPlayerFacingDirection() + Select Case Screen.Camera.GetPlayerFacingDirection() Case 1, 3 If Me.Rotation.Y = MathHelper.Pi * 1.5F Or Me.Rotation.Y = MathHelper.Pi * 0.5F Then canRead = True @@ -35,17 +35,17 @@ If canRead = True Then Dim oScreen As OverworldScreen = CType(Core.CurrentScreen, OverworldScreen) - If oScreen.ActionScript.IsReady = True Then + If Construct.Controller.GetInstance().IsReady = True Then SoundManager.PlaySound("select") Select Case Me.ActionValue - Case 0, 3 - oScreen.ActionScript.StartScript(Me.AdditionalValue, 1) - Case 1 - oScreen.ActionScript.StartScript(Me.AdditionalValue, 0) - Case 2 - oScreen.ActionScript.StartScript(Me.AdditionalValue.Replace("
", vbNewLine), 2) - Case Else - oScreen.ActionScript.StartScript(Me.AdditionalValue, 1) + Case 0, 3 'text + Construct.Controller.GetInstance().RunFromText(Me.AdditionalValue, {Construct.Controller.ScriptRunOptions.CheckDelay}) + Case 1 'file + Construct.Controller.GetInstance().RunFromFile(Me.AdditionalValue, {Construct.Controller.ScriptRunOptions.CheckDelay}) + Case 2 'string + Construct.Controller.GetInstance().RunFromString(Me.AdditionalValue, {Construct.Controller.ScriptRunOptions.CheckDelay}) + Case Else 'text + Construct.Controller.GetInstance().RunFromText(Me.AdditionalValue, {Construct.Controller.ScriptRunOptions.CheckDelay}) End Select End If End If diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/SlideBlock.vb b/2.5DHero/2.5DHero/Entites/Enviroment/SlideBlock.vb index 2b9e33602..a9c7bee28 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/SlideBlock.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/SlideBlock.vb @@ -46,22 +46,19 @@ Screen.Level.OverworldPokemon.Visible = False Screen.Level.OverworldPokemon.warped = True - Dim s As String = "version=2" & vbNewLine & - "@player.setmovement(" & Screen.Camera.GetMoveDirection().X & ",1," & Screen.Camera.GetMoveDirection().Z & ")" & vbNewLine & + Dim s As String = "@player.setmovement(" & Screen.Camera.GetMoveDirection().X & ",1," & Screen.Camera.GetMoveDirection().Z & ")" & vbNewLine & "@player.move(" & Steps & ")" & vbNewLine & "@player.setmovement(" & Screen.Camera.GetMoveDirection().X & ",0," & Screen.Camera.GetMoveDirection().Z & ")" & vbNewLine & "@pokemon.hide" & vbNewLine & "@player.move(1)" & vbNewLine & - "@pokemon.hide" & vbNewLine + "@overworldpokemon.hide" If Not Me.TempScriptEntity Is Nothing Then - s &= GetScriptStartLine(Me.TempScriptEntity) & vbNewLine + s &= vbNewLine & GetScriptStartLine(Me.TempScriptEntity) Me.TempScriptEntity = Nothing End If - s &= ":end" - - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2, False) + Construct.Controller.GetInstance().RunFromString(s, {}) Return True End If @@ -69,7 +66,7 @@ If facing < 0 Then facing += 4 End If - If Screen.Camera.GetPlayerFacingDirection() = facing Then + If Screen.Camera.GetPlayerFacingDirection() = facing Then Return False End If @@ -131,20 +128,17 @@ Screen.Level.OverworldPokemon.Visible = False Screen.Level.OverworldPokemon.warped = True - Dim s As String = "version=2" & vbNewLine & - "@player.move(1)" & vbNewLine & + Dim s As String = "@player.move(1)" & vbNewLine & "@player.setmovement(" & Screen.Camera.GetMoveDirection().X & ",-1," & Screen.Camera.GetMoveDirection().Z & ")" & vbNewLine & "@player.move(" & Steps & ")" & vbNewLine & - "@pokemon.hide" & vbNewLine + "@overworldpokemon.hide" If Not Me.TempScriptEntity Is Nothing Then - s &= GetScriptStartLine(Me.TempScriptEntity) & vbNewLine + s &= vbNewLine & GetScriptStartLine(Me.TempScriptEntity) Me.TempScriptEntity = Nothing End If - s &= ":end" - - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2, False) + Construct.Controller.GetInstance().RunFromString(s, {}) End If End Sub diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/SmashRock.vb b/2.5DHero/2.5DHero/Entites/Enviroment/SmashRock.vb index 352f14a8c..2a7acf095 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/SmashRock.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/SmashRock.vb @@ -55,38 +55,30 @@ If Core.Random.Next(0, 100) < 20 Then spawnedPokemon = Spawner.GetPokemon(Screen.Level.LevelFile, Spawner.EncounterMethods.RockSmash, False) If spawnedPokemon Is Nothing Then - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & pName & " used~Rock Smash!)" & vbNewLine & - "@sound.play(destroy)" & vbNewLine & - ":end" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Dim s As String = "@text.show(" & pName & " used~Rock Smash!)" & vbNewLine & + "@sound.play(destroy)" + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) Else - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & pName & " used~Rock Smash!)" & vbNewLine & + Dim s As String = "@text.show(" & pName & " used~Rock Smash!)" & vbNewLine & "@sound.play(destroy)" & vbNewLine & "@level.update" & vbNewLine & "@text.show(A wild Pokémon~appeared!)" & vbNewLine & - "@battle.wild(" & spawnedPokemon.Number & "," & spawnedPokemon.Level & ")" & vbNewLine & - ":end" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + "@battle.wild(" & spawnedPokemon.Number & "," & spawnedPokemon.Level & ")" + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) End If Else If Core.Random.Next(0, 100) < 20 Then Dim ItemID As Integer = GetItemID() - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & pName & " used~Rock Smash!)" & vbNewLine & + Dim s As String = "@text.show(" & pName & " used~Rock Smash!)" & vbNewLine & "@sound.play(destroy)" & vbNewLine & "@level.update" & vbNewLine & "@item.give(" & ItemID & ",1)" & vbNewLine & - "@item.messagegive(" & ItemID & ",1)" & vbNewLine & - ":end" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + "@item.messagegive(" & ItemID & ",1)" + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) Else - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & pName & " used~Rock Smash!)" & vbNewLine & - "@sound.play(destroy)" & vbNewLine & - ":end" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Dim s As String = "@text.show(" & pName & " used~Rock Smash!)" & vbNewLine & + "@sound.play(destroy)" + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) End If End If PlayerStatistics.Track("Rock Smash used", 1) @@ -132,7 +124,7 @@ Public Shared Sub Load() ItemContainerlist.Clear() - Dim File As String = OldGameModeManager.GetContentFilePath("Data\smashrockitems.dat") + Dim File As String = GameModeManager.GetDataFilePath("smashrockitems.dat") If System.IO.File.Exists(File) = True Then Security.FileValidation.CheckFileValid(File, False, "SmashRock.vb") Dim data() As String = System.IO.File.ReadAllLines(File) diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/StrengthTrigger.vb b/2.5DHero/2.5DHero/Entites/Enviroment/StrengthTrigger.vb index fd62b1b6f..cccae5538 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/StrengthTrigger.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/StrengthTrigger.vb @@ -51,11 +51,11 @@ CType(sRock, StrengthRock).CanBeRemoved = True End If If RemoveForever = True Then - ActionScript.RegisterID("ACTIVATOR_REMOVE_STRENGTH_ROCK_" & Screen.Level.LevelFile & "_" & sRock.ID.ToString()) + Construct.Framework.RegisterHandler.NewRegister("ACTIVATOR_REMOVE_STRENGTH_ROCK_" & Screen.Level.LevelFile & "_" & sRock.ID.ToString(), "") End If If ActivateScript <> "" Then If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(Me.ActivateScript, 0, False) + Construct.Controller.GetInstance().RunFromString(Me.ActivateScript, {Construct.Controller.ScriptRunOptions.CheckDelay}) End If End If diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/WarpBlock.vb b/2.5DHero/2.5DHero/Entites/Enviroment/WarpBlock.vb index 881ad8a33..7a6321f07 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/WarpBlock.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/WarpBlock.vb @@ -33,7 +33,7 @@ End If End If - If System.IO.File.Exists(GameController.GamePath & "\" & OldGameModeManager.ActiveGameMode.MapPath & destination) = True Or System.IO.File.Exists(GameController.GamePath & "\maps\" & destination) = True Then + If System.IO.File.Exists(GameController.GamePath & "\" & GameModeManager.ActiveGameMode.MapPath & destination) = True Or System.IO.File.Exists(GameController.GamePath & "\maps\" & destination) = True Then If MapViewMode = False Then Screen.Level.WarpData.WarpDestination = Me.AdditionalValue.GetSplit(0) Screen.Level.WarpData.WarpPosition = New Vector3(CSng(Me.AdditionalValue.GetSplit(1)), CSng(Me.AdditionalValue.GetSplit(2).Replace(".", GameController.DecSeparator)), CSng(Me.AdditionalValue.GetSplit(3))) @@ -51,7 +51,7 @@ Screen.Camera.Position = New Vector3(CSng(Me.AdditionalValue.GetSplit(1)), CSng(Me.AdditionalValue.GetSplit(2).Replace(".", GameController.DecSeparator)), CSng(Me.AdditionalValue.GetSplit(3))) End If Else - CallError("Map file """ & OldGameModeManager.ActiveGameMode.MapPath & destination & """ does not exist.") + CallError("Map file """ & GameModeManager.ActiveGameMode.MapPath & destination & """ does not exist.") End If End If diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/Waterfall.vb b/2.5DHero/2.5DHero/Entites/Enviroment/Waterfall.vb index e0a79bc6b..568783b53 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/Waterfall.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/Waterfall.vb @@ -207,16 +207,14 @@ End If End While - s = "version=2" & vbNewLine & - "@pokemon.hide" & vbNewLine & + s = "@overworldpokemon.hide" & vbNewLine & "@player.move(2)" & vbNewLine & "@player.setmovement(0,-1,0)" & vbNewLine & - "@pokemon.hide" & vbNewLine & + "@overworldpokemon.hide" & vbNewLine & "@player.move(" & Steps & ")" & vbNewLine & - "@pokemon.hide" & vbNewLine & - ":end" + "@overworldpokemon.hide" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) End If End Sub @@ -259,18 +257,16 @@ Screen.Camera.PlannedMovement = New Vector3(0, 1, 0) - s = "version=2" & vbNewLine & - "@pokemon.cry(" & pNumber & ")" & vbNewLine & + s = "@pokemon.cry(" & pNumber & ")" & vbNewLine & "@sound.play(select)" & vbNewLine & "@text.show(" & pName & " used~Waterfall.)" & vbNewLine & "@player.move(" & Steps & ")" & vbNewLine & - "@pokemon.hide" & vbNewLine & + "@overworldpokemon.hide" & vbNewLine & "@player.move(2)" & vbNewLine & - "@pokemon.hide" & vbNewLine & - ":end" + "@overworldpokemon.hide" PlayerStatistics.Track("Waterfall used", 1) - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) Return False End If diff --git a/2.5DHero/2.5DHero/Entites/Enviroment/Whirlpool.vb b/2.5DHero/2.5DHero/Entites/Enviroment/Whirlpool.vb index 3c7ec2f07..2169c2dc1 100644 --- a/2.5DHero/2.5DHero/Entites/Enviroment/Whirlpool.vb +++ b/2.5DHero/2.5DHero/Entites/Enviroment/Whirlpool.vb @@ -11,22 +11,22 @@ Public Overrides Sub Initialize() MyBase.Initialize() - WaterAnimation = New Animation(net.Pokemon3D.Game.TextureManager.GetTexture("Textures\Routes"), 1, 4, 16, 16, 9, 12, 0) + WaterAnimation = New Animation(TextureManager.GetTexture("Textures\Routes"), 1, 4, 16, 16, 9, 12, 0) - If Whirlpool.LoadedWaterTemp = False Then + If LoadedWaterTemp = False Then End If End Sub Public Shared Sub CreateWaterTextureTemp() If Core.GameOptions.GraphicStyle = 1 Then - Whirlpool.WaterTexturesTemp.Clear() + WaterTexturesTemp.Clear() - Whirlpool.WaterTexturesTemp.Add(net.Pokemon3D.Game.TextureManager.GetTexture("Routes", New Rectangle(0, 176, 16, 16))) - Whirlpool.WaterTexturesTemp.Add(net.Pokemon3D.Game.TextureManager.GetTexture("Routes", New Rectangle(16, 176, 16, 16))) - Whirlpool.WaterTexturesTemp.Add(net.Pokemon3D.Game.TextureManager.GetTexture("Routes", New Rectangle(32, 176, 16, 16))) - Whirlpool.WaterTexturesTemp.Add(net.Pokemon3D.Game.TextureManager.GetTexture("Routes", New Rectangle(48, 176, 16, 16))) - Whirlpool.LoadedWaterTemp = True + WaterTexturesTemp.Add(TextureManager.GetTexture("Routes", New Rectangle(0, 176, 16, 16))) + WaterTexturesTemp.Add(TextureManager.GetTexture("Routes", New Rectangle(16, 176, 16, 16))) + WaterTexturesTemp.Add(TextureManager.GetTexture("Routes", New Rectangle(32, 176, 16, 16))) + WaterTexturesTemp.Add(TextureManager.GetTexture("Routes", New Rectangle(48, 176, 16, 16))) + LoadedWaterTemp = True End If End Sub @@ -45,24 +45,24 @@ Private Sub ChangeTexture() If Core.GameOptions.GraphicStyle = 1 Then - If Whirlpool.LoadedWaterTemp = False Then - Whirlpool.CreateWaterTextureTemp() + If LoadedWaterTemp = False Then + CreateWaterTextureTemp() End If Select Case WaterAnimation.CurrentColumn Case 0 - Me.Textures(0) = Whirlpool.WaterTexturesTemp(0) + Textures(0) = WaterTexturesTemp(0) Case 1 - Me.Textures(0) = Whirlpool.WaterTexturesTemp(1) + Textures(0) = WaterTexturesTemp(1) Case 2 - Me.Textures(0) = Whirlpool.WaterTexturesTemp(2) + Textures(0) = WaterTexturesTemp(2) Case 3 - Me.Textures(0) = Whirlpool.WaterTexturesTemp(3) + Textures(0) = WaterTexturesTemp(3) End Select End If End Sub Public Overrides Sub Render() - Me.Draw(Me.Model, Textures, False) + Draw(Model, Textures, False) End Sub Private Function ReturnWhirlPoolPokemonName() As String @@ -79,8 +79,8 @@ End Function Public Overrides Function WalkAgainstFunction() As Boolean - If Me.ActionValue = 1 Then - Return Me.Collision + If ActionValue = 1 Then + Return Collision End If If Screen.Level.Surfing = True Then @@ -88,14 +88,11 @@ Dim s As String = "" If Badge.CanUseHMMove(Badge.HMMoves.Whirlpool) = True And pName <> "" Or GameController.IS_DEBUG_ACTIVE = True Or Core.Player.SandBoxMode = True Then - s = "version=2 -@text.show(" & pName & " used~Whirlpool!) -@player.move(2) -:end" + s = "@text.show(" & pName & " used~Whirlpool!) +@player.move(2)" PlayerStatistics.Track("Whirlpool used", 1) Else - s = "version=2 -@player.move(1) + s = "@player.move(1) @player.turn(1) @level.wait(3) @player.turn(1) @@ -121,11 +118,10 @@ @level.wait(3) @player.turn(1) @level.wait(3) -@text.show(It's a vicious~whirlpool!*A Pokémon may be~able to pass it.) -:end" +@text.show(It's a vicious~whirlpool!*A Pokémon may be~able to pass it.)" End If - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) Return True End If diff --git a/2.5DHero/2.5DHero/Entites/Other/NPC.vb b/2.5DHero/2.5DHero/Entites/Other/NPC.vb index 904bed3d7..be0ba0741 100644 --- a/2.5DHero/2.5DHero/Entites/Other/NPC.vb +++ b/2.5DHero/2.5DHero/Entites/Other/NPC.vb @@ -278,17 +278,19 @@ Public Sub ActivateScript() Dim oScreen As OverworldScreen = CType(Core.CurrentScreen, OverworldScreen) - If oScreen.ActionScript.IsReady = True Then + If Construct.Controller.GetInstance().IsReady = True Then SoundManager.PlaySound("select") Select Case Me.ActionValue - Case 0 - oScreen.ActionScript.StartScript(Me.AdditionalValue, 1) - Case 1 - oScreen.ActionScript.StartScript(Me.AdditionalValue, 0) - Case 3 - oScreen.ActionScript.StartScript(Me.AdditionalValue.Replace("
", vbNewLine), 2) - Case Else - oScreen.ActionScript.StartScript(Me.AdditionalValue, 0) + Case 0 'text + Construct.Controller.GetInstance().RunFromText(Me.AdditionalValue, {Construct.Controller.ScriptRunOptions.CheckDelay}) + Case 1 'script + Construct.Controller.GetInstance().RunFromFile(Me.AdditionalValue, {Construct.Controller.ScriptRunOptions.CheckDelay}) + Case 2 'script (is trainer) + Construct.Controller.GetInstance().RunFromFile(Me.AdditionalValue, {Construct.Controller.ScriptRunOptions.CheckDelay}) + Case 3 'string + Construct.Controller.GetInstance().RunFromString(Me.AdditionalValue, {Construct.Controller.ScriptRunOptions.CheckDelay}) + Case Else 'text + Construct.Controller.GetInstance().RunFromText(Me.AdditionalValue, {Construct.Controller.ScriptRunOptions.CheckDelay}) End Select End If End Sub @@ -328,13 +330,13 @@ End If If correctFacing = True Then - distance = distance.ToPositive() + distance = Math.Abs(distance) If distance <= Me.TrainerSight Then Dim InSightMusic As String = "nomusic" If Me.IsTrainer = True Then - Dim trainerFilePath As String = OldGameModeManager.GetScriptPath(Me.AdditionalValue & ".dat") + Dim trainerFilePath As String = GameModeManager.GetScriptPath(Me.AdditionalValue & ".dat") Security.FileValidation.CheckFileValid(trainerFilePath, False, "NPC.vb") Dim trainerContent() As String = System.IO.File.ReadAllLines(trainerFilePath) @@ -372,12 +374,12 @@ End Select Dim turns As Integer = needFacing - Screen.Camera.GetPlayerFacingDirection() If turns < 0 Then - turns = 4 - turns.ToPositive() + turns = 4 - Math.Abs(turns) End If CType(Core.CurrentScreen, OverworldScreen).TrainerEncountered = True If InSightMusic <> "nomusic" And InSightMusic <> "" Then - MusicManager.PlayMusic(InSightMusic, True, 0.0F, 0.0F) + MusicPlayer.GetInstance().Play(InSightMusic, True, 0.0F, 0.0F) End If Screen.Camera.StopMovement() Me.Movement = Movements.Still @@ -394,8 +396,7 @@ offset.X = 0.01F End Select - Dim s As String = "version=2" & vbNewLine & - "@player.turn(" & turns & ")" & vbNewLine + Dim s As String = "@player.turn(" & turns & ")" & vbNewLine With CType(Screen.Camera, OverworldCamera) If CType(Screen.Camera, OverworldCamera).ThirdPerson = True And IsOnScreen() = False Then @@ -405,20 +406,17 @@ "@npc.move(" & Me.NPCID & "," & distance - 1 & ")" & vbNewLine & "@camera.resetfocus" & vbNewLine & "@camera.setposition(" & cPosition & ")" & vbNewLine & - "@script.start(" & Me.AdditionalValue & ")" & vbNewLine & - ":end" + "@script.start(" & Me.AdditionalValue & ")" Else s &= "@entity.showmessagebulb(1|" & Me.Position.X + offset.X & "|" & Me.Position.Y + 0.7F & "|" & Me.Position.Z + offset.Y & ")" & vbNewLine & "@npc.move(" & Me.NPCID & "," & distance - 1 & ")" & vbNewLine & - "@script.start(" & Me.AdditionalValue & ")" & vbNewLine & - ":end" + "@script.start(" & Me.AdditionalValue & ")" End If End With Screen.Level.OwnPlayer.Opacity = 0.5F - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) - ActionScript.IsInsightScript = True + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay, Construct.Controller.ScriptRunOptions.InsightScript}) End If End If End If @@ -471,7 +469,7 @@ Private Sub NPCMovement() If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - If CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady = False Then + If Construct.Controller.GetInstance().IsReady = False Then Exit Sub End If End If diff --git a/2.5DHero/2.5DHero/Entites/Other/NetworkPokemon.vb b/2.5DHero/2.5DHero/Entites/Other/NetworkPokemon.vb index 849641dec..1e1ce56d4 100644 --- a/2.5DHero/2.5DHero/Entites/Other/NetworkPokemon.vb +++ b/2.5DHero/2.5DHero/Entites/Other/NetworkPokemon.vb @@ -65,7 +65,7 @@ Public Overrides Sub Render() If ConnectScreen.Connected = True Then - If CBool(OldGameModeManager.GetGameRuleValue("ShowFollowPokemon", "1")) = True Then + If CBool(GameModeManager.GetGameRuleValue("ShowFollowPokemon", "1")) = True Then If Screen.Level.ShowOverworldPokemon = True Then If IsCorrectScreen() = True Then If Me.PokemonTexture <> "" Then diff --git a/2.5DHero/2.5DHero/Entites/Other/OverworldPokemon.vb b/2.5DHero/2.5DHero/Entites/Other/OverworldPokemon.vb index 1feaa3ec0..1da342830 100644 --- a/2.5DHero/2.5DHero/Entites/Other/OverworldPokemon.vb +++ b/2.5DHero/2.5DHero/Entites/Other/OverworldPokemon.vb @@ -124,7 +124,7 @@ Public Class OverworldPokemon ''' If the OverworldPokémon should be rendered. ''' Public Function IsVisible() As Boolean - If CBool(OldGameModeManager.GetGameRuleValue("ShowFollowPokemon", "1")) = True Then + If CBool(GameModeManager.GetGameRuleValue("ShowFollowPokemon", "1")) = True Then If Screen.Level.ShowOverworldPokemon = True Then If IsCorrectScreen() = True Then If Not Core.Player.GetWalkPokemon() Is Nothing Then @@ -241,14 +241,14 @@ Public Class OverworldPokemon End Sub Public Overrides Sub ClickFunction() - If CBool(OldGameModeManager.GetGameRuleValue("ShowFollowPokemon", "1")) = True Then + If CBool(GameModeManager.GetGameRuleValue("ShowFollowPokemon", "1")) = True Then If Me.Visible = True And Not Core.Player.GetWalkPokemon() Is Nothing And Screen.Level.Surfing = False And Screen.Level.Riding = False And Screen.Level.ShowOverworldPokemon = True Then Dim p As Pokemon = Core.Player.GetWalkPokemon() - Dim scriptString As String = PokemonInteractions.GetScriptString(p, Me.Position, Me.faceRotation) + Dim s As String = PokemonInteractions.GetScriptString(p, Me.Position, Me.faceRotation) If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - If CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady = True Then - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(scriptString, 2) + If Construct.Controller.GetInstance().IsReady = True Then + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) End If End If End If diff --git a/2.5DHero/2.5DHero/HelperClasses/OldLocalization.vb b/2.5DHero/2.5DHero/HelperClasses/Localization.vb similarity index 78% rename from 2.5DHero/2.5DHero/HelperClasses/OldLocalization.vb rename to 2.5DHero/2.5DHero/HelperClasses/Localization.vb index f70175ca6..a5897e40b 100644 --- a/2.5DHero/2.5DHero/HelperClasses/OldLocalization.vb +++ b/2.5DHero/2.5DHero/HelperClasses/Localization.vb @@ -1,4 +1,4 @@ -Public Class OldLocalization +Public Class Localization Public Shared LanguageSuffix As String = "en" Public Shared LocalizationTokens As Dictionary(Of String, Token) = New Dictionary(Of String, Token) @@ -6,40 +6,11 @@ Public Shared Sub Load(ByVal LanguageSuffix As String) LocalizationTokens.Clear() - OldLocalization.LanguageSuffix = LanguageSuffix + Localization.LanguageSuffix = LanguageSuffix - Logger.Debug("Loaded language [" & LanguageSuffix & "]") + Logger.Debug("149", "Loaded language [" & LanguageSuffix & "]") - LoadTokenFile(OldGameMode.DefaultLocalizationsPath, False) - - If OldGameModeManager.GameModeCount > 0 Then - Dim GameModeLocalizationPath As String = OldGameModeManager.ActiveGameMode.LocalizationsPath - If GameModeLocalizationPath <> OldGameMode.DefaultLocalizationsPath Then - LoadTokenFile(GameModeLocalizationPath, True) - End If - End If - End Sub - - Public Shared Sub ReloadGameModeTokens() - For i = 0 To LocalizationTokens.Count - 1 - If i <= LocalizationTokens.Count - 1 Then - Dim Token As Token = LocalizationTokens.Values(i) - - If Token.IsGameModeToken = True Then - LocalizationTokens.Remove(LocalizationTokens.Keys(i)) - i -= 1 - End If - End If - Next - - If OldGameModeManager.GameModeCount > 0 Then - Dim GameModeLocalizationPath As String = OldGameModeManager.ActiveGameMode.LocalizationsPath - If GameModeLocalizationPath <> OldGameMode.DefaultLocalizationsPath Then - LoadTokenFile(GameModeLocalizationPath, True) - End If - End If - - Logger.Debug("---Reloaded GameMode Tokens---") + LoadTokenFile("\Localization\", False) End Sub Private Shared Sub LoadTokenFile(ByVal path As String, ByVal IsGameModeFile As Boolean) diff --git a/2.5DHero/2.5DHero/Network/Chat.vb b/2.5DHero/2.5DHero/Network/Chat.vb index 10b80c71b..0fad56fc2 100644 --- a/2.5DHero/2.5DHero/Network/Chat.vb +++ b/2.5DHero/2.5DHero/Network/Chat.vb @@ -199,7 +199,7 @@ If s.Identification = Screen.Identifications.OverworldScreen Then If testForScript = False Then - CType(s, OverworldScreen).ActionScript.StartScript("version=2" & vbNewLine & text & vbNewLine & ":end", 2, False) + Construct.Controller.GetInstance().RunFromString(text, {}) End If Return text @@ -211,7 +211,7 @@ End Try Case "<" Try - Return text & ": " & ScriptVersion2.ScriptComparer.EvaluateConstruct(text).ToString() + Return text & "= " & Construct.Framework.Parser.EvaluateConstruct(text) Catch ex As Exception Return "Invalid construct: """ & text & """" End Try diff --git a/2.5DHero/2.5DHero/Network/Profiles/GamejoltSave.vb b/2.5DHero/2.5DHero/Network/Profiles/GamejoltSave.vb index 5b3f7e463..9f503e085 100644 --- a/2.5DHero/2.5DHero/Network/Profiles/GamejoltSave.vb +++ b/2.5DHero/2.5DHero/Network/Profiles/GamejoltSave.vb @@ -536,10 +536,10 @@ Namespace GameJolt Next If exists(ID_BERRIES) = False Then - _berries = NewGameScreen.GetBerryData() + _berries = GetBerryData() End If If exists(ID_OPTIONS) = False Then - _options = NewGameScreen.GetOptionsData() + _options = GetOptionsData() End If If exists(ID_PLAYER) = False Then _player = GetPlayerData() @@ -623,7 +623,7 @@ Namespace GameJolt _berries = data.Replace("\""", """") Else - _berries = NewGameScreen.GetBerryData() + _berries = GetBerryData() End If _downloadedFlags(ID_BERRIES) = True @@ -713,7 +713,7 @@ Namespace GameJolt _options = data.Replace("\""", """") Else - _options = NewGameScreen.GetOptionsData() + _options = GetOptionsData() End If _downloadedFlags(ID_OPTIONS) = True @@ -904,8 +904,43 @@ Namespace GameJolt #Region "DefaultData" + Private Function GetOptionsData() As String + Return "FOV|50" & vbNewLine & + "TextSpeed|2" & vbNewLine & + "MouseSpeed|12" + End Function + + Private Function GetBerryData() As String + Return "{route29.dat|13,0,5|6|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route29.dat|14,0,5|6|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route29.dat|15,0,5|6|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{azalea.dat|9,0,3|0|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{azalea.dat|9,0,4|1|1|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{azalea.dat|9,0,5|0|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route30.dat|7,0,41|10|1|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route30.dat|14,0,5|2|1|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route30.dat|15,0,5|6|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route30.dat|16,0,5|2|1|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{routes\route35.dat|0,0,4|7|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{routes\route35.dat|1,0,4|8|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route36.dat|37,0,7|0|1|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route36.dat|38,0,7|4|1|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route36.dat|39,0,7|3|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route39.dat|8,0,2|9|1|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route39.dat|8,0,3|6|1|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route38.dat|13,0,12|16|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route38.dat|14,0,12|23|1|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{route38.dat|15,0,12|16|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{routes\route43.dat|13,0,45|23|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{routes\route43.dat|13,0,46|24|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{routes\route43.dat|13,0,47|25|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{safarizone\main.dat|3,0,11|5|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{safarizone\main.dat|4,0,11|0|2|0|2012,9,21,4,0,0|1}" & vbNewLine & + "{safarizone\main.dat|5,0,11|6|3|0|2012,9,21,4,0,0|1}" + End Function + Private Function GetPlayerData() As String - Dim GameMode As OldGameMode = OldGameModeManager.ActiveGameMode + Dim GameMode As GameMode = GameModeManager.ActiveGameMode Dim ot As String = GameJoltID While ot.Length < 5 @@ -937,7 +972,7 @@ Namespace GameJolt "RepelSteps|0" & vbNewLine & "LastSavePlace|yourroom.dat" & vbNewLine & "LastSavePlacePosition|1,0.1,3" & vbNewLine & - "Difficulty|" & OldGameModeManager.GetGameRuleValue("Difficulty", "0") & vbNewLine & + "Difficulty|" & GameModeManager.GetGameRuleValue("Difficulty", "0") & vbNewLine & "BattleStyle|0" & vbNewLine & "saveCreated|" & GameController.GAMEDEVELOPMENTSTAGE & " " & GameController.GAMEVERSION & vbNewLine & "LastPokemonPosition|999,999,999" & vbNewLine & @@ -963,13 +998,13 @@ Namespace GameJolt Gender = "0" _apricorns = "" - _berries = NewGameScreen.GetBerryData() + _berries = GetBerryData() _box = "" _daycare = "" _itemData = "" _items = "" _NPC = "" - _options = NewGameScreen.GetOptionsData() + _options = GetOptionsData() _party = "" _player = GetPlayerData() _pokedex = "" diff --git a/2.5DHero/2.5DHero/Network/Servers/PlayerManager.vb b/2.5DHero/2.5DHero/Network/Servers/PlayerManager.vb index 80d407251..ac427af89 100644 --- a/2.5DHero/2.5DHero/Network/Servers/PlayerManager.vb +++ b/2.5DHero/2.5DHero/Network/Servers/PlayerManager.vb @@ -275,7 +275,7 @@ Namespace Servers GameJoltID = Core.GameJoltSave.GameJoltID End If - AddToDataItems(dataItems, OldGameModeManager.ActiveGameMode.Name.ToLower(), 0) + AddToDataItems(dataItems, GameModeManager.ActiveGameMode.Name.ToLower(), 0) AddToDataItems(dataItems, Core.Player.IsGamejoltSave.ToNumberString(), 1) AddToDataItems(dataItems, GameJoltID, 2) AddToDataItems(dataItems, GameController.DecSeparator, 3) diff --git a/2.5DHero/2.5DHero/Overworld/OverworldCamera.vb b/2.5DHero/2.5DHero/Overworld/OverworldCamera.vb index 584945232..94879077a 100644 --- a/2.5DHero/2.5DHero/Overworld/OverworldCamera.vb +++ b/2.5DHero/2.5DHero/Overworld/OverworldCamera.vb @@ -208,7 +208,7 @@ Public Class OverworldCamera If CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then Dim OS As OverworldScreen = CType(CurrentScreen, OverworldScreen) - If _freeCameraMode = True And OS.ActionScript.IsReady = True Then + If _freeCameraMode = True And Construct.Controller.GetInstance().IsReady = True Then If YawLocked = False Then Yaw += -RotationSpeed * 0.75F * dx End If @@ -226,14 +226,14 @@ Public Class OverworldCamera If CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then Dim OS As OverworldScreen = CType(CurrentScreen, OverworldScreen) - If OS.ActionScript.IsReady = True Then + If Construct.Controller.GetInstance().IsReady = True Then If (KeyBoardHandler.KeyPressed(KeyBindings.CameraLockKey) = True Or ControllerHandler.ButtonPressed(Buttons.RightStick)) = True And _moved = 0.0F And YawLocked = False Then _freeCameraMode = Not _freeCameraMode If _freeCameraMode = False Then - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_free_camera_off"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_free_camera_off"), 12, FontManager.MainFont, Color.White) Else - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_free_camera_on"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_free_camera_on"), 12, FontManager.MainFont, Color.White) End If End If End If @@ -284,7 +284,7 @@ Public Class OverworldCamera If KeyBoardHandler.KeyPressed(KeyBindings.PerspectiveSwitchKey) = True Or ControllerHandler.ButtonPressed(Buttons.LeftShoulder) = True Then Dim actionscriptReady As Boolean = True If CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - actionscriptReady = CType(CurrentScreen, OverworldScreen).ActionScript.IsReady + actionscriptReady = Construct.Controller.GetInstance().IsReady End If If actionscriptReady = True Then SetThirdPerson(Not _thirdPerson, True) @@ -336,12 +336,12 @@ Public Class OverworldCamera If _thirdPerson = True Then Screen.Level.OwnPlayer.Opacity = 1.0F If showMessage = True Then - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_third_person_on"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_third_person_on"), 12, FontManager.MainFont, Color.White) End If Else Yaw = GetAimYawFromDirection(_playerFacing) If showMessage = True Then - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_third_person_off"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_third_person_off"), 12, FontManager.MainFont, Color.White) End If End If End If @@ -380,7 +380,7 @@ Public Class OverworldCamera #Region "CameraMethods" Private Sub SetSpeed() - If CurrentScreen.Identification = Screen.Identifications.OverworldScreen AndAlso CType(CurrentScreen, OverworldScreen).ActionScript.IsReady = False Then + If CurrentScreen.Identification = Screen.Identifications.OverworldScreen AndAlso Construct.Controller.GetInstance().IsReady = False Then Speed = 0.04F Else If Screen.Level.Riding = True Then @@ -589,7 +589,7 @@ Public Class OverworldCamera Dim OS As OverworldScreen = Nothing If CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then OS = CType(CurrentScreen, OverworldScreen) - isActionscriptReady = OS.ActionScript.IsReady + isActionscriptReady = Construct.Controller.GetInstance().IsReady End If If isActionscriptReady = True And Screen.Level.CanMove() = True Then diff --git a/2.5DHero/2.5DHero/Overworld/OverworldScreen.vb b/2.5DHero/2.5DHero/Overworld/OverworldScreen.vb index 8ae371bbd..99bac8875 100644 --- a/2.5DHero/2.5DHero/Overworld/OverworldScreen.vb +++ b/2.5DHero/2.5DHero/Overworld/OverworldScreen.vb @@ -1,8 +1,5 @@ Imports System.Threading -''' -''' The screen to display the default Overworld gameplay. -''' Public Class OverworldScreen Inherits Screen @@ -12,7 +9,6 @@ Public Class OverworldScreen Private Shared _fadeValue As Integer = 0 'Fade progress value for the black screen fade. Private Shared _drawRodID As Integer = -1 'The rod ID to display on the screen during the fishing animation. - Private _actionScript As ActionScript 'Private ActionScript instance. Private _particlesTexture As Texture2D 'A texture field to contain the particles texture, currently only used for the crosshair. Private _trainerEncountered As Boolean = False Private _titles As New List(Of Title) @@ -31,16 +27,7 @@ Public Class OverworldScreen ''' Public ReadOnly Property Titles() As List(Of Title) Get - Return Me._titles - End Get - End Property - - ''' - ''' The ActionScript instance that controls the scripts. - ''' - Public ReadOnly Property ActionScript() As ActionScript - Get - Return Me._actionScript + Return _titles End Get End Property @@ -49,10 +36,10 @@ Public Class OverworldScreen ''' Public Property TrainerEncountered() As Boolean Get - Return Me._trainerEncountered + Return _trainerEncountered End Get Set(value As Boolean) - Me._trainerEncountered = value + _trainerEncountered = value End Set End Property @@ -81,7 +68,6 @@ Public Class OverworldScreen End Set End Property - Public Property GlobalGameModeScriptStarted As Boolean = False #End Region ''' @@ -103,13 +89,18 @@ Public Class OverworldScreen ''' Public Sub New() 'Set default information: - Me.Identification = Identifications.OverworldScreen - Me.CanChat = True - Me.MouseVisible = False + Identification = Identifications.OverworldScreen + CanChat = True + MouseVisible = False + IsOverlay = True 'Set up 3D environment variables (Effect, Camera, SkyDome and Level): - Effect = New BasicEffect(Core.GraphicsDevice) + Effect = New BasicEffect(GraphicsDevice) Effect.FogEnabled = True + Effect.TextureEnabled = True + + 'Reset Construct: + Construct.Controller.GetInstance().Reset() Camera = New OverworldCamera() SkyDome = New SkyDome() @@ -118,47 +109,37 @@ Public Class OverworldScreen 'Play music depending on the player state in the level (surfing and riding): If Level.Surfing = True Then - MusicManager.PlayMusic("surf", True) 'Play "surf" when player is surfing. + MusicPlayer.GetInstance().Play("system\surf", True) 'Play "surf" when player is surfing. Else If Level.Riding = True Then - MusicManager.PlayMusic("ride", True) 'Play "ride" when player is riding. + MusicPlayer.GetInstance().Play("system\ride", True) 'Play "ride" when player is riding. Else - MusicManager.PlayMusic(Level.MusicLoop, True) 'Play default MusicLoop. + MusicPlayer.GetInstance().Play(Level.MusicLoop, True) 'Play default MusicLoop. End If End If 'Setup the RouteSign for the initial level. Level.RouteSign.Setup(Level.MapName) - 'Create a new instance of the ActionScript. - Me._actionScript = New ActionScript(Level) - 'Initialize the World information with the loaded level. - Screen.Level.World.Initialize(Screen.Level.EnvironmentType, Screen.Level.WeatherType) + Level.World.Initialize(Level.EnvironmentType, Level.WeatherType) 'Load the particle texture. - Me._particlesTexture = TextureManager.GetTexture("GUI\Overworld\Particles") + _particlesTexture = TextureManager.GetTexture("GUI\Overworld\Particles") End Sub ''' ''' Updates the OverworldScreen. ''' Public Overrides Sub Update() - If OldGameModeManager.ActiveGameMode.StartScript <> "" AndAlso ActionScript.IsReady AndAlso Not GlobalGameModeScriptStarted Then - ActionScript.reDelay = 0.0F - ActionScript.StartScript(OldGameModeManager.ActiveGameMode.StartScript, 0) - GlobalGameModeScriptStarted = True - End If - 'If the MapScript has a value loaded from the MapScript map tag and there is no script running, start that script: - If LevelLoader.MapScript <> "" And ActionScript.IsReady = True Then - ActionScript.reDelay = 0.0F - ActionScript.StartScript(LevelLoader.MapScript, 0) + If Level.MapScript <> "" And Construct.Controller.GetInstance().IsReady = True Then + Construct.Controller.GetInstance().RunFromFile(Level.MapScript, {}) - LevelLoader.MapScript = "" 'Reset the MapScript. + Level.MapScript = "" 'Reset the MapScript. End If - Lighting.UpdateLighting(Screen.Effect) 'Update the lighting on the basic effect. + Lighting.UpdateLighting(Effect) 'Update the lighting on the basic effect. 'Update the Dialogues: ChooseBox.Update() @@ -170,11 +151,10 @@ Public Class OverworldScreen End If 'Middle click/Thumbstick press: Show first Pokémon in party. - If ActionScript.IsReady = True Then + If Construct.Controller.GetInstance().IsReady = True Then If MouseHandler.ButtonPressed(MouseHandler.MouseButtons.MiddleButton) = True Or ControllerHandler.ButtonPressed(Buttons.LeftStick) = True Then If Core.Player.Pokemons.Count > 0 Then - ''Core.SetScreen(New PokemonStatusScreen(Core.CurrentScreen, 0, {}, Core.Player.Pokemons(0), True)) - Core.SetScreen(New SummaryScreen(CurrentScreen, Core.Player.Pokemons.ToArray, 0)) + SetScreen(New SummaryScreen(Me, Core.Player.Pokemons.ToArray(), 0)) End If End If End If @@ -182,8 +162,8 @@ Public Class OverworldScreen 'If no dialogue is showing, do level update tasks: If TextBox.Showing = False And ChooseBox.Showing = False And PokemonImageView.Showing = False Then 'If no script is running and no MapScript is in the queue, update camera and the level. - If ActionScript.IsReady = True And LevelLoader.MapScript = "" Then - If Me.HandleServerRequests() = True Then + If Construct.Controller.GetInstance().IsReady = True And Level.MapScript = "" Then + If HandleServerRequests() = True Then Camera.Update() Level.Update() End If @@ -197,24 +177,28 @@ Public Class OverworldScreen 'Open the MenuScreen: If KeyBoardHandler.KeyPressed(KeyBindings.InventoryKey) = True Or ControllerHandler.ButtonPressed(Buttons.X) = True Then - If Screen.Camera.IsMoving() = False And ActionScript.IsReady = True Then + If Camera.IsMoving() = False And Construct.Controller.GetInstance().IsReady = True Then Level.RouteSign.Hide() SoundManager.PlaySound("menu_open") - Core.SetScreen(New NewMenuScreen(Me)) + SetScreen(New NewMenuScreen(Me)) End If End If 'Open the PokégearScreen: If KeyBoardHandler.KeyPressed(KeyBindings.SpecialKey) = True Or ControllerHandler.ButtonPressed(Buttons.Y) = True Then If Core.Player.HasPokegear = True Or GameController.IS_DEBUG_ACTIVE = True Then - If Screen.Camera.IsMoving() = False And ActionScript.IsReady = True Then - Core.SetScreen(New GameJolt.PokegearScreen(Me, GameJolt.PokegearScreen.EntryModes.MainMenu, {})) + If Camera.IsMoving() = False And Construct.Controller.GetInstance().IsReady = True Then + SetScreen(New GameJolt.PokegearScreen(Me, GameJolt.PokegearScreen.EntryModes.MainMenu, {})) End If End If End If - ActionScript.Update() 'Update the action script. + Construct.Controller.GetInstance().Update() 'Update construct scripts. + + If ControllerHandler.ButtonPressed(Buttons.RightShoulder) = True Then + Core.OpenChatScreen() + End If Else 'Dialogues are showing: 'Update some parts of the camera: If Camera.Name = "Overworld" Then @@ -253,21 +237,36 @@ Public Class OverworldScreen Level.RouteSign.Update() 'Update the World with new environment variables. - Screen.Level.World.Initialize(Screen.Level.EnvironmentType, Screen.Level.WeatherType) + Level.World.Initialize(Level.EnvironmentType, Level.WeatherType) - Me.UpdateShowControlDelay() + UpdateShowControlDelay() 'If for some mysterical reason, a player with a GameJolt account is not logged in during a play session, prompt the LogInScreen. GameJolt.LogInScreen.KickFromOnlineScreen(Me) - Me.UpdateTitles() + UpdateTitles() + UpdateWorldWeather() + End Sub + + Private _minimumWeatherChangeDelay As Double = 200.0F + + ''' + ''' Updates the weather to change it after a while. + ''' + Private Sub UpdateWorldWeather() + If _minimumWeatherChangeDelay > 0F Then + _minimumWeatherChangeDelay -= 0.1F + Else + _minimumWeatherChangeDelay = Random.Next(100, 400) + Level.World.SetNewRegionWeather(Level.EnvironmentType, Level.WeatherType) + End If End Sub ''' ''' Updates the delay of the XBOX button render. ''' Private Sub UpdateShowControlDelay() - If Me.ShowControlsDelay > 0.0F Then + If ShowControlsDelay > 0.0F Then 'If any Gamepad is connected, countdown the delay. If Core.GameOptions.GamePadEnabled = True AndAlso GamePad.GetState(PlayerIndex.One).IsConnected = True Then ShowControlsDelay -= 0.1F @@ -276,7 +275,7 @@ Public Class OverworldScreen End If End If End If - If Screen.Camera.IsMoving() = True Or Camera.Turning = True Or ActionScript.IsReady = False Or TextBox.Showing = True Or ChooseBox.Showing = True Then + If Camera.IsMoving() = True Or Camera.Turning = True Or Construct.Controller.GetInstance().IsReady = False Or TextBox.Showing = True Or ChooseBox.Showing = True Then 'If any input is received, reset the delay: ShowControlsDelay = 8.0F End If @@ -288,16 +287,16 @@ Public Class OverworldScreen ''' True, if no requests are in the queue, False otherwise. Private Function HandleServerRequests() As Boolean If GameJolt.PokegearScreen.BattleRequestData <> -1 Then 'A Servers ID from another player is set here. - If Core.ServersManager.PlayerCollection.HasPlayer(GameJolt.PokegearScreen.BattleRequestData) = True Then 'If the player still exists on the server. - Core.SetScreen(New GameJolt.PokegearScreen(Core.CurrentScreen, GameJolt.PokegearScreen.EntryModes.BattleRequest, {GameJolt.PokegearScreen.BattleRequestData, Core.ServersManager.PlayerCollection.GetPlayer(GameJolt.PokegearScreen.BattleRequestData).GameJoltId})) + If ServersManager.PlayerCollection.HasPlayer(GameJolt.PokegearScreen.BattleRequestData) = True Then 'If the player still exists on the server. + SetScreen(New GameJolt.PokegearScreen(CurrentScreen, GameJolt.PokegearScreen.EntryModes.BattleRequest, {GameJolt.PokegearScreen.BattleRequestData, ServersManager.PlayerCollection.GetPlayer(GameJolt.PokegearScreen.BattleRequestData).GameJoltId})) Return False Else 'Otherwise, reset the data. GameJolt.PokegearScreen.BattleRequestData = -1 End If End If If GameJolt.PokegearScreen.TradeRequestData <> -1 Then 'A Servers ID from another player is set here. - If Core.ServersManager.PlayerCollection.HasPlayer(GameJolt.PokegearScreen.TradeRequestData) = True Then 'If the player still exists on the server. - Core.SetScreen(New GameJolt.PokegearScreen(Core.CurrentScreen, GameJolt.PokegearScreen.EntryModes.TradeRequest, {GameJolt.PokegearScreen.TradeRequestData, Core.ServersManager.PlayerCollection.GetPlayer(GameJolt.PokegearScreen.TradeRequestData).GameJoltId})) + If ServersManager.PlayerCollection.HasPlayer(GameJolt.PokegearScreen.TradeRequestData) = True Then 'If the player still exists on the server. + SetScreen(New GameJolt.PokegearScreen(CurrentScreen, GameJolt.PokegearScreen.EntryModes.TradeRequest, {GameJolt.PokegearScreen.TradeRequestData, ServersManager.PlayerCollection.GetPlayer(GameJolt.PokegearScreen.TradeRequestData).GameJoltId})) Return False Else 'Otherwise, reset the data. GameJolt.PokegearScreen.TradeRequestData = -1 @@ -311,14 +310,14 @@ Public Class OverworldScreen Level.Draw() - World.DrawWeather(Screen.Level.World.CurrentMapWeather) + World.DrawWeather(Level.World.CurrentMapWeather) DrawGUI() PokemonImageView.Draw() TextBox.Draw() 'Only draw the ChooseBox when it's the current screen, cause the same ChooseBox might get used on other screens. - If Me.IsCurrentScreen() = True Then + If IsCurrentScreen() = True Then ChooseBox.Draw() End If @@ -355,25 +354,25 @@ Public Class OverworldScreen 'Render the Rod (based on the DrawRodID property). If DrawRodID > -1 And isThirdPerson = False Then Dim t As Texture2D = TextureManager.GetTexture("GUI\Overworld\Rods", New Rectangle(DrawRodID * 8, 0, 8, 64), "") 'Load the texture. - Dim P As New Vector2(CSng(Core.windowSize.Width / 2 - 32), Core.windowSize.Height - 490) + Dim P As New Vector2(CSng(windowSize.Width / 2 - 32), windowSize.Height - 490) - Core.SpriteBatch.Draw(t, New Rectangle(CInt(P.X), CInt(P.Y), 64, 512), Color.White) + SpriteBatch.Draw(t, New Rectangle(CInt(P.X), CInt(P.Y), 64, 512), Color.White) End If 'Render Crosshair: If Core.GameOptions.ShowGUI = True And isThirdPerson = False Then - Dim P As Vector2 = Core.GetMiddlePosition(New Size(16, 16)) - Core.SpriteBatch.Draw(_particlesTexture, New Rectangle(CInt(P.X), CInt(P.Y), 16, 16), New Rectangle(0, 0, 9, 9), Color.White) + Dim P As Vector2 = GetMiddlePosition(New Size(16, 16)) + SpriteBatch.Draw(_particlesTexture, New Rectangle(CInt(P.X), CInt(P.Y), 16, 16), New Rectangle(0, 0, 9, 9), Color.White) End If 'Render all active titles: - For Each Title As Title In Me._titles + For Each Title As Title In _titles Title.Draw() Next 'If the black fade is visible, render it: If FadeValue > 0 Then - Canvas.DrawRectangle(Core.windowSize, New Color(0, 0, 0, FadeValue)) + Canvas.DrawRectangle(windowSize, New Color(0, 0, 0, FadeValue)) End If End Sub @@ -382,11 +381,11 @@ Public Class OverworldScreen DrawRodID = -1 'Center the mouse: - Dim c As OverworldCamera = CType(Screen.Camera, OverworldCamera) + Dim c As OverworldCamera = CType(Camera, OverworldCamera) c.oldX = MouseHandler.MousePosition.X c.oldY = MouseHandler.MousePosition.Y - Player.Temp.IsInBattle = False + Core.Player.Temp.IsInBattle = False 'Set to correct music: If TrainerEncountered = False Then @@ -400,21 +399,21 @@ Public Class OverworldScreen End If Dim theme As String = Level.MusicLoop - If Screen.Level.Surfing = True Then + If Level.Surfing = True Then theme = "surf" End If - If Screen.Level.Riding = True Then + If Level.Riding = True Then theme = "ride" End If 'If the radio is activated and the station can be played on the current map, play the music. - If Level.IsRadioOn = True AndAlso GameJolt.PokegearScreen.StationCanPlay(Screen.Level.SelectedRadioStation) = True Then + If Level.IsRadioOn = True AndAlso GameJolt.PokegearScreen.StationCanPlay(Level.SelectedRadioStation) = True Then theme = Level.SelectedRadioStation.Music Else Level.IsRadioOn = False End If - MusicManager.PlayMusic(theme, True) + MusicPlayer.GetInstance().Play(theme, True) End If End Sub @@ -422,15 +421,38 @@ Public Class OverworldScreen ''' Update all title objects in the _titles array. ''' Private Sub UpdateTitles() - For Each t As Title In Me._titles + For Each t As Title In _titles t.Update() If t.IsReady = True Then 'If the title animation is ready, remove it from the array. - Me._titles.Remove(t) + _titles.Remove(t) Exit For End If Next End Sub + ''' + ''' Returns the currently active OverworldScreen instance. + ''' + Public Shared Function GetCurrentInstance() As OverworldScreen + Return GetCurrentInstance(CurrentScreen) + End Function + + ''' + ''' Returns the currently active OverworldScreen instance. + ''' + ''' The screen on the top of the stack. + Public Shared Function GetCurrentInstance(ByVal startScreen As Screen) As OverworldScreen + Dim s As Screen = startScreen + While s.Identification <> Identifications.OverworldScreen And s.PreScreen IsNot Nothing + s = s.PreScreen + End While + If s.Identification = Identifications.OverworldScreen Then + Return CType(s, OverworldScreen) + Else + Return Nothing + End If + End Function + ''' ''' A class to display text on the OverworldScreen. ''' @@ -449,10 +471,10 @@ Public Class OverworldScreen ''' The default is "Sample Text". Public Property Text() As String Get - Return Me._text + Return _text End Get Set(value As String) - Me._text = value + _text = value End Set End Property @@ -462,10 +484,10 @@ Public Class OverworldScreen ''' The default is White (255,255,255). No transparency is suppoorted. Public Property TextColor() As Color Get - Return Me._textColor + Return _textColor End Get Set(value As Color) - Me._textColor = value + _textColor = value End Set End Property @@ -475,10 +497,10 @@ Public Class OverworldScreen ''' The default is x10. Public Property Scale() As Single Get - Return Me._scale + Return _scale End Get Set(value As Single) - Me._scale = value + _scale = value End Set End Property @@ -488,10 +510,10 @@ Public Class OverworldScreen ''' The default is 0,0 - This position gets ignored when IsCentered is set to True. Public Property Position() As Vector2 Get - Return Me._position + Return _position End Get Set(value As Vector2) - Me._position = value + _position = value End Set End Property @@ -501,10 +523,10 @@ Public Class OverworldScreen ''' The default is True. If this is set to True, the Position Property is getting ignored. Public Property IsCentered() As Boolean Get - Return Me._isCentered + Return _isCentered End Get Set(value As Boolean) - Me._isCentered = value + _isCentered = value End Set End Property @@ -514,10 +536,10 @@ Public Class OverworldScreen ''' The default is 20. Public Property Delay() As Single Get - Return Me._delay + Return _delay End Get Set(value As Single) - Me._delay = value + _delay = value End Set End Property @@ -538,12 +560,12 @@ Public Class OverworldScreen ''' The position of the text on the screen. ''' If the text should always get centered on the screen. Public Sub New(ByVal Text As String, ByVal Delay As Single, ByVal TextColor As Color, ByVal Scale As Single, ByVal Position As Vector2, ByVal IsCentered As Boolean) - Me._text = Text - Me._delay = Delay - Me._textColor = TextColor - Me._scale = Scale - Me._position = Position - Me._isCentered = IsCentered + _text = Text + _delay = Delay + _textColor = TextColor + _scale = Scale + _position = Position + _isCentered = IsCentered End Sub ''' @@ -553,29 +575,29 @@ Public Class OverworldScreen Dim p As Vector2 = Vector2.Zero 'If the text is centered, set the draw position to the center of the screen, then add the position. - If Me._isCentered = True Then - Dim v As Vector2 = FontManager.TextFont.MeasureString(Me._text) * Me._scale - p = New Vector2(CSng(Core.windowSize.Width / 2 - v.X / 2), CSng(Core.windowSize.Height / 2 - v.Y / 2)) + If _isCentered = True Then + Dim v As Vector2 = FontManager.TextFont.MeasureString(_text) * _scale + p = New Vector2(CSng(windowSize.Width / 2 - v.X / 2), CSng(windowSize.Height / 2 - v.Y / 2)) End If - p += Me._position + p += _position 'Determine the alpha value. Dim A As Integer = 255 - If Me._delay <= 3.0F Then - A = CInt(255 * (1 / 3 * Me._delay)) + If _delay <= 3.0F Then + A = CInt(255 * (1 / 3 * _delay)) End If - Core.SpriteBatch.DrawString(FontManager.TextFont, Me._text, p, New Color(Me._textColor.R, Me._textColor.G, Me._textColor.B, A), 0.0F, Vector2.Zero, Me._scale, SpriteEffects.None, 0.0F) + SpriteBatch.DrawString(FontManager.TextFont, _text, p, New Color(_textColor.R, _textColor.G, _textColor.B, A), 0.0F, Vector2.Zero, _scale, SpriteEffects.None, 0.0F) End Sub ''' ''' Updates the Title object. ''' Public Sub Update() - If Me._delay > 0.0F Then - Me._delay -= 0.1F - If Me._delay <= 0.0F Then - Me._delay = 0.0F + If _delay > 0.0F Then + _delay -= 0.1F + If _delay <= 0.0F Then + _delay = 0.0F End If End If End Sub @@ -585,7 +607,7 @@ Public Class OverworldScreen ''' Public ReadOnly Property IsReady() As Boolean Get - Return Me._delay = 0.0F + Return _delay = 0.0F End Get End Property diff --git a/2.5DHero/2.5DHero/Overworld/RouteSign.vb b/2.5DHero/2.5DHero/Overworld/RouteSign.vb index 7edef8c8a..ee3dc1c17 100644 --- a/2.5DHero/2.5DHero/Overworld/RouteSign.vb +++ b/2.5DHero/2.5DHero/Overworld/RouteSign.vb @@ -54,7 +54,7 @@ Public Class RouteSign ''' Public Sub Draw() If Me._show = True Then - Dim placeString As String = OldLocalization.GetString("Places_" & Me._text, Me._text) + Dim placeString As String = Localization.GetString("Places_" & Me._text, Me._text) 'Get the point to render the text to. Dim pX As Integer = CInt(316 / 2) - CInt(FontManager.InGameFont.MeasureString(placeString).X / 2) diff --git a/2.5DHero/2.5DHero/Player/Badge.vb b/2.5DHero/2.5DHero/Player/Badge.vb new file mode 100644 index 000000000..4021fe0f1 --- /dev/null +++ b/2.5DHero/2.5DHero/Player/Badge.vb @@ -0,0 +1,234 @@ +''' +''' This class handles all actions regarding badge loading and displaying. +''' +Public Class Badge + + Public Enum HMMoves + Surf + Cut + Strength + Flash + Fly + Whirlpool + Waterfall + Ride + Dive + RockClimb + End Enum + + Private Shared Badges As New List(Of BadgeDeclaration) + + ''' + ''' This describes one badge loaded by a GameMode with ID, Name, Texture and Arguments + ''' + Private Class BadgeDeclaration + + Public ID As Integer = 0 + Public Name As String = "" + Public LevelCap As Integer = -1 + Public HMs As New List(Of HMMoves) + Public TextureRectangle As Rectangle = New Rectangle(0, 0, 50, 50) + Public TexturePath As String = "GUI\Badges" + Public Region As String = "Johto" + + Public Sub New(ByVal inputData As String) + Dim data() As String = inputData.Split(CChar("|")) + + Me.ID = CInt(data(0)) + Me.Name = data(1) + + If data.Count > 2 Then + For i = 2 To data.Count - 1 + Dim argName As String = data(i).Remove(data(i).IndexOf("=")) + Dim argData As String = data(i).Remove(0, data(i).IndexOf("=") + 1) + + Select Case argName.ToLower() + Case "level" + Me.LevelCap = CInt(argData) + Case "hm" + Dim hms() As String = argData.Split(CChar(",")) + + For Each hm As String In hms + Select Case hm.ToLower() + Case "surf" + Me.HMs.Add(HMMoves.Surf) + Case "cut" + Me.HMs.Add(HMMoves.Cut) + Case "strength" + Me.HMs.Add(HMMoves.Strength) + Case "flash" + Me.HMs.Add(HMMoves.Flash) + Case "fly" + Me.HMs.Add(HMMoves.Fly) + Case "whirlpool" + Me.HMs.Add(HMMoves.Whirlpool) + Case "waterfall" + Me.HMs.Add(HMMoves.Waterfall) + Case "ride" + Me.HMs.Add(HMMoves.Ride) + Case "dive" + Me.HMs.Add(HMMoves.Dive) + Case "rockclimb" + Me.HMs.Add(HMMoves.RockClimb) + End Select + Next + Case "texture" + Dim texData() As String = argData.Split(CChar(",")) + Me.TexturePath = texData(0) + Me.TextureRectangle = New Rectangle(CInt(texData(1)), CInt(texData(2)), CInt(texData(3)), CInt(texData(4))) + Case "region" + Me.Region = argData + End Select + Next + End If + End Sub + + End Class + + ''' + ''' Loads the badges. Only use after the GameMode got set. + ''' + Public Shared Sub Load() + Badges.Clear() + + Dim file As String = GameModeManager.GetDataFilePath("badges.dat") + Security.FileValidation.CheckFileValid(file, False, "Badge.vb") + Dim data() As String = System.IO.File.ReadAllLines(file) + For Each line As String In data + If line.Contains("|") = True Then + Badges.Add(New BadgeDeclaration(line)) + End If + Next + End Sub + +#Region "GetFunctions" + + ''' + ''' Gets the badge name. + ''' + ''' The ID of the badge. + Public Shared Function GetBadgeName(ByVal ID As Integer) As String + For Each b As BadgeDeclaration In Badges + If b.ID = ID Then + Return b.Name + End If + Next + Return "Plain" + End Function + + ''' + ''' Gets the badge texture. + ''' + ''' The ID of the badge. + Public Shared Function GetBadgeTexture(ByVal ID As Integer) As Texture2D + For Each b As BadgeDeclaration In Badges + If b.ID = ID Then + Return TextureManager.GetTexture(b.TexturePath, b.TextureRectangle, "") + End If + Next + Return TextureManager.GetTexture("GUI\Badges", New Rectangle(0, 0, 50, 50), "") + End Function + + ''' + ''' Gets the highest level cap the player can use traded Pokémon on. + ''' + Public Shared Function GetLevelCap() As Integer + Dim trainerBadges As List(Of Integer) = Core.Player.Badges + Dim highestCap As Integer = 10 + For Each b As BadgeDeclaration In Badges + If b.LevelCap > highestCap And trainerBadges.Contains(b.ID) = True Then + highestCap = b.LevelCap + End If + Next + Return highestCap + End Function + + ''' + ''' Checks if the player is able to perform a certain HM move. + ''' + ''' The HM move the player tries to use. + Public Shared Function CanUseHMMove(ByVal HM As HMMoves) As Boolean + Dim trainerBadges As List(Of Integer) = Core.Player.Badges + For Each b As BadgeDeclaration In Badges + If b.HMs.Contains(HM) = True And trainerBadges.Contains(b.ID) = True Or b.ID = 0 Then + Return True + End If + Next + Return False + End Function + + ''' + ''' Gets the region. + ''' + ''' The index of the region in the badges enumeration. + Public Shared Function GetRegion(ByVal index As Integer) As String + Dim regions As New List(Of String) + For Each b As BadgeDeclaration In Badges + If regions.Contains(b.Region) = False Then + regions.Add(b.Region) + End If + Next + If regions.Count - 1 >= index Then + Return regions(index) + Else + Return "Johto" + End If + End Function + + ''' + ''' Gets the amount of badges in a certain region. + ''' + ''' The region to count the badges. + Public Shared Function GetBadgesCount(ByVal region As String) As Integer + Dim c As Integer = 0 + For Each b As BadgeDeclaration In Badges + If b.Region.ToLower() = region.ToLower() Then + c += 1 + End If + Next + Return c + End Function + + ''' + ''' Returns the amount of regions that exists in total. + ''' + Public Shared Function GetRegionCount() As Integer + Dim regions As New List(Of String) + For Each b As BadgeDeclaration In Badges + If regions.Contains(b.Region) = False Then + regions.Add(b.Region) + End If + Next + Return regions.Count + End Function + + ''' + ''' Gets the ID of a badge. + ''' + ''' The region this badge is from. + ''' The index of this badge. + Public Shared Function GetBadgeID(ByVal region As String, ByVal index As Integer) As Integer + Dim cBadges As New List(Of BadgeDeclaration) + For Each b As BadgeDeclaration In Badges + If b.Region.ToLower() = region.ToLower() Then + cBadges.Add(b) + End If + Next + If cBadges.Count - 1 >= index Then + Return cBadges(index).ID + Else + Return 1 + End If + End Function + + ''' + ''' Checks if the player has a certain badge. + ''' + ''' The Badge ID to check for. + Public Shared Function PlayerHasBadge(ByVal BadgeID As Integer) As Boolean + Return Core.Player.Badges.Contains(BadgeID) + End Function + +#End Region + +End Class \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Player/Player.vb b/2.5DHero/2.5DHero/Player/Player.vb index 373da147f..fc009df82 100644 --- a/2.5DHero/2.5DHero/Player/Player.vb +++ b/2.5DHero/2.5DHero/Player/Player.vb @@ -421,7 +421,7 @@ Public AutosaveUsed As Boolean = False Public loadedSave As Boolean = False - Public PlayerTemp As New PlayerTemp() + Public PlayerTemp As PlayerTemp Public Structure Temp Public Shared PokemonScreenIndex As Integer = 0 @@ -487,10 +487,7 @@ ContentPackManager.LoadTextureReplacements(GameController.GamePath & "\ContentPacks\" & s & "\exceptions.dat") Next - OldGameModeManager.CreateGameModesFolder() - OldGameModeManager.CreateKolbenMode() - - ScriptStorage.Clear() + Construct.Framework.StorageHandler.GetInstance().Clear() ScriptBlock.TriggeredScriptBlock = False MysteryEventScreen.ClearActivatedEvents() Pokedex.AutoDetect = True @@ -504,25 +501,22 @@ LoadPlayer() - If OldGameModeManager.GameModeExists(GameMode) = False Then + If GameModeManager.GameModeExists(GameMode) = False Then GameMode = "Kolben" - OldGameModeManager.SetGameModePointer("Kolben") + GameModeManager.SetGameModePointer("Kolben") Else - OldGameModeManager.SetGameModePointer(GameMode) + GameModeManager.SetGameModePointer(GameMode) End If + GameModeManager.LoadFileItems() BattleSystem.GameModeAttackLoader.Load() If IsGameJoltSave = True Then SandBoxMode = False End If - OldLocalization.ReloadGameModeTokens() - - If OldGameModeManager.ActiveGameMode.IsDefaultGamemode = False Then - MusicManager.LoadMusic(True) - SoundManager.LoadSounds(True) - End If + MusicManager.Clear() + SoundManager.Clear() SmashRock.Load() Badge.Load() Pokedex.Load() @@ -545,8 +539,7 @@ LoadRoamingPokemonData() LoadStatistics() - PlayerTemp.Reset() - ResetTemp() + PlayerTemp = New PlayerTemp() Chat.ClearChat() If AutosaveUsed = True Then @@ -557,7 +550,7 @@ Dim outputString As String = newFilePrefix - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_continue_autosave") & " """ & outputString & """", 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_continue_autosave") & " """ & outputString & """", 12, FontManager.MainFont, Color.White) newFilePrefix = "" End If @@ -569,124 +562,126 @@ Entity.MakeShake = Name.ToLower() = "drunknilllzz" + + ''' Indev 0.54 Removal List ''' 1. All Mega Stones. [ID: 507 - 553] ''' 2. Shiny Candy [ID: 501] - If Not ActionScript.IsRegistered("PokemonIndev054Update") Then - ' Check Inventory. - Inventory.RemoveItem(501) - For i As Integer = 507 To 553 Step +1 - Inventory.RemoveItem(i) - Next + 'If Not ActionScript.IsRegistered("PokemonIndev054Update") Then + ' ' Check Inventory. + ' Inventory.RemoveItem(501) + ' For i As Integer = 507 To 553 Step +1 + ' Inventory.RemoveItem(i) + ' Next - ' Check Party Pokemon. - For Each Pokemon As Pokemon In Pokemons - If Pokemon.Item IsNot Nothing AndAlso (Pokemon.Item.ID >= 501 OrElse (Pokemon.Item.ID >= 507 AndAlso Pokemon.Item.ID <= 553)) Then - Pokemon.Item = Nothing - End If - Next + ' ' Check Party Pokemon. + ' For Each Pokemon As Pokemon In Pokemons + ' If Pokemon.Item IsNot Nothing AndAlso (Pokemon.Item.ID >= 501 OrElse (Pokemon.Item.ID >= 507 AndAlso Pokemon.Item.ID <= 553)) Then + ' Pokemon.Item = Nothing + ' End If + ' Next - ' Check PC Boxes. - If Not String.IsNullOrWhiteSpace(BoxData) Then - Dim TempBoxData As New List(Of String) - TempBoxData.AddRange(BoxData.SplitAtNewline()) + ' ' Check PC Boxes. + ' If Not String.IsNullOrWhiteSpace(BoxData) Then + ' Dim TempBoxData As New List(Of String) + ' TempBoxData.AddRange(BoxData.SplitAtNewline()) - For Each item As String In TempBoxData - If Not String.IsNullOrWhiteSpace(item) AndAlso Not item.StartsWith("BOX") Then - Dim TempString As String = item.Remove(item.IndexOf("{")) - Dim TempPokemon As Pokemon = Pokemon.GetPokemonByData(item.Remove(0, item.IndexOf("{"))) + ' For Each item As String In TempBoxData + ' If Not String.IsNullOrWhiteSpace(item) AndAlso Not item.StartsWith("BOX") Then + ' Dim TempString As String = item.Remove(item.IndexOf("{")) + ' Dim TempPokemon As Pokemon = Pokemon.GetPokemonByData(item.Remove(0, item.IndexOf("{"))) - If TempPokemon.Item IsNot Nothing AndAlso (TempPokemon.Item.ID >= 501 OrElse (TempPokemon.Item.ID >= 507 AndAlso TempPokemon.Item.ID <= 553)) Then - TempPokemon.Item = Nothing - End If + ' If TempPokemon.Item IsNot Nothing AndAlso (TempPokemon.Item.ID >= 501 OrElse (TempPokemon.Item.ID >= 507 AndAlso TempPokemon.Item.ID <= 553)) Then + ' TempPokemon.Item = Nothing + ' End If - item = TempString & TempPokemon.ToString() - End If - Next + ' item = TempString & TempPokemon.ToString() + ' End If + ' Next - BoxData = String.Join(vbNewLine, TempBoxData) - End If + ' BoxData = String.Join(vbNewLine, TempBoxData) + ' End If - ' Check Day Care. - If Not String.IsNullOrWhiteSpace(DaycareData) Then - Dim TempDaycareData As New List(Of String) - TempDaycareData.AddRange(DaycareData.SplitAtNewline()) + ' ' Check Day Care. + ' If Not String.IsNullOrWhiteSpace(DaycareData) Then + ' Dim TempDaycareData As New List(Of String) + ' TempDaycareData.AddRange(DaycareData.SplitAtNewline()) - For Each item As String In TempDaycareData - If Not String.IsNullOrWhiteSpace(item) AndAlso item.Contains("{") Then - Dim TempString As String = ItemData.Remove(item.IndexOf("{")) - Dim TempPokemon As Pokemon = Pokemon.GetPokemonByData(item.Remove(0, item.IndexOf("{"))) + ' For Each item As String In TempDaycareData + ' If Not String.IsNullOrWhiteSpace(item) AndAlso item.Contains("{") Then + ' Dim TempString As String = ItemData.Remove(item.IndexOf("{")) + ' Dim TempPokemon As Pokemon = Pokemon.GetPokemonByData(item.Remove(0, item.IndexOf("{"))) - If TempPokemon.Item IsNot Nothing AndAlso (TempPokemon.Item.ID >= 501 OrElse (TempPokemon.Item.ID >= 507 AndAlso TempPokemon.Item.ID <= 553)) Then - TempPokemon.Item = Nothing - End If + ' If TempPokemon.Item IsNot Nothing AndAlso (TempPokemon.Item.ID >= 501 OrElse (TempPokemon.Item.ID >= 507 AndAlso TempPokemon.Item.ID <= 553)) Then + ' TempPokemon.Item = Nothing + ' End If - item = TempString & TempPokemon.ToString() - End If - Next + ' item = TempString & TempPokemon.ToString() + ' End If + ' Next - DaycareData = String.Join(vbNewLine, TempDaycareData) - End If + ' DaycareData = String.Join(vbNewLine, TempDaycareData) + ' End If - ActionScript.RegisterID("PokemonIndev054Update") - End If + ' ActionScript.RegisterID("PokemonIndev054Update") + 'End If - ''' Indev 0.54.2 OT Fix List. - If Not ActionScript.IsRegistered("PokemonIndev0542Update") Then - ' Check Party Pokemon. - For Each Pokemon As Pokemon In Pokemons - If String.Equals(Pokemon.CatchTrainerName, Core.Player.Name, StringComparison.OrdinalIgnoreCase) AndAlso Pokemon.OT <> GameJoltSave.GameJoltID Then - Pokemon.OT = GameJoltSave.GameJoltID - End If - Next + '''' Indev 0.54.2 OT Fix List. + 'If Not ActionScript.IsRegistered("PokemonIndev0542Update") Then + ' ' Check Party Pokemon. + ' For Each Pokemon As Pokemon In Pokemons + ' If String.Equals(Pokemon.CatchTrainerName, Core.Player.Name, StringComparison.OrdinalIgnoreCase) AndAlso Pokemon.OT <> GameJoltSave.GameJoltID Then + ' Pokemon.OT = GameJoltSave.GameJoltID + ' End If + ' Next - ' Check PC Boxes. - If Not String.IsNullOrWhiteSpace(BoxData) Then - Dim TempBoxData As New List(Of String) - TempBoxData.AddRange(BoxData.SplitAtNewline()) + ' ' Check PC Boxes. + ' If Not String.IsNullOrWhiteSpace(BoxData) Then + ' Dim TempBoxData As New List(Of String) + ' TempBoxData.AddRange(BoxData.SplitAtNewline()) - For Each item As String In TempBoxData - If Not String.IsNullOrWhiteSpace(item) AndAlso Not item.StartsWith("BOX") Then - Dim TempString As String = item.Remove(item.IndexOf("{")) - Dim TempPokemon As Pokemon = Pokemon.GetPokemonByData(item.Remove(0, item.IndexOf("{"))) + ' For Each item As String In TempBoxData + ' If Not String.IsNullOrWhiteSpace(item) AndAlso Not item.StartsWith("BOX") Then + ' Dim TempString As String = item.Remove(item.IndexOf("{")) + ' Dim TempPokemon As Pokemon = Pokemon.GetPokemonByData(item.Remove(0, item.IndexOf("{"))) - If String.Equals(TempPokemon.CatchTrainerName, Core.Player.Name, StringComparison.OrdinalIgnoreCase) AndAlso TempPokemon.OT <> GameJoltSave.GameJoltID Then - TempPokemon.OT = GameJoltSave.GameJoltID - End If + ' If String.Equals(TempPokemon.CatchTrainerName, Core.Player.Name, StringComparison.OrdinalIgnoreCase) AndAlso TempPokemon.OT <> GameJoltSave.GameJoltID Then + ' TempPokemon.OT = GameJoltSave.GameJoltID + ' End If - item = TempString & TempPokemon.ToString() - End If - Next + ' item = TempString & TempPokemon.ToString() + ' End If + ' Next - BoxData = String.Join(vbNewLine, TempBoxData) - End If + ' BoxData = String.Join(vbNewLine, TempBoxData) + ' End If - ' Check Day Care. - If Not String.IsNullOrWhiteSpace(DaycareData) Then - Dim TempDaycareData As New List(Of String) - TempDaycareData.AddRange(DaycareData.SplitAtNewline()) + ' ' Check Day Care. + ' If Not String.IsNullOrWhiteSpace(DaycareData) Then + ' Dim TempDaycareData As New List(Of String) + ' TempDaycareData.AddRange(DaycareData.SplitAtNewline()) - For Each item As String In TempDaycareData - If Not String.IsNullOrWhiteSpace(item) AndAlso item.Contains("{") Then - Dim TempString As String = ItemData.Remove(item.IndexOf("{")) - Dim TempPokemon As Pokemon = Pokemon.GetPokemonByData(item.Remove(0, item.IndexOf("{"))) + ' For Each item As String In TempDaycareData + ' If Not String.IsNullOrWhiteSpace(item) AndAlso item.Contains("{") Then + ' Dim TempString As String = ItemData.Remove(item.IndexOf("{")) + ' Dim TempPokemon As Pokemon = Pokemon.GetPokemonByData(item.Remove(0, item.IndexOf("{"))) - If String.Equals(TempPokemon.CatchTrainerName, Core.Player.Name, StringComparison.OrdinalIgnoreCase) AndAlso TempPokemon.OT <> GameJoltSave.GameJoltID Then - TempPokemon.OT = GameJoltSave.GameJoltID - End If + ' If String.Equals(TempPokemon.CatchTrainerName, Core.Player.Name, StringComparison.OrdinalIgnoreCase) AndAlso TempPokemon.OT <> GameJoltSave.GameJoltID Then + ' TempPokemon.OT = GameJoltSave.GameJoltID + ' End If - item = TempString & TempPokemon.ToString() - End If - Next + ' item = TempString & TempPokemon.ToString() + ' End If + ' Next - DaycareData = String.Join(vbNewLine, TempDaycareData) - End If + ' DaycareData = String.Join(vbNewLine, TempDaycareData) + ' End If - ' Remove Duplicate data. - Core.Player.PokeFiles = Core.Player.PokeFiles.Distinct().ToList() + ' ' Remove Duplicate data. + ' Core.Player.PokeFiles = Core.Player.PokeFiles.Distinct().ToList() - ActionScript.RegisterID("PokemonIndev0542Update") - End If + ' ActionScript.RegisterID("PokemonIndev0542Update") + 'End If loadedSave = True End Sub @@ -698,7 +693,8 @@ If IsGameJoltSave = True Then PokeData = GameJoltSave.Party.SplitAtNewline() Else - PokeData = IO.File.ReadAllText(GameController.GamePath & "\Save\" & filePrefix & "\Party.dat").SplitAtNewline() + Dim PartyData As String = IO.File.ReadAllText(GameController.GamePath & "\Save\" & filePrefix & "\Party.dat") + PokeData = PartyData.SplitAtNewline() End If If PokeData.Count > 0 AndAlso PokeData(0) <> "" Then @@ -1743,7 +1739,7 @@ If CanFireStepEvent() = True Then Screen.Level.CheckTrainerSights() If CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - If CType(CurrentScreen, OverworldScreen).ActionScript.IsReady = False Then + If Construct.Controller.GetInstance().IsReady = False Then _stepEventStartedTrainer = True End If End If @@ -1791,28 +1787,26 @@ If CanFireStepEvent() = True Then Screen.Level.WalkedSteps = 0 - Dim s As String = "version=2" & vbNewLine & - "@Text.Show(Your repel effect wore off.)" & vbNewLine & - ":end" + Dim s As String = "@Text.Show(Your repel effect wore off.)" + If Temp.LastUsedRepel > -1 Then Dim haveItemLeft As Boolean = Inventory.GetItemAmount(Temp.LastUsedRepel) > 0 If haveItemLeft = True Then - s = "version=2" & vbNewLine & - "@Text.Show(Your repel effect wore off.*Do you want to use~another ?)" & vbNewLine & + s = "@Text.Show(Your repel effect wore off.*Do you want to use~another ?)" & vbNewLine & "@Options.Show(Yes,No)" & vbNewLine & + ":select:" & vbNewLine & ":when:Yes" & vbNewLine & "@sound.play(repel_use)" & vbNewLine & - "@Text.Show( used~a .)" & vbNewLine & - "@item.repel(" & Temp.LastUsedRepel & ")" & vbNewLine & + "@Text.Show( used~a .)" & vbNewLine & + "@player.userepel(" & Temp.LastUsedRepel & ")" & vbNewLine & "@item.remove(" & Temp.LastUsedRepel & ",1,0)" & vbNewLine & - ":endwhen" & vbNewLine & - ":end" + ":endselect" End If End If - CType(CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2, False) + Construct.Controller.GetInstance().RunFromString(s, {}) _stepEventRepelMessage = True Else _repelSteps = 1 diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/Attack.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/Attack.vb index b1ce06cf6..9dc3bc088 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/Attack.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/Attack.vb @@ -1487,7 +1487,7 @@ Case Else 'Try to load a GameMode move. Dim gameModeMove As Attack = GameModeAttackLoader.GetAttackByID(ID) - If Not gameModeMove Is Nothing And OldGameModeManager.ActiveGameMode.IsDefaultGamemode = False Then + If Not gameModeMove Is Nothing And GameModeManager.ActiveGameMode.IsDefaultGamemode = False Then returnMove = gameModeMove.Copy() Else returnMove = New Moves.Normal.Pound() diff --git a/2.5DHero/2.5DHero/Pokemon/Attacks/GameModeAttackLoader.vb b/2.5DHero/2.5DHero/Pokemon/Attacks/GameModeAttackLoader.vb index 478aac996..1cdb95b73 100644 --- a/2.5DHero/2.5DHero/Pokemon/Attacks/GameModeAttackLoader.vb +++ b/2.5DHero/2.5DHero/Pokemon/Attacks/GameModeAttackLoader.vb @@ -18,8 +18,8 @@ Public Shared Sub Load() LoadedMoves.Clear() - If OldGameModeManager.ActiveGameMode.IsDefaultGamemode = False Then - For Each file As String In System.IO.Directory.GetFiles(GameController.GamePath & "\" & OldGameModeManager.ActiveGameMode.ContentPath & "\" & PATH, "*.dat") + If GameModeManager.ActiveGameMode.IsDefaultGamemode = False Then + For Each file As String In System.IO.Directory.GetFiles(GameController.GamePath & "\" & GameModeManager.ActiveGameMode.ContentPath & "\" & PATH, "*.dat") LoadMove(file) Next End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Berries/OranBerry.vb b/2.5DHero/2.5DHero/Pokemon/Items/Berries/OranBerry.vb index fa1dc8896..4f1aa0ed9 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Berries/OranBerry.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Berries/OranBerry.vb @@ -21,7 +21,7 @@ Namespace Items.Berries End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Berries/SitrusBerry.vb b/2.5DHero/2.5DHero/Pokemon/Items/Berries/SitrusBerry.vb index f4ed785e5..828668a9d 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Berries/SitrusBerry.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Berries/SitrusBerry.vb @@ -19,7 +19,7 @@ Namespace Items.Berries End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/GoodRod.vb b/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/GoodRod.vb index b6fdf30b6..3d9f9ffa4 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/GoodRod.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/GoodRod.vb @@ -14,7 +14,7 @@ Namespace Items.KeyItems Public Overrides Sub Use() If OldRod.IsInfrontOfWater() = True And Screen.Level.Surfing = False And Screen.Level.Riding = False Then - Dim s As String = "version=2" + Dim s As String = "" While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen Core.CurrentScreen = Core.CurrentScreen.PreScreen @@ -22,8 +22,8 @@ Namespace Items.KeyItems Dim p As Pokemon = Nothing - Dim pokeFile As String = "poke\" & Screen.Level.LevelFile.Remove(Screen.Level.LevelFile.Length - 4, 4) & ".poke" - If OldGameModeManager.MapFileExists(pokeFile) = True Then + Dim pokeFile As String = Screen.Level.LevelFile.Remove(Screen.Level.LevelFile.Length - 4, 4) & ".poke" + If System.IO.File.Exists(GameModeManager.GetPokeFilePath(pokeFile)) = True Then p = Spawner.GetPokemon(Screen.Level.LevelFile, Spawner.EncounterMethods.GoodRod, False) End If @@ -38,10 +38,13 @@ Namespace Items.KeyItems PokemonShiny = "S" End If - If Core.Random.Next(0, 3) <> 0 Or Core.Player.Pokemons(0).Ability.Name.ToLower() = "suction cups" Or Core.Player.Pokemons(0).Ability.Name.ToLower() = "sticky hold" Then + If Core.Random.Next(0, 3) <> 0 Or + Core.Player.Pokemons(0).Ability.Name.ToLower() = "suction cups" Or + Core.Player.Pokemons(0).Ability.Name.ToLower() = "sticky hold" Then + Dim LookingOffset As New Vector3(0) - Select Case Screen.Camera.GetPlayerFacingDirection() + Select Case Screen.Camera.GetPlayerFacingDirection() Case 0 LookingOffset.Z = -1 Case 1 @@ -54,12 +57,12 @@ Namespace Items.KeyItems Dim spawnPosition As Vector3 = New Vector3(Screen.Camera.Position.X + LookingOffset.X, Screen.Camera.Position.Y, Screen.Camera.Position.Z + LookingOffset.Z) - Dim endRotation As Integer = Screen.Camera.GetPlayerFacingDirection() + 2 + Dim endRotation As Integer = Screen.Camera.GetPlayerFacingDirection() + 2 If endRotation > 3 Then endRotation = endRotation - 4 End If - s &= vbNewLine & "@player.showrod(1)" & vbNewLine & + s &= "@player.showrod(1)" & vbNewLine & "@text.show(. . . . . . . . . .)" & vbNewLine & "@text.show(Oh!~A bite!)" & vbNewLine & "@player.hiderod" & vbNewLine & @@ -70,17 +73,15 @@ Namespace Items.KeyItems "@text.show(The wild " & p.OriginalName & "~attacked!)" & vbNewLine & "@npc.remove(1337)" & vbNewLine & "@battle.setvar(divebattle,true)" & vbNewLine & - "@battle.wild(" & p.GetSaveData() & ")" & vbNewLine & - ":end" + "@battle.wild(" & p.GetSaveData() & ")" Else - s &= vbNewLine & "@player.showrod(1)" & vbNewLine & + s &= "@player.showrod(1)" & vbNewLine & "@text.show(. . . . . . . . . .)" & vbNewLine & "@text.show(No, there's nothing here...)" & vbNewLine & - "@player.hiderod" & vbNewLine & - ":end" + "@player.hiderod" End If - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) Else Screen.TextBox.Show("Now is not the time~to use that.", {}, True, True) End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/OldRod.vb b/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/OldRod.vb index 7ae91a0a1..2cc5f387b 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/OldRod.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/OldRod.vb @@ -14,16 +14,16 @@ Namespace Items.KeyItems Public Overrides Sub Use() If IsInfrontOfWater() = True And Screen.Level.Surfing = False And Screen.Level.Riding = False Then - Dim s As String = "version=2" + Dim s As String = "" While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen Core.CurrentScreen = Core.CurrentScreen.PreScreen End While Dim p As Pokemon = Nothing - - Dim pokeFile As String = "poke\" & Screen.Level.LevelFile.Remove(Screen.Level.LevelFile.Length - 4, 4) & ".poke" - If OldGameModeManager.MapFileExists(pokeFile) = True Then + + Dim pokeFile As String = Screen.Level.LevelFile.Remove(Screen.Level.LevelFile.Length - 4, 4) & ".poke" + If System.IO.File.Exists(GameModeManager.GetPokeFilePath(pokeFile)) = True Then p = Spawner.GetPokemon(Screen.Level.LevelFile, Spawner.EncounterMethods.OldRod, False) End If @@ -38,10 +38,13 @@ Namespace Items.KeyItems PokemonShiny = "S" End If - If Core.Random.Next(0, 3) <> 0 Or Core.Player.Pokemons(0).Ability.Name.ToLower() = "suction cups" Or Core.Player.Pokemons(0).Ability.Name.ToLower() = "sticky hold" Then + If Core.Random.Next(0, 3) <> 0 Or + Core.Player.Pokemons(0).Ability.Name.ToLower() = "suction cups" Or + Core.Player.Pokemons(0).Ability.Name.ToLower() = "sticky hold" Then + Dim LookingOffset As New Vector3(0) - Select Case Screen.Camera.GetPlayerFacingDirection() + Select Case Screen.Camera.GetPlayerFacingDirection() Case 0 LookingOffset.Z = -1 Case 1 @@ -54,12 +57,12 @@ Namespace Items.KeyItems Dim spawnPosition As Vector3 = New Vector3(Screen.Camera.Position.X + LookingOffset.X, Screen.Camera.Position.Y, Screen.Camera.Position.Z + LookingOffset.Z) - Dim endRotation As Integer = Screen.Camera.GetPlayerFacingDirection() + 2 + Dim endRotation As Integer = Screen.Camera.GetPlayerFacingDirection() + 2 If endRotation > 3 Then endRotation = endRotation - 4 End If - s &= vbNewLine & "@player.showrod(0)" & vbNewLine & + s &= "@player.showrod(0)" & vbNewLine & "@text.show(. . . . . . . . . .)" & vbNewLine & "@text.show(Oh!~A bite!)" & vbNewLine & "@player.hiderod" & vbNewLine & @@ -70,17 +73,15 @@ Namespace Items.KeyItems "@text.show(The wild " & p.OriginalName & "~attacked!)" & vbNewLine & "@npc.remove(1337)" & vbNewLine & "@battle.setvar(divebattle,true)" & vbNewLine & - "@battle.wild(" & p.GetSaveData() & ")" & vbNewLine & - ":end" + "@battle.wild(" & p.GetSaveData() & ")" Else - s &= vbNewLine & "@player.showrod(0)" & vbNewLine & + s &= "@player.showrod(0)" & vbNewLine & "@text.show(. . . . . . . . . .)" & vbNewLine & "@text.show(No, there's nothing here...)" & vbNewLine & - "@player.hiderod" & vbNewLine & - ":end" + "@player.hiderod" End If - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) Else Screen.TextBox.Show("Now is not the time~to use that.", {}, True, True) End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/SuperRod.vb b/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/SuperRod.vb index 12e5d3799..5ae3edbcf 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/SuperRod.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/KeyItems/SuperRod.vb @@ -14,16 +14,16 @@ Namespace Items.KeyItems Public Overrides Sub Use() If OldRod.IsInfrontOfWater() = True And Screen.Level.Surfing = False And Screen.Level.Riding = False Then - Dim s As String = "version=2" + Dim s As String = "" While Core.CurrentScreen.Identification <> Screen.Identifications.OverworldScreen Core.CurrentScreen = Core.CurrentScreen.PreScreen End While Dim p As Pokemon = Nothing - - Dim pokeFile As String = "poke\" & Screen.Level.LevelFile.Remove(Screen.Level.LevelFile.Length - 4, 4) & ".poke" - If OldGameModeManager.MapFileExists(pokeFile) = True Then + + Dim pokeFile As String = Screen.Level.LevelFile.Remove(Screen.Level.LevelFile.Length - 4, 4) & ".poke" + If System.IO.File.Exists(GameModeManager.GetPokeFilePath(pokeFile)) = True Then p = Spawner.GetPokemon(Screen.Level.LevelFile, Spawner.EncounterMethods.SuperRod, False) End If @@ -38,10 +38,13 @@ Namespace Items.KeyItems PokemonShiny = "S" End If - If Core.Random.Next(0, 3) <> 0 Or Core.Player.Pokemons(0).Ability.Name.ToLower() = "suction cups" Or Core.Player.Pokemons(0).Ability.Name.ToLower() = "sticky hold" Then + If Core.Random.Next(0, 3) <> 0 Or + Core.Player.Pokemons(0).Ability.Name.ToLower() = "suction cups" Or + Core.Player.Pokemons(0).Ability.Name.ToLower() = "sticky hold" Then + Dim LookingOffset As New Vector3(0) - Select Case Screen.Camera.GetPlayerFacingDirection() + Select Case Screen.Camera.GetPlayerFacingDirection() Case 0 LookingOffset.Z = -1 Case 1 @@ -54,12 +57,12 @@ Namespace Items.KeyItems Dim spawnPosition As Vector3 = New Vector3(Screen.Camera.Position.X + LookingOffset.X, Screen.Camera.Position.Y, Screen.Camera.Position.Z + LookingOffset.Z) - Dim endRotation As Integer = Screen.Camera.GetPlayerFacingDirection() + 2 + Dim endRotation As Integer = Screen.Camera.GetPlayerFacingDirection() + 2 If endRotation > 3 Then endRotation = endRotation - 4 End If - s &= vbNewLine & "@player.showrod(2)" & vbNewLine & + s &= "@player.showrod(2)" & vbNewLine & "@text.show(. . . . . . . . . .)" & vbNewLine & "@text.show(Oh!~A bite!)" & vbNewLine & "@player.hiderod" & vbNewLine & @@ -70,17 +73,15 @@ Namespace Items.KeyItems "@text.show(The wild " & p.OriginalName & "~attacked!)" & vbNewLine & "@npc.remove(1337)" & vbNewLine & "@battle.setvar(divebattle,true)" & vbNewLine & - "@battle.wild(" & p.GetSaveData() & ")" & vbNewLine & - ":end" + "@battle.wild(" & p.GetSaveData() & ")" Else - s &= vbNewLine & "@player.showrod(2)" & vbNewLine & + s &= "@player.showrod(2)" & vbNewLine & "@text.show(. . . . . . . . . .)" & vbNewLine & "@text.show(No, there's nothing here...)" & vbNewLine & - "@player.hiderod" & vbNewLine & - ":end" + "@player.hiderod" End If - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) Else Screen.TextBox.Show("Now is not the time~to use that.", {}, True, True) End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/BerryJuice.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/BerryJuice.vb index 0006cf041..d1c3d9e30 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/BerryJuice.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/BerryJuice.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/EnergyPowder.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/EnergyPowder.vb index 6d085b159..3f8592216 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/EnergyPowder.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/EnergyPowder.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/EnergyRoot.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/EnergyRoot.vb index e118a94e5..599c383ef 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/EnergyRoot.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/EnergyRoot.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Fanta.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Fanta.vb index 9ecb38eca..03407408c 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Fanta.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Fanta.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/FreshWater.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/FreshWater.vb index 1a657dbe1..55c0da758 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/FreshWater.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/FreshWater.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/FullRestore.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/FullRestore.vb index 5b2462d25..1fd7f56b2 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/FullRestore.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/FullRestore.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/HyperPotion.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/HyperPotion.vb index 882467451..67db8987f 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/HyperPotion.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/HyperPotion.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Lemonade.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Lemonade.vb index 7414b60d9..916540dd6 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Lemonade.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Lemonade.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MaxPotion.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MaxPotion.vb index 47ceda60b..075d9d1bc 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MaxPotion.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MaxPotion.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MaxRevive.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MaxRevive.vb index 8ad154f84..26dd8e488 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MaxRevive.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MaxRevive.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MooMooMilk.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MooMooMilk.vb index eb8991637..82dcff737 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MooMooMilk.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/MooMooMilk.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Potion.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Potion.vb index fd5aecc77..f2ac38fc2 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Potion.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Potion.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RageCandyBar.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RageCandyBar.vb index a1a4dde94..13076e66c 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RageCandyBar.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RageCandyBar.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RareCandy.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RareCandy.vb index 79dd8743e..67807edbd 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RareCandy.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RareCandy.vb @@ -23,17 +23,16 @@ Namespace Items.Medicine Public Overrides Function UseOnPokemon(ByVal PokeIndex As Integer) As Boolean Dim Pokemon As Pokemon = Core.Player.Pokemons(PokeIndex) - If Pokemon.Level < CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100")) And Pokemon.IsEgg() = False Then + If Pokemon.Level < CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100")) And Pokemon.IsEgg() = False Then Dim beforeHP As Integer = Pokemon.MaxHP Pokemon.LevelUp(False) Pokemon.Experience = Pokemon.NeedExperience(Pokemon.Level) - If Pokemon.Status = net.Pokemon3D.Game.Pokemon.StatusProblems.Fainted Then - Pokemon.Status = net.Pokemon3D.Game.Pokemon.StatusProblems.None + If Pokemon.Status = Pokemon.StatusProblems.Fainted Then + Pokemon.Status = Pokemon.StatusProblems.None Pokemon.HP = (Pokemon.MaxHP - beforeHP).Clamp(1, 999) End If Dim s As String = - "version=2" & vbNewLine & "@sound.play(success_small)" & vbNewLine & "@text.show(" & Pokemon.GetDisplayName() & " reached~level " & Pokemon.Level & "!)" & vbNewLine @@ -80,7 +79,7 @@ Namespace Items.Medicine Core.SetScreen(sc) - CType(sc, OverworldScreen).ActionScript.StartScript(s, 2, False) + Construct.Controller.GetInstance().RunFromString(s, {}) PlayerStatistics.Track("[17]Medicine Items used", 1) Return True diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RevivalHerb.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RevivalHerb.vb index ba7496a9c..285efb29a 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RevivalHerb.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/RevivalHerb.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Revive.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Revive.vb index 8b19ca034..98085e2d5 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Revive.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/Revive.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/SodaPop.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/SodaPop.vb index f428732e0..ceba42d68 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/SodaPop.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/SodaPop.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/SuperPotion.vb b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/SuperPotion.vb index cb18224c2..2efff0d5f 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Medicine/SuperPotion.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Medicine/SuperPotion.vb @@ -14,7 +14,7 @@ Namespace Items.Medicine End Sub Public Overrides Sub Use() - If CBool(OldGameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then + If CBool(GameModeManager.GetGameRuleValue("CanUseHealItem", "1")) = False Then Screen.TextBox.Show("Cannot use heal items.", {}, False, False) Exit Sub End If diff --git a/2.5DHero/2.5DHero/Pokemon/Items/Standard/EscapeRope.vb b/2.5DHero/2.5DHero/Pokemon/Items/Standard/EscapeRope.vb index 2ce0dc8dc..1545ce704 100644 --- a/2.5DHero/2.5DHero/Pokemon/Items/Standard/EscapeRope.vb +++ b/2.5DHero/2.5DHero/Pokemon/Items/Standard/EscapeRope.vb @@ -26,8 +26,7 @@ Namespace Items.Standard Dim yFinish As String = (Screen.Camera.Position.Y + 2.9F).ToString().ReplaceDecSeparator() - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & t & ") + Dim s As String = "@text.show(" & t & ") @level.wait(20) @camera.activatethirdperson @camera.reset @@ -49,10 +48,9 @@ Namespace Items.Standard End If s &= vbNewLine & "@level.update -@screen.fadein -:end" +@screen.fadein" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) Else Screen.TextBox.Show("Cannot use the Escape~Rope here!", {}, True, True) End If diff --git a/2.5DHero/2.5DHero/Pokemon/Monster/Pokemon.vb b/2.5DHero/2.5DHero/Pokemon/Monster/Pokemon.vb index 3630a04c7..d4e2a7216 100644 --- a/2.5DHero/2.5DHero/Pokemon/Monster/Pokemon.vb +++ b/2.5DHero/2.5DHero/Pokemon/Monster/Pokemon.vb @@ -1224,7 +1224,7 @@ Public Class Pokemon ''' Checks if a requested Pokémon data file exists. ''' Public Shared Function PokemonDataExists(ByVal Number As Integer) As Boolean - Return System.IO.File.Exists(OldGameModeManager.GetPokemonDataFilePath(Number.ToString() & ".dat")) + Return IO.File.Exists(GameModeManager.GetDataFilePath("Pokemon\" & Number.ToString() & ".dat")) End Function ''' @@ -1552,7 +1552,7 @@ Public Class Pokemon Case "nickname" Me.NickName = tagValue Case "level" - Me.Level = CInt(tagValue).Clamp(1, CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100"))) + Me.Level = CInt(tagValue).Clamp(1, CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100"))) Case "ot" Me.OT = tagValue Case "ability" @@ -2087,8 +2087,8 @@ Public Class Pokemon Return "Egg" Else If Me.NickName = "" Then - If OldLocalization.TokenExists("pokemon_name_" & Me.Name) = True Then - Return OldLocalization.GetString("pokemon_name_" & Me.Name) + If Localization.TokenExists("pokemon_name_" & Me.Name) = True Then + Return Localization.GetString("pokemon_name_" & Me.Name) Else Return Me.Name End If @@ -2102,8 +2102,8 @@ Public Class Pokemon ''' Returns the properly translated name of a Pokémon if defined in the language files. ''' Public Function GetName() As String - If OldLocalization.TokenExists("pokemon_name_" & Me.Name) = True Then - Return OldLocalization.GetString("pokemon_name_" & Me.Name) + If Localization.TokenExists("pokemon_name_" & Me.Name) = True Then + Return Localization.GetString("pokemon_name_" & Me.Name) Else Return Me.Name End If @@ -2133,7 +2133,7 @@ Public Class Pokemon While Me.Experience >= NeedExperience(Me.Level + 1) Me.LevelUp(LearnRandomAttack) End While - Me.Level = Me.Level.Clamp(1, CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100"))) + Me.Level = Me.Level.Clamp(1, CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100"))) End Sub ''' diff --git a/2.5DHero/2.5DHero/Pokemon/Monster/PokemonInteractions.vb b/2.5DHero/2.5DHero/Pokemon/Monster/PokemonInteractions.vb index ee7ba23dc..1819a0a30 100644 --- a/2.5DHero/2.5DHero/Pokemon/Monster/PokemonInteractions.vb +++ b/2.5DHero/2.5DHero/Pokemon/Monster/PokemonInteractions.vb @@ -48,8 +48,7 @@ Dim newPosition As New Vector2(0, 1) - Dim s As String = "version=2" & vbNewLine & - "@pokemon.cry(" & p.Number & ")" & vbNewLine + Dim s As String = "@pokemon.cry(" & p.Number & ")" & vbNewLine If CType(Screen.Camera, OverworldCamera).ThirdPerson = False Then If reaction.HasNotification = True Then @@ -60,7 +59,7 @@ s &= "@camera.deactivatethirdperson" & vbNewLine End If - s &= "@text.show(" & reaction.GetMessage(p) & ")" & vbNewLine + s &= "@text.show(" & reaction.GetMessage(p) & ")" Else Dim preYaw As Single = Screen.Camera.Yaw If reaction.HasNotification = True Then @@ -72,9 +71,8 @@ End If s &= "@text.show(" & reaction.GetMessage(p) & ")" & vbNewLine s &= "@camera.activatethirdperson" & vbNewLine - s &= "@camera.setyaw(" & preYaw & ")" & vbNewLine + s &= "@camera.setyaw(" & preYaw & ")" End If - s &= ":end" Return s End Function @@ -110,6 +108,7 @@ s &= "@camera.deactivatethirdperson" & vbNewLine s &= "@text.show(" & message & ")" & vbNewLine & "@options.show(Yes,No)" & vbNewLine & + ":select:" & vbNewLine & ":when:Yes" & vbNewLine & "@text.show(Your Pokémon handed over~the " & item.Name & "!)" & vbNewLine & "@item.give(" & PickupItemID & ",1)" & vbNewLine & @@ -117,7 +116,7 @@ ":when:No" & vbNewLine & "@text.show(Your Pokémon kept~the item happily.)" & vbNewLine & "@pokemon.addfriendship(0,10)" & vbNewLine & - ":endwhen" & vbNewLine + ":endselect" & vbNewLine Else s &= "@camera.setposition(" & newPosition.X & ",1," & newPosition.Y & ")" & vbNewLine s &= "@entity.showmessagebulb(" & CInt(MessageBulb.NotifcationTypes.Question).ToString() & "|" & cPosition.X + offset.X & "|" & cPosition.Y + 0.7F & "|" & cPosition.Z + offset.Y & ")" & vbNewLine @@ -126,6 +125,7 @@ s &= "@text.show(" & message & ")" & vbNewLine & "@options.show(Yes,No)" & vbNewLine & + ":select:" & vbNewLine & ":when:Yes" & vbNewLine & "@text.show(Your Pokémon handed over~the " & item.Name & "!)" & vbNewLine & "@item.give(" & PickupItemID & ",1)" & vbNewLine & @@ -133,7 +133,7 @@ ":when:No" & vbNewLine & "@text.show(Your Pokémon kept~the item happily.)" & vbNewLine & "@pokemon.addfriendship(0,10)" & vbNewLine & - ":endwhen" & vbNewLine + ":endselect" & vbNewLine s &= "@camera.activatethirdperson" & vbNewLine End If s &= ":end" @@ -229,7 +229,7 @@ Private Shared Function GetStatusConditionReaction(ByVal p As Pokemon) As ReactionContainer Select Case p.Status Case Pokemon.StatusProblems.BadPoison, Pokemon.StatusProblems.Poison - Return New ReactionContainer(" is shivering~with the effects of being~poisoned.", MessageBulb.NotifcationTypes.Poisoned) + Return New ReactionContainer(" is~shivering with the effects~of being poisoned.", MessageBulb.NotifcationTypes.Poisoned) Case Pokemon.StatusProblems.Burn Return New ReactionContainer("'s burn~looks painful!", MessageBulb.NotifcationTypes.Poisoned) Case Pokemon.StatusProblems.Freeze @@ -398,13 +398,13 @@ r = New ReactionContainer(" is sniffing~at the floor.", MessageBulb.NotifcationTypes.Question) End If Case 18 - r = New ReactionContainer(" is peering~down.", MessageBulb.NotifcationTypes.Question) + r = New ReactionContainer(" is~peering down.", MessageBulb.NotifcationTypes.Question) Case 19 r = New ReactionContainer(" seems~to be wandering around.", MessageBulb.NotifcationTypes.Note) Case 20 - r = New ReactionContainer(" is looking~around absentmindedly.", MessageBulb.NotifcationTypes.Waiting) + r = New ReactionContainer(" is~looking around absentmindedly.", MessageBulb.NotifcationTypes.Waiting) Case 21 - r = New ReactionContainer(" is relaxing~comfortably.", MessageBulb.NotifcationTypes.Friendly) + r = New ReactionContainer(" is~relaxing comfortably.", MessageBulb.NotifcationTypes.Friendly) Case 22 If IsInside() = True Then r = New ReactionContainer(" is sniffing~at the floor.", MessageBulb.NotifcationTypes.Waiting) @@ -481,7 +481,7 @@ r = New ReactionContainer("Your Pokémon was surprised~that you suddenly spoke to it!", MessageBulb.NotifcationTypes.Exclamation) Case 42 If Not p.Item Is Nothing Then - r = New ReactionContainer(" almost forgot~it was holding~that " & p.Item.Name & "!", MessageBulb.NotifcationTypes.Question) + r = New ReactionContainer(" almost~forgot it was holding~that " & p.Item.Name & "!", MessageBulb.NotifcationTypes.Question) End If Case 43 If IceAround() = True Then @@ -492,7 +492,7 @@ r = New ReactionContainer("Your Pokémon almost slipped~and fell over!", MessageBulb.NotifcationTypes.Exclamation) End If Case 45 - r = New ReactionContainer(" sensed something~strange and was surprised!", MessageBulb.NotifcationTypes.Question) + r = New ReactionContainer(" sensed~something strange and~was surprised!", MessageBulb.NotifcationTypes.Question) Case 46 r = New ReactionContainer("Your Pokémon is looking~around restlessly for~something.", MessageBulb.NotifcationTypes.Question) Case 47 @@ -502,7 +502,7 @@ r = New ReactionContainer("Sniff, sniff!~Is there something nearby?", MessageBulb.NotifcationTypes.Question) End If Case 49 - r = New ReactionContainer(" is wandering~around and searching~for something.", MessageBulb.NotifcationTypes.Question) + r = New ReactionContainer(" is~wandering around and~searching for something.", MessageBulb.NotifcationTypes.Question) Case 50 r = New ReactionContainer(" is sniffing~at .", MessageBulb.NotifcationTypes.Friendly) Case 51 @@ -694,7 +694,7 @@ Public Shared Sub Load() SpecialReactionList.Clear() - Dim path As String = OldGameModeManager.GetContentFilePath("Data\interactions.dat") + Dim path As String = GameModeManager.GetDataFilePath("interactions.dat") Security.FileValidation.CheckFileValid(path, False, "PokemonInteractions.vb") Dim data() As String = System.IO.File.ReadAllLines(path) @@ -819,11 +819,8 @@ Public Function Match(ByVal p As Pokemon) As Boolean If MapFiles.Count > 0 Then - If MapFiles.Any(Function(m As String) - Return m.ToLowerInvariant() = Screen.Level.LevelFile.ToLowerInvariant() - End Function) Then + If MapFiles.Contains(Screen.Level.LevelFile) = False Then Return False - End If End If @@ -879,7 +876,7 @@ Public Shared Sub CheckForRandomPickup() 'Checks if the first Pokémon in the party is following the player: - If Screen.Level.ShowOverworldPokemon = True And CBool(OldGameModeManager.GetGameRuleValue("ShowFollowPokemon", "1")) = True Then + If Screen.Level.ShowOverworldPokemon = True And CBool(GameModeManager.GetGameRuleValue("ShowFollowPokemon", "1")) = True Then 'Checks if the player has a Pokémon: If Core.Player.Pokemons.Count > 0 And Screen.Level.Surfing = False And Screen.Level.Riding = False And Screen.Level.ShowOverworldPokemon = True And Not Core.Player.GetWalkPokemon() Is Nothing Then If Core.Player.GetWalkPokemon().Status = Pokemon.StatusProblems.None Then @@ -1046,7 +1043,7 @@ 'If an item got generated, assign it to the global value to store it until the player interacts with the Pokémon. Also store the individual value. If newItemID > -1 Then - Logger.Debug("Pokémon picks up item (" & Item.GetItemByID(newItemID).Name & ")") + Logger.Debug("152", "Pokémon picks up item (" & Item.GetItemByID(newItemID).Name & ")") PickupItemID = newItemID PickupIndividualValue = Core.Player.GetWalkPokemon().IndividualValue SoundManager.PlaySound("pickup") diff --git a/2.5DHero/2.5DHero/Pokemon/Monster/Resource/PokemonForms.vb b/2.5DHero/2.5DHero/Pokemon/Monster/Resource/PokemonForms.vb index 2fc5c1acc..ed50b8db3 100644 --- a/2.5DHero/2.5DHero/Pokemon/Monster/Resource/PokemonForms.vb +++ b/2.5DHero/2.5DHero/Pokemon/Monster/Resource/PokemonForms.vb @@ -113,7 +113,7 @@ Public Class PokemonForms ''' The number of the Pokémon. ''' The additional data of the Pokémon. Public Shared Function GetPokemonDataFile(ByVal Number As Integer, ByVal AdditionalData As String) As String - Dim FileName As String = OldGameModeManager.GetPokemonDataFilePath(Number.ToString() & ".dat") + Dim FileName As String = GameModeManager.GetDataFilePath("Pokemon\" & Number.ToString() & ".dat") Dim Addition As String = "" @@ -129,7 +129,7 @@ Public Class PokemonForms If System.IO.File.Exists(FileName) = False Then Number = 10 - FileName = OldGameModeManager.GetPokemonDataFilePath(Number.ToString() & ".dat") + FileName = GameModeManager.GetDataFilePath("Pokemon\" & Number.ToString() & ".dat") End If Return FileName diff --git a/2.5DHero/2.5DHero/Pokemon/Monster/RoamingPokemon.vb b/2.5DHero/2.5DHero/Pokemon/Monster/RoamingPokemon.vb index 50f747b3d..c1851893b 100644 --- a/2.5DHero/2.5DHero/Pokemon/Monster/RoamingPokemon.vb +++ b/2.5DHero/2.5DHero/Pokemon/Monster/RoamingPokemon.vb @@ -36,7 +36,7 @@ Public Class RoamingPokemon End If If CInt(data(2)) = worldID Or worldID = -1 Then - Dim regionsFile As String = OldGameModeManager.GetScriptPath("worldmap\roaming_regions.dat") + Dim regionsFile As String = GameModeManager.GetScriptPath("worldmap\roaming_regions.dat") Security.FileValidation.CheckFileValid(regionsFile, False, "RoamingPokemon.vb") Dim worldList As List(Of String) = System.IO.File.ReadAllLines(regionsFile).ToList() diff --git a/2.5DHero/2.5DHero/Pokemon/Wild/Spawner.vb b/2.5DHero/2.5DHero/Pokemon/Wild/Spawner.vb index 2bb61c1e2..58258d1b6 100644 --- a/2.5DHero/2.5DHero/Pokemon/Wild/Spawner.vb +++ b/2.5DHero/2.5DHero/Pokemon/Wild/Spawner.vb @@ -41,7 +41,7 @@ Public Class Spawner pokeFile = InputPokeFile End If - Dim pokeFilePath As String = OldGameModeManager.GetPokeFilePath(pokeFile) + Dim pokeFilePath As String = GameModeManager.GetPokeFilePath(pokeFile) If System.IO.File.Exists(pokeFilePath) = True Then Security.FileValidation.CheckFileValid(pokeFilePath, False, "Spawner.vb") @@ -170,8 +170,8 @@ Public Class Spawner addLevel = CInt(Math.Floor(level / 5)) End If level += addLevel - If level > CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100")) Then - level = CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100")) + If level > CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100")) Then + level = CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100")) End If Dim p As Pokemon = Pokemon.GetPokemonByID(Pokemons(i)) diff --git a/2.5DHero/2.5DHero/Resources/FontManager.vb b/2.5DHero/2.5DHero/Resources/FontManager.vb index 8e34a7b7c..ed407e37c 100644 --- a/2.5DHero/2.5DHero/Resources/FontManager.vb +++ b/2.5DHero/2.5DHero/Resources/FontManager.vb @@ -114,7 +114,9 @@ Public Class FontManager Return loadedGameJoltFont Else hasLoadedGameJoltFont = True - loadedGameJoltFont = Content.Load(Of SpriteFont)("SharedResources\Fonts\GameJolt") + Dim contentmanager As ContentManager = New ContentManager(GameInstance.Services, "SharedResources\Fonts") + loadedGameJoltFont = contentmanager.Load(Of SpriteFont)("Gamejolt") + 'loadedGameJoltFont = Content.Load(Of SpriteFont)("SharedResources\Fonts\GameJolt") loadedGameJoltFont.DefaultCharacter = " "c Return loadedGameJoltFont End If diff --git a/2.5DHero/2.5DHero/Resources/OldGameModeManager.vb b/2.5DHero/2.5DHero/Resources/OldGameModeManager.vb index 4cd79897c..ba4895665 100644 --- a/2.5DHero/2.5DHero/Resources/OldGameModeManager.vb +++ b/2.5DHero/2.5DHero/Resources/OldGameModeManager.vb @@ -1,6 +1,6 @@ -Public Class OldGameModeManager +Public Class GameModeManager - Private Shared GameModeList As New List(Of OldGameMode) + Private Shared GameModeList As New List(Of GameMode) Private Shared GameModePointer As Integer = 0 Public Shared Initialized As Boolean = False @@ -23,8 +23,8 @@ Public Class OldGameModeManager Initialized = True End Sub - Public Shared Function GetGameMode(ByVal GameModeDirectory As String) As OldGameMode - For Each GameMode As OldGameMode In GameModeList + Public Shared Function GetGameMode(ByVal GameModeDirectory As String) As GameMode + For Each GameMode As GameMode In GameModeList If GameMode.DirectoryName = GameModeDirectory Then Return GameMode End If @@ -48,7 +48,7 @@ Public Class OldGameModeManager ''' The directory resembeling the new GameMode. Public Shared Sub SetGameModePointer(ByVal GameModeDirectoryName As String) For i = 0 To GameModeList.Count - 1 - Dim GameMode As OldGameMode = GameModeList(i) + Dim GameMode As GameMode = GameModeList(i) If GameMode.DirectoryName = GameModeDirectoryName Then GameModePointer = i Logger.Debug("---Set pointer to """ & GameModeDirectoryName & """!---") @@ -71,7 +71,7 @@ Public Class OldGameModeManager ''' Checks if a GameMode exists. ''' Public Shared Function GameModeExists(ByVal GameModePath As String) As Boolean - For Each GameMode As OldGameMode In GameModeList + For Each GameMode As GameMode In GameModeList If GameMode.DirectoryName = GameModePath Then Return True End If @@ -85,7 +85,7 @@ Public Class OldGameModeManager ''' ''' The path of the GameMode directory. Private Shared Sub AddGameMode(ByVal Path As String) - Dim newGameMode As New OldGameMode(Path & "\GameMode.dat") + Dim newGameMode As New GameMode(Path & "\GameMode.dat") If newGameMode.IsValid = True Then GameModeList.Add(newGameMode) End If @@ -110,7 +110,7 @@ Public Class OldGameModeManager End If If doCreateKolbenMode = True Then - Dim kolbenMode As OldGameMode = OldGameMode.GetKolbenGameMode() + Dim kolbenMode As GameMode = GameMode.GetKolbenGameMode() kolbenMode.SaveToFile(GameController.GamePath & "\GameModes\Kolben\GameMode.dat") End If End Sub @@ -120,7 +120,7 @@ Public Class OldGameModeManager ''' ''' Returns the currently active GameMode. ''' - Public Shared ReadOnly Property ActiveGameMode() As OldGameMode + Public Shared ReadOnly Property ActiveGameMode() As GameMode Get If GameModeList.Count - 1 >= GameModePointer Then Return GameModeList(GameModePointer) @@ -132,7 +132,7 @@ Public Class OldGameModeManager ''' ''' Returns the GameRules of the currently active GameMode. ''' - Public Shared Function GetGameRules() As List(Of OldGameMode.GameRule) + Public Shared Function GetGameRules() As List(Of GameMode.GameRule) Return ActiveGameMode.GameRules End Function @@ -142,14 +142,14 @@ Public Class OldGameModeManager ''' The RuleName to search for. Public Shared Function GetGameRuleValue(ByVal RuleName As String, ByVal DefaultValue As String) As String start: - Dim rules As List(Of OldGameMode.GameRule) = GetGameRules() - For Each rule As OldGameMode.GameRule In rules + Dim rules As List(Of GameMode.GameRule) = GetGameRules() + For Each rule As GameMode.GameRule In rules If rule.RuleName.ToLower() = RuleName.ToLower() Then Return rule.RuleValue End If Next - ActiveGameMode.GameRules.Add(New OldGameMode.GameRule(RuleName, DefaultValue)) + ActiveGameMode.GameRules.Add(New GameMode.GameRule(RuleName, DefaultValue)) GoTo start Return "" @@ -161,18 +161,18 @@ start: ''' The levelfile containing the map. Public Shared Function GetMapPath(ByVal levelFile As String) As String If ActiveGameMode.IsDefaultGamemode = True Then - Return GameController.GamePath & OldGameMode.DefaultMapPath & levelFile + Return GameController.GamePath & GameMode.DefaultMapPath & levelFile End If If System.IO.File.Exists(GameController.GamePath & ActiveGameMode.MapPath & levelFile) = True Then Return GameController.GamePath & ActiveGameMode.MapPath & levelFile End If - If GameController.GamePath & OldGameMode.DefaultMapPath & levelFile <> GameController.GamePath & ActiveGameMode.MapPath & levelFile Then + If GameController.GamePath & GameMode.DefaultMapPath & levelFile <> GameController.GamePath & ActiveGameMode.MapPath & levelFile Then Logger.Log(Logger.LogTypes.Message, "Map file: """ & ActiveGameMode.MapPath & levelFile & """ does not exist in the GameMode. The game tries to load the normal file at ""\maps\" & levelFile & """.") End If - Return GameController.GamePath & OldGameMode.DefaultMapPath & levelFile + Return GameController.GamePath & GameMode.DefaultMapPath & levelFile End Function ''' @@ -181,18 +181,18 @@ start: ''' The file that contains the script information. Public Shared Function GetScriptPath(ByVal scriptFile As String) As String If ActiveGameMode.IsDefaultGamemode = True Then - Return GameController.GamePath & OldGameMode.DefaultScriptPath & scriptFile + Return GameController.GamePath & GameMode.DefaultScriptPath & scriptFile End If If System.IO.File.Exists(GameController.GamePath & ActiveGameMode.ScriptPath & scriptFile) = True Then Return GameController.GamePath & ActiveGameMode.ScriptPath & scriptFile End If - If GameController.GamePath & OldGameMode.DefaultScriptPath & scriptFile <> GameController.GamePath & ActiveGameMode.ScriptPath & scriptFile Then + If GameController.GamePath & GameMode.DefaultScriptPath & scriptFile <> GameController.GamePath & ActiveGameMode.ScriptPath & scriptFile Then Logger.Log(Logger.LogTypes.Message, "Script file: """ & ActiveGameMode.ScriptPath & scriptFile & """ does not exist in the GameMode. The game tries to load the normal file at ""\Scripts\" & scriptFile & """.") End If - Return GameController.GamePath & OldGameMode.DefaultScriptPath & scriptFile + Return GameController.GamePath & GameMode.DefaultScriptPath & scriptFile End Function ''' @@ -201,18 +201,18 @@ start: ''' The file that contains the Wild Pokémon Definitions. Public Shared Function GetPokeFilePath(ByVal pokeFile As String) As String If ActiveGameMode.IsDefaultGamemode = True Then - Return GameController.GamePath & OldGameMode.DefaultPokeFilePath & pokeFile + Return GameController.GamePath & GameMode.DefaultPokeFilePath & pokeFile End If If System.IO.File.Exists(GameController.GamePath & ActiveGameMode.PokeFilePath & pokeFile) = True Then Return GameController.GamePath & ActiveGameMode.PokeFilePath & pokeFile End If - If GameController.GamePath & OldGameMode.DefaultPokeFilePath & pokeFile <> GameController.GamePath & ActiveGameMode.PokeFilePath & pokeFile Then + If GameController.GamePath & GameMode.DefaultPokeFilePath & pokeFile <> GameController.GamePath & ActiveGameMode.PokeFilePath & pokeFile Then Logger.Log(Logger.LogTypes.Message, "Poke file: """ & ActiveGameMode.PokeFilePath & pokeFile & """ does not exist in the GameMode. The game tries to load the normal file at ""\maps\poke\" & pokeFile & """.") End If - Return GameController.GamePath & OldGameMode.DefaultPokeFilePath & pokeFile + Return GameController.GamePath & GameMode.DefaultPokeFilePath & pokeFile End Function ''' @@ -221,18 +221,18 @@ start: ''' The file which contains the Pokémon information. Public Shared Function GetPokemonDataFilePath(ByVal PokemonDataFile As String) As String If ActiveGameMode.IsDefaultGamemode = True Then - Return GameController.GamePath & OldGameMode.DefaultPokemonDataPath & PokemonDataFile + Return GameController.GamePath & GameMode.DefaultPokemonDataPath & PokemonDataFile End If If System.IO.File.Exists(GameController.GamePath & ActiveGameMode.PokemonDataPath & PokemonDataFile) = True Then Return GameController.GamePath & ActiveGameMode.PokemonDataPath & PokemonDataFile End If - If GameController.GamePath & OldGameMode.DefaultPokemonDataPath & PokemonDataFile <> GameController.GamePath & ActiveGameMode.PokemonDataPath & PokemonDataFile Then + If GameController.GamePath & GameMode.DefaultPokemonDataPath & PokemonDataFile <> GameController.GamePath & ActiveGameMode.PokemonDataPath & PokemonDataFile Then 'Logger.Log(Logger.LogTypes.Message, "Pokemon data file: """ & ActiveGameMode.PokemonDataPath & PokemonDataFile & """ does not exist in the GameMode. The game tries to load the normal file at ""\Content\Pokemon\Data\" & PokemonDataFile & """.") End If - Return GameController.GamePath & OldGameMode.DefaultPokemonDataPath & PokemonDataFile + Return GameController.GamePath & GameMode.DefaultPokemonDataPath & PokemonDataFile End Function Public Shared Function GetLocalizationsPath(ByVal TokensFile As String) As String @@ -240,7 +240,7 @@ start: Return GameController.GamePath & ActiveGameMode.LocalizationsPath & TokensFile End If - Return GameController.GamePath & OldGameMode.DefaultLocalizationsPath & TokensFile + Return GameController.GamePath & GameMode.DefaultLocalizationsPath & TokensFile End Function ''' @@ -249,14 +249,14 @@ start: ''' The stub file path to the Content file. Public Shared Function GetContentFilePath(ByVal ContentFile As String) As String If ActiveGameMode.IsDefaultGamemode = True Then - Return GameController.GamePath & OldGameMode.DefaultContentPath & ContentFile + Return GameController.GamePath & GameMode.DefaultContentPath & ContentFile End If If System.IO.File.Exists(GameController.GamePath & ActiveGameMode.ContentPath & ContentFile) = True Then Return GameController.GamePath & ActiveGameMode.ContentPath & ContentFile End If - Return GameController.GamePath & OldGameMode.DefaultContentPath & ContentFile + Return GameController.GamePath & GameMode.DefaultContentPath & ContentFile End Function ''' @@ -265,9 +265,9 @@ start: ''' The map file to look for. Public Shared Function MapFileExists(ByVal levelFile As String) As Boolean Dim path As String = GameController.GamePath & ActiveGameMode.MapPath & levelFile - Dim defaultPath As String = GameController.GamePath & OldGameMode.DefaultMapPath & levelFile + Dim defaultPath As String = GameController.GamePath & GameMode.DefaultMapPath & levelFile If ActiveGameMode.IsDefaultGamemode = True Then - path = GameController.GamePath & OldGameMode.DefaultMapPath & levelFile + path = GameController.GamePath & GameMode.DefaultMapPath & levelFile End If Return System.IO.File.Exists(path) Or System.IO.File.Exists(defaultPath) @@ -279,9 +279,9 @@ start: ''' The Content file to look for. Public Shared Function ContentFileExists(ByVal contentFile As String) As Boolean Dim path As String = GameController.GamePath & ActiveGameMode.ContentPath & contentFile - Dim defaultPath As String = GameController.GamePath & OldGameMode.DefaultContentPath & contentFile + Dim defaultPath As String = GameController.GamePath & GameMode.DefaultContentPath & contentFile If ActiveGameMode.IsDefaultGamemode = True Then - path = GameController.GamePath & OldGameMode.DefaultContentPath & contentFile + path = GameController.GamePath & GameMode.DefaultContentPath & contentFile End If Return System.IO.File.Exists(path) Or System.IO.File.Exists(defaultPath) @@ -291,7 +291,7 @@ start: End Class -Public Class OldGameMode +Public Class GameMode Private _loaded As Boolean = False Private _usedFileName As String = "" @@ -542,12 +542,12 @@ Public Class OldGameMode ''' ''' Returns the default Kolben Game Mode. ''' - Public Shared Function GetKolbenGameMode() As OldGameMode + Public Shared Function GetKolbenGameMode() As GameMode Dim SkinColors As List(Of Color) = {New Color(248, 176, 32), New Color(248, 216, 88), New Color(56, 88, 200), New Color(216, 96, 112), New Color(56, 88, 152), New Color(239, 90, 156)}.ToList() Dim SkinFiles As List(Of String) = {"Ethan", "Lyra", "Nate", "Rosa", "Hilbert", "Hilda"}.ToList() Dim SkinNames As List(Of String) = {"Ethan", "Lyra", "Nate", "Rosa", "Hilbert", "Hilda"}.ToList() - Dim gameMode As New OldGameMode("Pokemon 3D", "The normal game mode.", GameController.GAMEVERSION, "Kolben Games", "\maps\", "\Scripts\", "\maps\poke\", "\Content\Pokemon\Data\", "\Content\", "\Content\Localization\", New List(Of GameRule), + Dim gameMode As New GameMode("Pokemon 3D", "The normal game mode.", GameController.GAMEVERSION, "Kolben Games", "\maps\", "\Scripts\", "\maps\poke\", "\Content\Pokemon\Data\", "\Content\", "\Content\Localization\", New List(Of GameRule), "yourroom.dat", New Vector3(1.0F, 0.1F, 3.0F), MathHelper.PiOver2, "Your Room", "", New Color(59, 123, 165), "0", "welcome", SkinColors, SkinFiles, SkinNames) Dim gameRules As New List(Of GameRule) diff --git a/2.5DHero/2.5DHero/Resources/Sound/MusicManager.vb b/2.5DHero/2.5DHero/Resources/Sound/MusicManager.vb index 057c55126..5c958b35e 100644 --- a/2.5DHero/2.5DHero/Resources/Sound/MusicManager.vb +++ b/2.5DHero/2.5DHero/Resources/Sound/MusicManager.vb @@ -135,8 +135,8 @@ End Function Private Shared Function TryAddGameModeMusic(ByVal Name As String) As Boolean - Dim musicfileXNB As String = GameController.GamePath & OldGameModeManager.ActiveGameMode.ContentPath & "Songs\" & Name & ".xnb" - Dim musicfileMP3 As String = GameController.GamePath & OldGameModeManager.ActiveGameMode.ContentPath & "Songs\" & Name & ".mp3" + Dim musicfileXNB As String = GameController.GamePath & GameModeManager.ActiveGameMode.ContentPath & "Songs\" & Name & ".xnb" + Dim musicfileMP3 As String = GameController.GamePath & GameModeManager.ActiveGameMode.ContentPath & "Songs\" & Name & ".mp3" If System.IO.File.Exists(musicfileXNB) = True Or System.IO.File.Exists(musicfileMP3) = True Then Return AddSong(Name, False) End If @@ -315,12 +315,12 @@ If MediaPlayer.IsMuted = True Then MediaPlayer.Pause() - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_music_off"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_music_off"), 12, FontManager.MainFont, Color.White) Else If SongExistFlag = True Then MediaPlayer.Resume() End If - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_music_on"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_music_on"), 12, FontManager.MainFont, Color.White) End If End If End Sub diff --git a/2.5DHero/2.5DHero/Resources/Sound/NewMusicManager.vb b/2.5DHero/2.5DHero/Resources/Sound/NewMusicManager.vb index acf038003..f4d9fc19e 100644 --- a/2.5DHero/2.5DHero/Resources/Sound/NewMusicManager.vb +++ b/2.5DHero/2.5DHero/Resources/Sound/NewMusicManager.vb @@ -45,7 +45,7 @@ Public Class NewMusicManager Dim filePath As String = GameController.GamePath & "\" & cContent.RootDirectory & "\Songs\" & songName & ".mp3" s = CType(ctor.Invoke({songName, filePath, 0}), Song) Else - Logger.Log("296", Logger.LogTypes.ErrorMessage, "MusicManager.vb: Song """ & GameController.GamePath & "\" & cContent.RootDirectory & "\Songs\" & songName & """ was not found!") + Logger.Log("296", Logger.LogTypes.ErrorMessage, "NewMusicManager.vb: Song """ & GameController.GamePath & "\" & cContent.RootDirectory & "\Songs\" & songName & """ was not found!") Return Nothing End If Else @@ -57,7 +57,7 @@ Public Class NewMusicManager Return _songs(tKey.ToLower()) Catch ex As Exception - Logger.Log("269", Logger.LogTypes.Warning, "MusicManager.vb: File at ""Songs\" & songName & """ is not a valid song file!") + Logger.Log("269", Logger.LogTypes.Warning, "NewMusicManager.vb: File at ""Songs\" & songName & """ is not a valid song file!") Return Nothing End Try End Function @@ -365,12 +365,12 @@ Public Class MusicPlayer If MediaPlayer.IsMuted = True Then MediaPlayer.Pause() - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_music_off"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_music_off"), 12, FontManager.MainFont, Color.White) Else If _currentSong <> "" Then MediaPlayer.Resume() End If - Core.GameMessage.ShowMessage(OldLocalization.GetString("game_message_music_on"), 12, FontManager.MainFont, Color.White) + Core.GameMessage.ShowMessage(Localization.GetString("game_message_music_on"), 12, FontManager.MainFont, Color.White) End If End If End Sub diff --git a/2.5DHero/2.5DHero/Resources/Sound/SoundManager.vb b/2.5DHero/2.5DHero/Resources/Sound/SoundManager.vb index b33c6b352..6cc49cf92 100644 --- a/2.5DHero/2.5DHero/Resources/Sound/SoundManager.vb +++ b/2.5DHero/2.5DHero/Resources/Sound/SoundManager.vb @@ -1,211 +1,104 @@ Public Class SoundManager - Shared Muted As Boolean = False +#Region "Resource Management" - Private Shared SoundFiles As New Dictionary(Of String, CSound) - Public Shared Volume As Single = 1.0F + Private Shared _sounds As New Dictionary(Of String, SoundEffect) - Class CSound + ''' + ''' Returns a sound object from the sound's name. + ''' + ''' The sound name. + ''' + Public Shared Function GetSound(ByVal soundName As String) As SoundEffect + Dim cContent As ContentManager = ContentPackManager.GetContentManager("Sounds\" & soundName, ".xnb,.wav") - Private _sound As SoundEffect - Private _origin As String + Dim tKey As String = cContent.RootDirectory & "\Sounds\" & soundName - Public Sub New(ByVal Sound As SoundEffect, ByVal Origin As String) - Me._sound = Sound - Me._origin = Origin - End Sub + If _sounds.ContainsKey(tKey.ToLower()) = False Then + Dim s As SoundEffect = Nothing - Public Property Sound() As SoundEffect - Get - Return Me._sound - End Get - Set(value As SoundEffect) - Me._sound = value - End Set - End Property - - Public Property Origin() As String - Get - Return Me._origin - End Get - Set(value As String) - Me._origin = value - End Set - End Property - - Public ReadOnly Property IsStandardSong() As Boolean - Get - Return (Me.Origin = "Content") - End Get - End Property - - End Class - - Private Shared Function AddSound(ByVal Name As String, ByVal forceReplace As Boolean) As Boolean - Try - Dim cContent As ContentManager = ContentPackManager.GetContentManager("Sounds\" & Name, ".xnb,.wav") - - Dim loadSound As Boolean = False - Dim removeSound As Boolean = False - - If SoundFiles.ContainsKey(Name.ToLower()) = False Then - loadSound = True - ElseIf forceReplace = True And SoundFiles(Name.ToLower()).IsStandardSong = True Then - removeSound = True - loadSound = True - End If - - If loadSound = True Then - Dim sound As SoundEffect = Nothing - - If System.IO.File.Exists(GameController.GamePath & "\" & cContent.RootDirectory & "\Sounds\" & Name & ".xnb") = False Then - If System.IO.File.Exists(GameController.GamePath & "\" & cContent.RootDirectory & "\Sounds\" & Name & ".wav") = True Then - Using stream As System.IO.Stream = System.IO.File.Open(GameController.GamePath & "\" & cContent.RootDirectory & "\Sounds\" & Name & ".wav", IO.FileMode.OpenOrCreate) - sound = SoundEffect.FromStream(stream) - End Using - Else - Logger.Log(Logger.LogTypes.Warning, "SoundManager.vb: Sound at """ & GameController.GamePath & "\" & cContent.RootDirectory & "\Songs\" & Name & """ was not found!") - Return False - End If + If IO.File.Exists(GameController.GamePath & "\" & cContent.RootDirectory & "\Sounds\" & soundName & ".xnb") = False Then + If IO.File.Exists(GameController.GamePath & "\" & cContent.RootDirectory & "\Sounds\" & soundName & ".wav") = True Then + Using stream As IO.Stream = IO.File.Open(GameController.GamePath & "\" & cContent.RootDirectory & "\Sounds\" & soundName & ".wav", IO.FileMode.OpenOrCreate) + s = SoundEffect.FromStream(stream) + End Using Else - sound = cContent.Load(Of SoundEffect)("Sounds\" & Name) - End If - - If Not sound Is Nothing Then - If removeSound = True Then - SoundFiles.Remove(Name.ToLower()) - End If - SoundFiles.Add(Name.ToLower(), New CSound(sound, cContent.RootDirectory)) + Logger.Log("263", Logger.LogTypes.Warning, "SoundManager.vb: Sound at """ & GameController.GamePath & "\" & cContent.RootDirectory & "\Sounds\" & soundName & """ was not found!") + Return Nothing End If + Else + s = cContent.Load(Of SoundEffect)("Sounds\" & soundName) End If - Catch ex As Exception - Logger.Log(Logger.LogTypes.Warning, "SoundManager.vb: File at ""Sounds\" & Name & """ is not a valid sound file. They have to be a PCM wave file, mono or stereo, 8 or 16 bit and have to have a sample rate between 8k and 48k Hz.") - Return False - End Try - Return True + + _sounds.Add(tKey.ToLower(), s) + End If + + Return _sounds(tKey.ToLower()) End Function ''' ''' Clears loaded sounds. ''' Public Shared Sub Clear() - SoundFiles.Clear() + _sounds.Clear() End Sub - Private Shared Function GetSoundEffect(ByVal Name As String) As SoundEffect - Select Case Name.ToLower() - Case "healing" - Name = "pokemon_heal" - End Select +#End Region - If SoundFiles.ContainsKey(Name.ToLower()) = True Then - Return SoundFiles(Name.ToLower()).Sound - Else - If TryAddGameModeSound(Name) = True Then - Return SoundFiles(Name.ToLower()).Sound - Else - Logger.Log(Logger.LogTypes.Warning, "SoundManager.vb: Cannot find sound file """ & Name & """. Return nothing.") - Return Nothing - End If - End If - End Function + Public Shared Property Volume() As Single = 1.0F - Private Shared Function TryAddGameModeSound(ByVal Name As String) As Boolean - Dim soundfile As String = GameController.GamePath & OldGameModeManager.ActiveGameMode.ContentPath & "Sounds\" & Name & ".xnb" - If System.IO.File.Exists(soundfile) = True Then - Return AddSound(Name, False) - End If - Return False - End Function + Private Shared _muted As Boolean = False - Public Shared Sub LoadSounds(ByVal forceReplace As Boolean) - For Each soundfile As String In System.IO.Directory.GetFiles(GameController.GamePath & "\Content\Sounds\") - If soundfile.EndsWith(".xnb") = True Then - soundfile = System.IO.Path.GetFileNameWithoutExtension(soundfile) - AddSound(soundfile, forceReplace) - End If - Next - If Core.GameOptions.ContentPackNames.Count > 0 Then - For Each c As String In Core.GameOptions.ContentPackNames - Dim path As String = GameController.GamePath & "\ContentPacks\" & c & "\Sounds\" - - If System.IO.Directory.Exists(path) = True Then - For Each soundfile As String In System.IO.Directory.GetFiles(path, "*.*", IO.SearchOption.AllDirectories) - If soundfile.EndsWith(".xnb") = True Then - soundfile = System.IO.Path.GetFileNameWithoutExtension(soundfile) - AddSound(soundfile, forceReplace) - End If - Next - End If - Next - End If + Public Shared Sub PlaySound(ByVal sound As String) + InternalPlay(sound, 0F, 0F, _Volume, False) End Sub - Public Shared Sub PlaySound(ByVal Sound As String, ByVal Pitch As Single, ByVal Pan As Single, ByVal Volume As Single, ByVal stopMusic As Boolean) - If Muted = False Then - Dim s As SoundEffect = Nothing + Public Shared Sub PlaySound(ByVal sound As String, ByVal stopMusic As Boolean) + InternalPlay(sound, 0F, 0F, _Volume, stopMusic) + End Sub - s = GetSoundEffect(Sound) + Public Shared Sub PlaySound(ByVal sound As String, ByVal pitch As Single, ByVal pan As Single, ByVal volume As Single, ByVal stopMusic As Boolean) + InternalPlay(sound, pitch, pan, volume, stopMusic) + End Sub - If Not s Is Nothing Then - Logger.Debug("SoundEffect [" & Sound & "]") + Public Shared Sub PlayPokemonCry(ByVal number As Integer) + InternalPlay("Cries\" & number.ToString(), 0F, 0F, _Volume * 0.6F, False) + End Sub + Public Shared Sub PlayPokemonCry(ByVal number As Integer, ByVal pitch As Single, ByVal pan As Single) + InternalPlay("Cries\" & number.ToString(), pitch, pan, _Volume * 0.6F, False) + End Sub + + Public Shared Sub PlayPokemonCry(ByVal number As Integer, ByVal pitch As Single, ByVal pan As Single, ByVal volume As Single) + InternalPlay("Cries\" & number.ToString(), pitch, pan, volume * 0.6F, False) + End Sub + + Private Shared Sub InternalPlay(ByVal sound As String, ByVal pitch As Single, ByVal pan As Single, ByVal volume As Single, ByVal stopMusic As Boolean) + If _muted = False Then + Dim s As SoundEffect = GetSound(sound) + If s IsNot Nothing Then If CanPlaySound() = True Then - s.Play(Volume, Pitch, Pan) + s.Play(volume, pitch, pan) If stopMusic = True Then - MusicManager.PauseForSound(s) + MusicPlayer.GetInstance().PauseForSound(s) End If Else - Logger.Log(Logger.LogTypes.Warning, "SoundManager.vb: Failed to play sound: No audio devices found.") + Logger.Log("267", Logger.LogTypes.Warning, "SoundManager.vb: Failed to play sound: No audio devices found.") End If End If End If End Sub - Public Shared Sub PlayPokemonCry(ByVal Number As Integer) - PlayPokemonCry(Number, 0.0F, 0F, Volume) + ''' + ''' Mutes the sound player. + ''' + ''' The mute state. + Public Shared Sub Mute(ByVal muted As Boolean) + _muted = muted End Sub - Public Shared Sub PlayPokemonCry(ByVal Number As Integer, ByVal Pitch As Single, ByVal Pan As Single) - PlayPokemonCry(Number, Pitch, Pan, Volume) - End Sub - - Public Shared Sub PlayPokemonCry(ByVal Number As Integer, ByVal Pitch As Single, ByVal Pan As Single, ByVal Volume As Single) - If Muted = False Then - Dim soundfile As String = "Cries\" & Number & ".xnb" - If OldGameModeManager.ContentFileExists("Sounds\" & soundfile) = True Then - AddSound("Cries\" & Number, False) - - Dim s As SoundEffect = GetSoundEffect("Cries\" & Number.ToString()) - - If CanPlaySound() = True Then - If Not s Is Nothing Then - s.Play(Volume * 0.6F, Pitch, Pan) - End If - Else - Logger.Log(Logger.LogTypes.Warning, "SoundManager.vb: Failed to play sound: No audio devices found.") - End If - End If - End If - End Sub - - Public Shared Sub Mute(ByVal mute As Boolean) - Muted = mute - End Sub - - Public Shared Sub PlaySound(ByVal Sound As String) - PlaySound(Sound, 0.0F, 0.0F, Volume, False) - End Sub - - Public Shared Sub PlaySound(ByVal Sound As String, ByVal stopMusic As Boolean) - PlaySound(Sound, 0.0F, 0.0F, Volume, stopMusic) - End Sub - - Public Shared Sub ReloadSounds() - SoundFiles.Clear() - LoadSounds(False) - End Sub +#Region "Can play sound" Private Declare Function GetAudioOutputDevices Lib "winmm.dll" Alias "waveOutGetNumDevs" () As Integer @@ -213,4 +106,6 @@ Return GetAudioOutputDevices() > 0 End Function +#End Region + End Class \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Screens/Battle/BlackOutScreen.vb b/2.5DHero/2.5DHero/Screens/Battle/BlackOutScreen.vb index ba3e22c6c..ca2c60b95 100644 --- a/2.5DHero/2.5DHero/Screens/Battle/BlackOutScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Battle/BlackOutScreen.vb @@ -5,7 +5,7 @@ Dim BattleScreen As BattleSystem.BattleScreen Dim index As Integer = 0 Dim textIndex As Integer = 0 - Dim Text() As String = {OldLocalization.GetString("black_out_screen_line1"), vbNewLine, " ", OldLocalization.GetString("black_out_screen_line2"), OldLocalization.GetString("black_out_screen_line3"), OldLocalization.GetString("black_out_screen_line4"), OldLocalization.GetString("black_out_screen_line5")} + Dim Text() As String = {Localization.GetString("black_out_screen_line1"), vbNewLine, " ", Localization.GetString("black_out_screen_line2"), Localization.GetString("black_out_screen_line3"), Localization.GetString("black_out_screen_line4"), Localization.GetString("black_out_screen_line5")} Dim ready As Boolean = False Dim delay As Single = 0.2F @@ -17,7 +17,7 @@ Me.BattleScreen = BattleScreen Me.Identification = Identifications.BlackOutScreen - Me.IsGameOver = CBool(OldGameModeManager.GetGameRuleValue("GameOverAt0Pokemon", "0")) + Me.IsGameOver = CBool(GameModeManager.GetGameRuleValue("GameOverAt0Pokemon", "0")) FromBattle = True End Sub @@ -26,7 +26,7 @@ Me.PreScreen = currentScreen Me.Identification = Identifications.BlackOutScreen - Me.IsGameOver = CBool(OldGameModeManager.GetGameRuleValue("GameOverAt0Pokemon", "0")) + Me.IsGameOver = CBool(GameModeManager.GetGameRuleValue("GameOverAt0Pokemon", "0")) FromBattle = False End Sub @@ -63,7 +63,7 @@ CType(BattleScreen.SavedOverworld.Camera, OverworldCamera).YawLocked = False Screen.Camera.Yaw = MathHelper.Pi Screen.Camera.Position = New Vector3(CSng(positionString(0).Replace(".", GameController.DecSeparator)), CSng(positionString(1).Replace(".", GameController.DecSeparator)), CSng(positionString(2).Replace(".", GameController.DecSeparator))) - CType(BattleScreen.SavedOverworld.OverworldScreen, OverworldScreen).ActionScript.Scripts.Clear() + Construct.Controller.GetInstance().Reset() Core.SetScreen(New TransitionScreen(Me, BattleScreen.SavedOverworld.OverworldScreen, Color.Black, False)) Else @@ -79,7 +79,7 @@ CType(BattleScreen.SavedOverworld.Camera, OverworldCamera).YawLocked = False Screen.Camera.Yaw = MathHelper.Pi Screen.Camera.Position = New Vector3(CSng(positionString(0).Replace(".", GameController.DecSeparator)), CSng(positionString(1).Replace(".", GameController.DecSeparator)), CSng(positionString(2).Replace(".", GameController.DecSeparator))) - CType(BattleScreen.SavedOverworld.OverworldScreen, OverworldScreen).ActionScript.Scripts.Clear() + Construct.Controller.GetInstance().Reset() While Core.CurrentScreen.Identification <> Identifications.OverworldScreen Core.SetScreen(Core.CurrentScreen.PreScreen) diff --git a/2.5DHero/2.5DHero/Screens/Credits/CreditsScreen.vb b/2.5DHero/2.5DHero/Screens/Credits/CreditsScreen.vb index f22dae379..48f9e9621 100644 --- a/2.5DHero/2.5DHero/Screens/Credits/CreditsScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Credits/CreditsScreen.vb @@ -52,10 +52,10 @@ Public Class CreditsScreen Private Sub InitializeCreditsPages(ByVal ending As String) CreditsPages.Add(New CreditsPage("Pokémon3D Staff", Color.White, Color.Black)) CreditsPages.Add(New CreditsPage("Pokémon", Color.White, Color.Black, {"made by", "Nintendo", "Game Freak", "The Pokémon Company"}.ToList())) - If OldGameModeManager.ActiveGameMode.IsDefaultGamemode = True Then + If GameModeManager.ActiveGameMode.IsDefaultGamemode = True Then CreditsPages.Add(New CreditsPage("Pokémon 3D", Color.White, Color.Black, {"Trademark (TM) 2012 - " & COPYRIGHTYEAR, "made by Kolben Games"}.ToList())) Else - CreditsPages.Add(New CreditsPage("Pokémon 3D", Color.White, Color.Black, {"Trademark (TM) 2012 - " & COPYRIGHTYEAR, "made by Kolben Games", "", "GameMode made by", OldGameModeManager.ActiveGameMode.Author}.ToList())) + CreditsPages.Add(New CreditsPage("Pokémon 3D", Color.White, Color.Black, {"Trademark (TM) 2012 - " & COPYRIGHTYEAR, "made by Kolben Games", "", "GameMode made by", GameModeManager.ActiveGameMode.Author}.ToList())) End If CreditsPages.Add(New CreditsPage("Team Kolben", Color.White, Color.Black, {"Nils Drescher", "Andrew Leach", "Marc Boisvert-Dupras", "Grant Garrett", "Jason Houston", "Daniel Billing", "Benjamin Smith", "Hunter Graves"}.ToList())) CreditsPages.Add(New CreditsPage("Director", Color.White, Color.Black, {"Nils Drescher"}.ToList())) diff --git a/2.5DHero/2.5DHero/Screens/GUI/DonationScreen.vb b/2.5DHero/2.5DHero/Screens/GUI/DonationScreen.vb index 8af8c77b4..2462a5b68 100644 --- a/2.5DHero/2.5DHero/Screens/GUI/DonationScreen.vb +++ b/2.5DHero/2.5DHero/Screens/GUI/DonationScreen.vb @@ -65,8 +65,8 @@ Core.SpriteBatch.DrawString(FontManager.MainFont, t, New Vector2(CInt(Core.windowSize.Width / 2) - 180, 100), Color.Black) Canvas.DrawRectangle(New Rectangle(CInt(Core.windowSize.Width / 2) - 285, 0, 570, 57), New Color(56, 56, 56)) - Core.SpriteBatch.DrawString(FontManager.MainFont, OldLocalization.GetString("donation_screen_donators") & ": ", New Vector2(CInt(Core.windowSize.Width / 2) - FontManager.MainFont.MeasureString("Donators:").X / 2, 20), Color.White) - Core.SpriteBatch.DrawString(FontManager.MainFont, OldLocalization.GetString("donation_screen_backadvice"), New Vector2(CInt(Core.windowSize.Width / 2) - FontManager.MainFont.MeasureString("Press E to close").X / 2, 640), Color.White) + Core.SpriteBatch.DrawString(FontManager.MainFont, Localization.GetString("donation_screen_donators") & ": ", New Vector2(CInt(Core.windowSize.Width / 2) - FontManager.MainFont.MeasureString("Donators:").X / 2, 20), Color.White) + Core.SpriteBatch.DrawString(FontManager.MainFont, Localization.GetString("donation_screen_backadvice"), New Vector2(CInt(Core.windowSize.Width / 2) - FontManager.MainFont.MeasureString("Press E to close").X / 2, 640), Color.White) End Sub End Class \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Screens/Inventory/ApricornScreen.vb b/2.5DHero/2.5DHero/Screens/Inventory/ApricornScreen.vb index ca674f307..0af84dd8a 100644 --- a/2.5DHero/2.5DHero/Screens/Inventory/ApricornScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Inventory/ApricornScreen.vb @@ -52,16 +52,16 @@ Me.Buttons.Clear() Me.Labels.Clear() - Me.Labels.Add(New Label(OldLocalization.GetString("apricorn_screen_apricorns"), New Vector2(80, 128), FontManager.MainFont)) + Me.Labels.Add(New Label(Localization.GetString("apricorn_screen_apricorns"), New Vector2(80, 128), FontManager.MainFont)) Select Case Me.State Case States.Wait - Me.Labels.Add(New Label(OldLocalization.GetString("apricorn_screen_producing").Replace("~", vbNewLine), New Vector2(100, 200), FontManager.MainFont)) - Me.Labels.Add(New Label(OldLocalization.GetString("apricorn_screen_backadvice"), New Vector2(100, 260), Color.DarkGray, FontManager.MainFont)) + Me.Labels.Add(New Label(Localization.GetString("apricorn_screen_producing").Replace("~", vbNewLine), New Vector2(100, 200), FontManager.MainFont)) + Me.Labels.Add(New Label(Localization.GetString("apricorn_screen_backadvice"), New Vector2(100, 260), Color.DarkGray, FontManager.MainFont)) Case States.CanGive Dim T As Texture2D = TextureManager.GetTexture("Items\ItemSheet") - Me.Labels.Add(New Label(OldLocalization.GetString("apricorn_screen_choose_apricorns"), New Vector2(100, 200), FontManager.MainFont)) + Me.Labels.Add(New Label(Localization.GetString("apricorn_screen_choose_apricorns"), New Vector2(100, 200), FontManager.MainFont)) Dim RedApricorn As ButtonIcon = New ButtonIcon(AddressOf Me.GiveApricorn, "0 / " & Core.Player.Inventory.GetItemAmount(85), FontManager.MainFont, T, New Rectangle(240, 72, 24, 24), New Vector2(98, 240), New Size(48, 48), "85") Dim BlueApricorn As ButtonIcon = New ButtonIcon(AddressOf Me.GiveApricorn, "0 / " & Core.Player.Inventory.GetItemAmount(89), FontManager.MainFont, T, New Rectangle(336, 72, 24, 24), New Vector2(98, 304), New Size(48, 48), "89") Dim YellowApricorn As ButtonIcon = New ButtonIcon(AddressOf Me.GiveApricorn, "0 / " & Core.Player.Inventory.GetItemAmount(92), FontManager.MainFont, T, New Rectangle(384, 72, 24, 24), New Vector2(98, 368), New Size(48, 48), "92") @@ -70,15 +70,15 @@ Dim BlackApricorn As ButtonIcon = New ButtonIcon(AddressOf Me.GiveApricorn, "0 / " & Core.Player.Inventory.GetItemAmount(99), FontManager.MainFont, T, New Rectangle(48, 96, 24, 24), New Vector2(162, 240), New Size(48, 48), "99") Dim PinkApricorn As ButtonIcon = New ButtonIcon(AddressOf Me.GiveApricorn, "0 / " & Core.Player.Inventory.GetItemAmount(101), FontManager.MainFont, T, New Rectangle(72, 96, 24, 24), New Vector2(162, 304), New Size(48, 48), "101") - Dim GiveButton As ButtonIcon = New ButtonIcon(AddressOf Me.Give, OldLocalization.GetString("apricorn_screen_ok"), FontManager.MainFont, mainTexture, New Rectangle(48, 128, 16, 16), New Vector2(162, 496), New Size(48, 48), "OK") + Dim GiveButton As ButtonIcon = New ButtonIcon(AddressOf Me.Give, Localization.GetString("apricorn_screen_ok"), FontManager.MainFont, mainTexture, New Rectangle(48, 128, 16, 16), New Vector2(162, 496), New Size(48, 48), "OK") GiveButton.Enabled = False - Dim ClearButton As ButtonIcon = New ButtonIcon(AddressOf Me.ClearApricorns, OldLocalization.GetString("apricorn_screen_clear"), FontManager.MainFont, mainTexture, New Rectangle(64, 128, 16, 16), New Vector2(162, 432), New Size(48, 48), "Clear") + Dim ClearButton As ButtonIcon = New ButtonIcon(AddressOf Me.ClearApricorns, Localization.GetString("apricorn_screen_clear"), FontManager.MainFont, mainTexture, New Rectangle(64, 128, 16, 16), New Vector2(162, 432), New Size(48, 48), "Clear") Buttons.AddRange({RedApricorn, BlueApricorn, YellowApricorn, GreenApricorn, WhiteApricorn, BlackApricorn, PinkApricorn, ClearButton, GiveButton}) Case States.CanTake - Dim TakeButton As ButtonIcon = New ButtonIcon(AddressOf Me.Take, OldLocalization.GetString("apricorn_screen_take"), FontManager.MainFont, mainTexture, New Rectangle(48, 128, 16, 16), New Vector2(98, 450), New Size(48, 48)) + Dim TakeButton As ButtonIcon = New ButtonIcon(AddressOf Me.Take, Localization.GetString("apricorn_screen_take"), FontManager.MainFont, mainTexture, New Rectangle(48, 128, 16, 16), New Vector2(98, 450), New Size(48, 48)) Buttons.AddRange({TakeButton}) - Me.Labels.Add(New Label(OldLocalization.GetString("apricorn_screen_ready"), New Vector2(100, 200), FontManager.MainFont)) + Me.Labels.Add(New Label(Localization.GetString("apricorn_screen_ready"), New Vector2(100, 200), FontManager.MainFont)) End Select End If End Sub @@ -316,7 +316,7 @@ Private Sub Take() Me.State = States.CanGive - Dim text As String = Core.Player.Name & OldLocalization.GetString("apricorn_screen_obtain") + Dim text As String = Core.Player.Name & Localization.GetString("apricorn_screen_obtain") If CInt(Apricorns(0)) > 0 Then Core.Player.Inventory.AddItem(159, CInt(Apricorns(0))) diff --git a/2.5DHero/2.5DHero/Screens/Inventory/ChoosePokemonScreen.vb b/2.5DHero/2.5DHero/Screens/Inventory/ChoosePokemonScreen.vb index b898c0905..e564325d1 100644 --- a/2.5DHero/2.5DHero/Screens/Inventory/ChoosePokemonScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Inventory/ChoosePokemonScreen.vb @@ -178,7 +178,7 @@ Dim mPressed As Boolean = False Private Sub ShowMenu() Me.MenuID = 0 - ChooseBox.Show({"Select", OldLocalization.GetString("pokemon_screen_summary"), OldLocalization.GetString("pokemon_screen_back")}, 0, {}) + ChooseBox.Show({"Select", Localization.GetString("pokemon_screen_summary"), Localization.GetString("pokemon_screen_back")}, 0, {}) End Sub Public Overrides Sub Draw() diff --git a/2.5DHero/2.5DHero/Screens/Inventory/InventoryScreen.vb b/2.5DHero/2.5DHero/Screens/Inventory/InventoryScreen.vb index b726559e7..fb2a299b5 100644 --- a/2.5DHero/2.5DHero/Screens/Inventory/InventoryScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Inventory/InventoryScreen.vb @@ -243,9 +243,9 @@ Core.SpriteBatch.Draw(TextureManager.GetTexture("GUI\Menus\BagPack"), New Rectangle(592, 126, 48, 48), New Rectangle(24 * bagIndex, 150, 24, 24), Color.White) - Core.SpriteBatch.DrawString(FontManager.InGameFont, OldLocalization.GetString("inventory_menu_bag"), New Vector2(646, 134), Color.Black) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("inventory_menu_backadvice"), New Vector2(1200 - FontManager.MiniFont.MeasureString(OldLocalization.GetString("inventory_menu_backadvice")).X - 330, 580), Color.DarkGray) - Core.SpriteBatch.DrawString(FontManager.MainFont, OldLocalization.GetString("inventory_menu_items") & ":" & vbNewLine & OldLocalization.GetString("item_category_" & Me.bagIdentifier.ToString()), New Vector2(640, 446), Color.Black) + Core.SpriteBatch.DrawString(FontManager.InGameFont, Localization.GetString("inventory_menu_bag"), New Vector2(646, 134), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("inventory_menu_backadvice"), New Vector2(1200 - FontManager.MiniFont.MeasureString(Localization.GetString("inventory_menu_backadvice")).X - 330, 580), Color.DarkGray) + Core.SpriteBatch.DrawString(FontManager.MainFont, Localization.GetString("inventory_menu_items") & ":" & vbNewLine & Localization.GetString("item_category_" & Me.bagIdentifier.ToString()), New Vector2(640, 446), Color.Black) Canvas.DrawScrollBar(New Vector2(555, 120), cItems.Count, 6, scrollIndex(bagIndex), New Size(4, 390), False, TextureManager.GetTexture(mainTexture, New Rectangle(112, 12, 1, 1)), TextureManager.GetTexture(mainTexture, New Rectangle(113, 12, 1, 1))) diff --git a/2.5DHero/2.5DHero/Screens/Inventory/ItemDetailScreen.vb b/2.5DHero/2.5DHero/Screens/Inventory/ItemDetailScreen.vb index 4474b46d7..62cbf1a2c 100644 --- a/2.5DHero/2.5DHero/Screens/Inventory/ItemDetailScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Inventory/ItemDetailScreen.vb @@ -70,7 +70,7 @@ Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(CInt(Core.windowSize.Width / 2) - 180 + offSetX, 240 + offSetY, 320, 64)) Core.SpriteBatch.DrawString(FontManager.InGameFont, Text, New Vector2(CInt(Core.windowSize.Width / 2) - (FontManager.InGameFont.MeasureString(Text).X / 2) - 10 + offSetX, 276 + offSetY), Color.Black) - If MenuItems(i) = OldLocalization.GetString("item_detail_screen_trash") Then + If MenuItems(i) = Localization.GetString("item_detail_screen_trash") Then Dim trashText As String = trashValue & "/" & Core.Player.Inventory.GetItemAmount(Me.Item.ID) Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(CInt(Core.windowSize.Width / 2) + 180 + offSetX, 240 + offSetY, 128, 64)) @@ -93,7 +93,7 @@ If Controls.Down(True, True, False, True) = True Then If Controls.ShiftDown() = True Then - If MenuItems(index) = OldLocalization.GetString("item_detail_screen_trash") Then + If MenuItems(index) = Localization.GetString("item_detail_screen_trash") Then trashValue += 1 End If Else @@ -102,7 +102,7 @@ End If If Controls.Up(True, True, False, True) = True Then If Controls.ShiftDown() = True Then - If MenuItems(index) = OldLocalization.GetString("item_detail_screen_trash") Then + If MenuItems(index) = Localization.GetString("item_detail_screen_trash") Then trashValue -= 1 End If Else @@ -123,7 +123,7 @@ index = CInt(MathHelper.Clamp(index, 0, MenuItems.Count - 1)) - If MenuItems(index) = OldLocalization.GetString("item_detail_screen_trash") Then + If MenuItems(index) = Localization.GetString("item_detail_screen_trash") Then If Controls.Right(True, False, True, False) = True Then trashValue += 1 End If @@ -136,16 +136,16 @@ If Controls.Accept() = True Then Select Case MenuItems(index) - Case OldLocalization.GetString("item_detail_screen_use") + Case Localization.GetString("item_detail_screen_use") Item.Use() - Case OldLocalization.GetString("item_detail_screen_give") - Dim selScreen = New PartyScreen(Core.CurrentScreen, Me.Item, AddressOf GiveItem, OldLocalization.GetString("item_detail_screen_give_item") & Me.Item.Name, True) With {.Mode = Screens.UI.ISelectionScreen.ScreenMode.Selection, .CanExit = True} + Case Localization.GetString("item_detail_screen_give") + Dim selScreen = New PartyScreen(Core.CurrentScreen, Me.Item, AddressOf GiveItem, Localization.GetString("item_detail_screen_give_item") & Me.Item.Name, True) With {.Mode = Screens.UI.ISelectionScreen.ScreenMode.Selection, .CanExit = True} AddHandler selScreen.SelectedObject, AddressOf GiveItemHandler Core.SetScreen(selScreen) - Case OldLocalization.GetString("item_detail_screen_trash") + Case Localization.GetString("item_detail_screen_trash") Core.Player.Inventory.RemoveItem(Me.Item.ID, trashValue) - Case OldLocalization.GetString("item_detail_screen_back") + Case Localization.GetString("item_detail_screen_back") Core.SetScreen(Me.PreScreen) End Select End If @@ -175,9 +175,9 @@ TextBox.reDelay = 0.0F - Dim t As String = OldLocalization.GetString("pokemon_screen_give_item_1") & Item.Name & OldLocalization.GetString("pokemon_screen_give_item_2") & Pokemon.GetDisplayName() & OldLocalization.GetString("pokemon_screen_give_item_3") + Dim t As String = Localization.GetString("pokemon_screen_give_item_1") & Item.Name & Localization.GetString("pokemon_screen_give_item_2") & Pokemon.GetDisplayName() & Localization.GetString("pokemon_screen_give_item_3") If Not reItem Is Nothing Then - t &= OldLocalization.GetString("pokemon_screen_give_item_4") & reItem.Name & OldLocalization.GetString("pokemon_screen_give_item_5") + t &= Localization.GetString("pokemon_screen_give_item_4") & reItem.Name & Localization.GetString("pokemon_screen_give_item_5") Else t &= "." End If @@ -189,14 +189,14 @@ Private Sub CreateMenuItems() If Item.CanBeUsed = True And canUse = True Then - MenuItems.Add(OldLocalization.GetString("item_detail_screen_use")) + MenuItems.Add(Localization.GetString("item_detail_screen_use")) End If If Item.CanBeHold = True Then - MenuItems.Add(OldLocalization.GetString("item_detail_screen_give")) + MenuItems.Add(Localization.GetString("item_detail_screen_give")) End If If Item.ItemType <> Game.Items.ItemTypes.KeyItems And Item.CanBeTossed = True Then - MenuItems.Add(OldLocalization.GetString("item_detail_screen_trash")) + MenuItems.Add(Localization.GetString("item_detail_screen_trash")) End If - MenuItems.Add(OldLocalization.GetString("item_detail_screen_back")) + MenuItems.Add(Localization.GetString("item_detail_screen_back")) End Sub End Class \ No newline at end of file diff --git a/2.5DHero/2.5DHero/Screens/Inventory/PokegearScreen.vb b/2.5DHero/2.5DHero/Screens/Inventory/PokegearScreen.vb index 579ca9f2f..6e9f64d8b 100644 --- a/2.5DHero/2.5DHero/Screens/Inventory/PokegearScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Inventory/PokegearScreen.vb @@ -4,8 +4,8 @@ Inherits Screen - Public Shared TradeRequestData As Integer = -1 ' This data gets set to the network ID of the user that requests a trade. - Public Shared BattleRequestData As Integer = -1 ' This data gets set to the network ID of the user that requests a battle. + Public Shared TradeRequestData As Integer = -1 'This data gets set to the network ID of the user that requests a trade. + Public Shared BattleRequestData As Integer = -1 'This data gets set to the network ID of the user that requests a battle. Enum MenuScreens As Integer Main = 0 @@ -42,31 +42,31 @@ Me.MouseVisible = True - If Core.Player.IsGamejoltSave = True Then + If Core.Player.IsGameJoltSave = True Then Me.UserBanned = LogInScreen.UserBanned(Core.GameJoltSave.GameJoltID) Dim APICall As New APICall(AddressOf GotPublicKeys) - APICall.GetKeys(False, "saveStorageV" & GameJolt.GamejoltSave.Version & "|*|*") + APICall.GetKeys(False, "saveStorageV" & GameJolt.GamejoltSave.VERSION & "|*|*") End If If Me.UserBanned = False Then FunctionList.Add("PSS") - If API.LoggedIn = True And Core.Player.IsGamejoltSave = True And Core.Player.Pokemons.Count > 0 Then + If API.LoggedIn = True And Core.Player.IsGameJoltSave = True And Core.Player.Pokemons.Count > 0 Then FunctionList.Add("Battle Spot") End If - If (ActionScript.IsRegistered("pokegear_card_GTS") = True Or GameController.IS_DEBUG_ACTIVE = True) = True And API.LoggedIn = True And Core.Player.IsGamejoltSave = True Then + If (Construct.Framework.RegisterHandler.IsRegistered("pokegear_card_GTS") = True Or GameController.IS_DEBUG_ACTIVE = True) = True And API.LoggedIn = True And Core.Player.IsGameJoltSave = True Then FunctionList.Add("GTS") End If - If API.LoggedIn = True And Core.Player.IsGamejoltSave = True And Core.Player.Pokemons.Count > 0 Then + If API.LoggedIn = True And Core.Player.IsGameJoltSave = True And Core.Player.Pokemons.Count > 0 Then FunctionList.Add("Wondertrade") End If End If FunctionList.Add("Phone") - If ActionScript.IsRegistered("pokegear_card_radio") = True Or GameController.IS_DEBUG_ACTIVE = True Then + If Construct.Framework.RegisterHandler.IsRegistered("pokegear_card_radio") = True Or GameController.IS_DEBUG_ACTIVE = True Then FunctionList.Add("Radio") End If FunctionList.Add("Worldmap") - If ActionScript.IsRegistered("pokegear_card_minimap") = True Or GameController.IS_DEBUG_ACTIVE = True Then + If Construct.Framework.RegisterHandler.IsRegistered("pokegear_card_minimap") = True Or GameController.IS_DEBUG_ACTIVE = True Then FunctionList.Add("Minimap") End If @@ -74,7 +74,7 @@ FunctionList.Add("Statistics") End If - If ActionScript.IsRegistered("pokegear_card_frontier") = True Or GameController.IS_DEBUG_ACTIVE = True Then + If Construct.Framework.RegisterHandler.IsRegistered("pokegear_card_frontier") = True Or GameController.IS_DEBUG_ACTIVE = True Then FunctionList.Add("Frontier") End If @@ -83,7 +83,7 @@ Select Case EntryMode Case EntryModes.MainMenu SoundManager.PlaySound("Pokegear\pokegear_on") - Me.menuIndex = Player.Temp.LastPokegearPage + Me.menuIndex = Core.Player.Temp.PokegearPage Case EntryModes.DisplayUser InitializeUserView(Data) Case EntryModes.TradeRequest @@ -94,7 +94,7 @@ End Sub Private Sub InitializeUserView(ByVal Data() As Object) - ' Data: NetworkID, GameJoltID, Name, Sprite + 'Data: NetworkID, GameJoltID, Name, Sprite UserEmblem = Nothing UserSprite = CType(Data(3), Texture2D) @@ -107,7 +107,7 @@ End Sub Private Sub InitializeTradeRequest(ByVal Data() As Object) - ' Data: NetworkID of the requester, GameJoltID + 'Data: NetworkID of the requester, GameJoltID menuIndex = MenuScreens.TradeRequest Me.TradeRequestNetworkID = CInt(Data(0)) @@ -117,7 +117,7 @@ End Sub Private Sub InitializeBattleRequest(ByVal Data() As Object) - ' Data: NetworkID of the requester, GameJoltID + 'Data: NetworkID of the requester, GameJoltID menuIndex = MenuScreens.BattleRequest Me.BattleRequestNetworkID = CInt(Data(0)) @@ -181,7 +181,7 @@ If Me.menuIndex <> MenuScreens.TradeRequest Then If KeyBoardHandler.KeyPressed(KeyBindings.SpecialKey) = True Or ControllerHandler.ButtonPressed(Buttons.Y) = True Then - If Me.menuIndex <> MenuScreens.UserView Then Player.Temp.LastPokegearPage = Me.menuIndex + If Me.menuIndex <> MenuScreens.UserView Then Core.Player.Temp.PokegearPage = Me.menuIndex SoundManager.PlaySound("Pokegear\pokegear_off") Core.SetScreen(Me.PreScreen) End If @@ -427,8 +427,8 @@ Core.SpriteBatch.DrawString(FontManager.MiniFont, "PSS Ranklist", New Vector2(CInt(startPos.X + 50), CInt(startPos.Y + 45)), Color.Black) - If Core.Player.IsGamejoltSave = True Then - ' Draw own information: + If Core.Player.IsGameJoltSave = True Then + 'Draw own information: Core.SpriteBatch.Draw(TextureManager.GetTexture("GUI\Menus\pokegear"), New Rectangle(CInt(startPos.X + 220), CInt(startPos.Y + 40), 16, 32), New Rectangle(96, 112, 8, 16), Color.White) Core.SpriteBatch.Draw(TextureManager.GetTexture("GUI\Menus\pokegear"), New Rectangle(CInt(startPos.X + 220 + 16), CInt(startPos.Y + 40), 304, 32), New Rectangle(102, 112, 4, 16), Color.White) Core.SpriteBatch.Draw(TextureManager.GetTexture("GUI\Menus\pokegear"), New Rectangle(CInt(startPos.X + 220 + 16 + 304), CInt(startPos.Y + 40), 16, 32), New Rectangle(104, 112, 8, 16), Color.White) @@ -555,7 +555,7 @@ Me.RankingList.Clear() InitializedRanklist = True - If Core.Player.IsGamejoltSave = True And UserBanned = False Then + If Core.Player.IsGameJoltSave = True And UserBanned = False Then Dim APICall As New APICall(AddressOf GotDataRanklist) APICall.FetchTable(100, "14908") @@ -621,8 +621,8 @@ Core.SpriteBatch.DrawString(FontManager.MiniFont, "PSS Friendlist", New Vector2(CInt(startPos.X + 50), CInt(startPos.Y + 45)), Color.Black) - If Core.Player.IsGamejoltSave = True Then - ' Draw own information: + If Core.Player.IsGameJoltSave = True Then + 'Draw own information: Core.SpriteBatch.Draw(TextureManager.GetTexture("GUI\Menus\pokegear"), New Rectangle(CInt(startPos.X + 220), CInt(startPos.Y + 40), 16, 32), New Rectangle(96, 112, 8, 16), Color.White) Core.SpriteBatch.Draw(TextureManager.GetTexture("GUI\Menus\pokegear"), New Rectangle(CInt(startPos.X + 220 + 16), CInt(startPos.Y + 40), 304, 32), New Rectangle(102, 112, 4, 16), Color.White) Core.SpriteBatch.Draw(TextureManager.GetTexture("GUI\Menus\pokegear"), New Rectangle(CInt(startPos.X + 220 + 16 + 304), CInt(startPos.Y + 40), 16, 32), New Rectangle(104, 112, 8, 16), Color.White) @@ -1009,7 +1009,7 @@ Dim sameServer As Boolean = False Dim sameConnection As Boolean = False - If Core.Player.IsGamejoltSave = True Then + If Core.Player.IsGameJoltSave = True Then If Not UserEmblem Is Nothing Then sameConnection = True End If @@ -1089,7 +1089,7 @@ Dim sameServer As Boolean = False Dim sameConnection As Boolean = False - If Core.Player.IsGamejoltSave = True Then + If Core.Player.IsGameJoltSave = True Then If Not UserEmblem Is Nothing Then sameConnection = True End If @@ -1252,9 +1252,8 @@ Call_Flag = "calling" - Player.Temp.PokegearPage = Me.menuIndex Core.SetScreen(Me.PreScreen) - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript("phone\" & chosenID, 0) + Construct.Controller.GetInstance().RunFromFile("phone\" & chosenID, {}) End Sub Private Sub InitializePhone() @@ -1262,7 +1261,7 @@ Dim reg() As String = Core.Player.RegisterData.Split(CChar(",")) - Dim contactData() As String = System.IO.File.ReadAllLines(GameController.GamePath & "\Scripts\phone\contacts.dat") + Dim contactData() As String = System.IO.File.ReadAllLines(GameModeManager.GetDataFilePath("contacts.dat")) For Each r As String In reg If r.StartsWith("phone_contact_") = True Then @@ -1292,10 +1291,12 @@ End Structure Public Shared Sub CallID(ByVal ID As String, ByVal checkRegistered As Boolean, ByVal checkLocation As Boolean) - Dim reg() As String = Core.Player.RegisterData.Split(CChar(",")) + Dim reg() As String = Core.Player.RegisterData.Split(CChar(", ")) - Security.FileValidation.CheckFileValid(GameController.GamePath & "\Scripts\phone\contacts.dat", False, "PokegearScreen.vb") - Dim contactData() As String = System.IO.File.ReadAllLines(GameController.GamePath & "\Scripts\phone\contacts.dat") + Dim contactsFile As String = GameModeManager.GetDataFilePath("contacts.dat") + + Security.FileValidation.CheckFileValid(contactsFile, False, "PokegearScreen.vb") + Dim contactData() As String = System.IO.File.ReadAllLines(contactsFile) Dim tempContacs As New List(Of Contact) @@ -1336,7 +1337,7 @@ Call_Flag = "receiving" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript("phone\" & chosenID, 0) + Construct.Controller.GetInstance().RunFromFile("phone\" & chosenID, {}) End If End Sub @@ -1345,10 +1346,12 @@ Exit Sub End If - Dim reg() As String = Core.Player.RegisterData.Split(CChar(",")) + Dim reg() As String = Core.Player.RegisterData.Split(CChar(", ")) - Security.FileValidation.CheckFileValid(GameController.GamePath & "\Scripts\phone\contacts.dat", False, "PokegearScreen.vb") - Dim contactData() As String = System.IO.File.ReadAllLines(GameController.GamePath & "\Scripts\phone\contacts.dat") + Dim contactsFile As String = GameModeManager.GetDataFilePath("contacts.dat") + + Security.FileValidation.CheckFileValid(contactsFile, False, "PokegearScreen.vb") + Dim contactData() As String = System.IO.File.ReadAllLines(contactsFile) Dim tempContacs As New List(Of Contact) @@ -1387,7 +1390,7 @@ Call_Flag = "receiving" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript("phone\" & chosenID, 0) + Construct.Controller.GetInstance().RunFromFile("phone\" & chosenID, {}) End If End Sub @@ -1460,17 +1463,17 @@ Me.InitializedFrontier = True - If ActionScript.IsRegistered("gold ability") = True Then + If Construct.Framework.RegisterHandler.IsRegistered("gold ability") = True Then Me.FrontierList.Add(New FrontierSymbol() With {.Name = "Gold Ability", .Description = "You defeated the Frontier Brain of" & vbNewLine & "Battle Tower a second time and you've" & vbNewLine & "your real strength when it comes to battles.", .Texture = TextureManager.GetTexture("GUI\Badges", New Rectangle(50, 200, 50, 50), "")}) Else - If ActionScript.IsRegistered("silver ability") = True Then - Me.FrontierList.Add(New FrontierSymbol() With {.Name = "Silver Ability", .Description = "You defeated the Frontier Brain of" & vbNewLine & "Battle Tower and showed him how" & vbNewLine & "you and your Pokémon really are.", .Texture = TextureManager.GetTexture("GUI\Badges", New Rectangle(0, 200, 50, 50), "")}) + If Construct.Framework.RegisterHandler.IsRegistered("silver ability") = True Then + Me.FrontierList.Add(New FrontierSymbol() With {.Name = "Silver Ability", .Description = "You defeated the Frontier Brain of" & vbNewLine & "Battle Tower and showed him how" & vbNewLine & "you and your POKéMON really are.", .Texture = TextureManager.GetTexture("GUI\Badges", New Rectangle(0, 200, 50, 50), "")}) End If End If - If ActionScript.IsRegistered("gold knowledge") = True Then - Me.FrontierList.Add(New FrontierSymbol() With {.Name = "Gold Knowledge", .Description = "This Emblem displays how great you can" & vbNewLine & "interact with Pokémon and how well" & vbNewLine & "you can adapt your strategy to a new situation.", .Texture = TextureManager.GetTexture("GUI\Badges", New Rectangle(150, 200, 50, 50), "")}) + If Construct.Framework.RegisterHandler.IsRegistered("gold knowledge") = True Then + Me.FrontierList.Add(New FrontierSymbol() With {.Name = "Gold Knowledge", .Description = "This Emblem displays how great you can" & vbNewLine & "interact with POKéMON and how well" & vbNewLine & "you can adapt your strategy to a new situation.", .Texture = TextureManager.GetTexture("GUI\Badges", New Rectangle(150, 200, 50, 50), "")}) Else - If ActionScript.IsRegistered("silver knowledge") = True Then + If Construct.Framework.RegisterHandler.IsRegistered("silver knowledge") = True Then Me.FrontierList.Add(New FrontierSymbol() With {.Name = "Silver Knowledge", .Description = "Only few trainers achieved this emblem" & vbNewLine & "which shows what strength lies" & vbNewLine & "inside them.", .Texture = TextureManager.GetTexture("GUI\Badges", New Rectangle(100, 200, 50, 50), "")}) End If End If @@ -1582,7 +1585,7 @@ End Sub Public Function CanListen() As Boolean - ' Need to check: Daytime, Region, Expansion Card, Activation + 'Need to check: Daytime, Region, Expansion Card, Activation If Me.DayTimes.Contains(World.GetTime) = False Then Return False @@ -1595,23 +1598,23 @@ For Each exp As String In Me.Expansions If exp.ToLower <> "radio" Then - If ActionScript.IsRegistered("pokegear_card_radio" & exp) = False Then + If Construct.Framework.RegisterHandler.IsRegistered("pokegear_card_radio" & exp) = False Then Return False End If End If Next Select Case Activation - Case "1" ' Needs register in the level channels (only works when minChannel = maxChannel) + Case "1" 'needs register in the level channels (only works when minChannel = maxChannel) If Screen.Level.AllowedRadioChannels.Contains(Me.ChannelMin) = False Then Return False End If Case "0" - ' Channel is always available. + 'Channel is always available. End Select If Me.ActivationRegister <> "0" Then - If ActionScript.IsRegistered(Me.ActivationRegister) = False Then + If Construct.Framework.RegisterHandler.IsRegistered(Me.ActivationRegister) = False Then Return False End If End If @@ -1667,7 +1670,7 @@ If chosenID > -1 Then Dim p As Pokemon = Pokemon.GetPokemonByID(chosenID) - output = "Welcome to the Pokédex Show! Today, we are going to look at the entry of " & p.GetName() & "! Its entry reads:~""" & p.PokedexEntry.Text & """~Wow, that is interesting! Also, " & p.GetName() & " is " & p.PokedexEntry.Height & "m high and weights " & p.PokedexEntry.Weight & "kg.~Isn't that amazing?~" & p.GetName() & " is part of the " & p.PokedexEntry.Species & " species.~That's all the information we have. Tune in next time!" + output = "Welcome to the POKéDEX Show! Today, we are going to look at the entry of " & p.GetName() & "! Its entry reads:~""" & p.PokedexEntry.Text & """~Wow, that is interesting! Also, " & p.GetName() & " is " & p.PokedexEntry.Height & "m high and weights " & p.PokedexEntry.Weight & "kg.~Isn't that amazing?~" & p.GetName() & " is part of the " & p.PokedexEntry.Species & " species.~That's all the information we have. Tune in next time!" End If Case "[randompokemon]" Dim levels() As String = {"route29.dat", "route30.dat", "route31.dat", "route32.dat", "route33.dat", "route36.dat", "route37.dat", "route38.dat", "route39.dat", "routes\route34.dat", "routes\route35.dat", "routes\route42.dat", "routes\route43.dat", "routes\route44.dat", "routes\route45.dat", "routes\route46.dat"} @@ -1683,7 +1686,7 @@ levelName = levelName.Substring(0, 5) & " " & levelName.Remove(0, 5) If Not p Is Nothing Then - output = "Professor Oak's Pokémon Talk! With Mary!~~Professor Oak: " & p.GetName() & " has been spotted on " & levelName & ".~Mary: " & p.GetName() & "! How smart! How inspiring!" + output = "Professor Oak's POKéMON Talk! With Mary!~~Professor Oak: " & p.GetName() & " has been spotted on " & levelName & ".~Mary: " & p.GetName() & "! How smart! How inspiring!" End If Case "[unown]" Dim words() As String = {"doom", "dark", "help", "join us", "stay", "lost", "vanish", "always there", "no eyes"} @@ -1823,7 +1826,7 @@ Else Screen.Level.IsRadioOn = Not Screen.Level.IsRadioOn Screen.Level.SelectedRadioStation = CurrentStation - Player.Temp.RadioStation = Me.RadioCursor + Core.Player.Temp.RadioStation = Me.RadioCursor End If End If End If @@ -1862,7 +1865,7 @@ CurrentSong = "" For Each station As RadioStation In Me.RadioStations If station.IsInterfering(RadioCursor) = True Then - MusicManager.PlayMusic(station.Music, True) + MusicPlayer.GetInstance().Play(station.Music, True) CurrentSong = station.Music CurrentStation = station Exit For @@ -1870,7 +1873,7 @@ Next If CurrentSong = "" Then - MusicManager.PlayMusic("nomusic", False) + MusicPlayer.GetInstance().Play("nomusic", False) CurrentStation = Nothing End If End Sub @@ -1878,7 +1881,7 @@ Private Sub InitializeRadio() Me.InitializedRadio = True - Dim radioData() As String = System.IO.File.ReadAllLines(OldGameModeManager.GetContentFilePath("Data\channels.dat")) + Dim radioData() As String = System.IO.File.ReadAllLines(GameModeManager.GetDataFilePath("channels.dat")) For Each line As String In radioData If line.StartsWith("{") = True And line.EndsWith("}") = True Then line = line.Remove(line.Length - 1, 1).Remove(0, 1) @@ -1888,16 +1891,16 @@ End If Next - Me.RadioCursor = Player.Temp.RadioStation + Me.RadioCursor = Core.Player.Temp.RadioStation CheckForStation() - Logger.Debug("Initialized Radio with " & Me.RadioStations.Count & " stations.") + Logger.Debug("134", "Initialized Radio with " & Me.RadioStations.Count & " stations.") End Sub Public Shared Function StationCanPlay(ByVal station As RadioStation) As Boolean Dim stations As New List(Of RadioStation) - Dim file As String = OldGameModeManager.GetContentFilePath("Data\channels.dat") + Dim file As String = GameModeManager.GetDataFilePath("channels.dat") Security.FileValidation.CheckFileValid(file, False, "PokegearScreen.vb") Dim radioData() As String = System.IO.File.ReadAllLines(file) @@ -2037,7 +2040,7 @@ End If End Sub - Private Sub DownloadTradeRequestSprite() + Private Sub DownloadTradeRequestSprite(ByVal obj As Object) If Me.TradeRequestGameJoltID <> "" Then Dim t As Texture2D = Emblem.GetOnlineSprite(Me.TradeRequestGameJoltID) If Not t Is Nothing Then @@ -2168,7 +2171,7 @@ End If End Sub - Private Sub DownloadBattleRequestSprite() + Private Sub DownloadBattleRequestSprite(ByVal obj As Object) If Me.BattleRequestGameJoltID <> "" Then Dim t As Texture2D = Emblem.GetOnlineSprite(Me.BattleRequestGameJoltID) If Not t Is Nothing Then diff --git a/2.5DHero/2.5DHero/Screens/MainMenu/MainMenuScreen.vb b/2.5DHero/2.5DHero/Screens/MainMenu/MainMenuScreen.vb index 24c8004cf..21f088700 100644 --- a/2.5DHero/2.5DHero/Screens/MainMenu/MainMenuScreen.vb +++ b/2.5DHero/2.5DHero/Screens/MainMenu/MainMenuScreen.vb @@ -47,7 +47,7 @@ CanBePaused = False MouseVisible = True CanChat = False - currentLanguage = OldLocalization.LanguageSuffix + currentLanguage = Localization.LanguageSuffix TextBox.Showing = False PokemonImageView.Showing = False @@ -314,13 +314,13 @@ Dim Text As String = "" Select Case i Case 0 - Text = OldLocalization.GetString("main_menu_continue") + Text = Localization.GetString("main_menu_continue") Case 1 - Text = OldLocalization.GetString("main_menu_load_game") + Text = Localization.GetString("main_menu_load_game") Case 2 - Text = OldLocalization.GetString("main_menu_new_game") + Text = Localization.GetString("main_menu_new_game") Case 3 - Text = OldLocalization.GetString("main_menu_quit_game") + Text = Localization.GetString("main_menu_quit_game") Case 7 Text = "Play online" End Select @@ -633,11 +633,11 @@ End If Next - tempLoadDisplay = OldLocalization.GetString("load_menu_name") & ": " & dispName & vbNewLine & - OldLocalization.GetString("load_menu_gamemode") & ": " & dispGameMode & vbNewLine & - OldLocalization.GetString("load_menu_badges") & ": " & dispBadges & vbNewLine & - OldLocalization.GetString("load_menu_location") & ": " & OldLocalization.GetString("Places_" & dispLocation) & vbNewLine & - OldLocalization.GetString("load_menu_time") & ": " & dispPlayTime + tempLoadDisplay = Localization.GetString("load_menu_name") & ": " & dispName & vbNewLine & + Localization.GetString("load_menu_gamemode") & ": " & dispGameMode & vbNewLine & + Localization.GetString("load_menu_badges") & ": " & dispBadges & vbNewLine & + Localization.GetString("load_menu_location") & ": " & Localization.GetString("Places_" & dispLocation) & vbNewLine & + Localization.GetString("load_menu_time") & ": " & dispPlayTime End If SpriteBatch.DrawInterfaceString(FontManager.MiniFont, tempLoadDisplay, New Vector2(CInt(ScreenSize.Width / 2) - 252, 416), Color.Black) @@ -646,11 +646,11 @@ Dim Text As String = "" Select Case i Case 0 - Text = OldLocalization.GetString("load_menu_load") + Text = Localization.GetString("load_menu_load") Case 1 - Text = OldLocalization.GetString("load_menu_delete") + Text = Localization.GetString("load_menu_delete") Case 2 - Text = OldLocalization.GetString("load_menu_back") + Text = Localization.GetString("load_menu_back") End Select If i = loadMenuIndex(1) Then @@ -934,9 +934,9 @@ Dim Text As String = "" Select Case i Case 0 - Text = OldLocalization.GetString("language_menu_apply") + Text = Localization.GetString("language_menu_apply") Case 1 - Text = OldLocalization.GetString("language_menu_back") + Text = Localization.GetString("language_menu_back") End Select If i = languageMenuIndex(1) Then @@ -978,7 +978,7 @@ Core.GameOptions.Save() menuIndex = 0 Case 1 - OldLocalization.Load(currentLanguage) + Localization.Load(currentLanguage) menuIndex = 0 End Select End If @@ -998,7 +998,7 @@ languageMenuIndex(2) = CInt(MathHelper.Clamp(languageMenuIndex(2), 0, Languages.Count - 4)) If languageMenuIndex(0) <> currentIndex Then - OldLocalization.Load(Languages(languageMenuIndex(0))) + Localization.Load(Languages(languageMenuIndex(0))) End If If Controls.Right(True, True, False) = True Then @@ -1017,7 +1017,7 @@ Core.GameOptions.Save() menuIndex = 0 Case 1 - OldLocalization.Load(currentLanguage) + Localization.Load(currentLanguage) menuIndex = 0 End Select End If @@ -1061,7 +1061,7 @@ Dim textColor As Color = Color.Gray If EnabledPackNames.Contains(Name) = True Then - Name &= " (" & OldLocalization.GetString("pack_menu_enabled") & ")" + Name &= " (" & Localization.GetString("pack_menu_enabled") & ")" textColor = Color.Black End If @@ -1080,9 +1080,9 @@ Dim Text As String = "" Select Case i Case 0 - Text = OldLocalization.GetString("pack_menu_apply") + Text = Localization.GetString("pack_menu_apply") Case 1 - Text = OldLocalization.GetString("pack_menu_back") + Text = Localization.GetString("pack_menu_back") End Select If i = packsMenuIndex(1) Then @@ -1098,17 +1098,17 @@ Dim Text As String = "" Select Case i Case 2 - Text = OldLocalization.GetString("pack_menu_up") + Text = Localization.GetString("pack_menu_up") Case 3 - Text = OldLocalization.GetString("pack_menu_down") + Text = Localization.GetString("pack_menu_down") Case 4 If isSelectedEnabled = True Then - Text = OldLocalization.GetString("pack_menu_toggle_off") + Text = Localization.GetString("pack_menu_toggle_off") Else - Text = OldLocalization.GetString("pack_menu_toggle_on") + Text = Localization.GetString("pack_menu_toggle_on") End If Case 5 - Text = OldLocalization.GetString("pack_menu_information") + Text = Localization.GetString("pack_menu_information") End Select If i = packsMenuIndex(1) Then @@ -1267,7 +1267,7 @@ Next If hasMP3 = True Or hasWMA = True And hasXNB = True Then - PInfoContent = OldLocalization.GetString("pack_menu_songs") + PInfoContent = Localization.GetString("pack_menu_songs") End If End If If IO.Directory.Exists(contentPackPath & "Sounds") = True Then @@ -1291,7 +1291,7 @@ PInfoContent &= ", " End If - PInfoContent &= OldLocalization.GetString("pack_menu_sounds") + PInfoContent &= Localization.GetString("pack_menu_sounds") End If End If @@ -1314,7 +1314,7 @@ PInfoContent &= ", " End If - PInfoContent &= OldLocalization.GetString("pack_menu_textures") + PInfoContent &= Localization.GetString("pack_menu_textures") Exit For End If End If @@ -1355,10 +1355,10 @@ Dim CanvasTexture As Texture2D = TextureManager.GetTexture("GUI\Menus\Menu", New Rectangle(0, 0, 48, 48), "") Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(CInt(ScreenSize.Width / 2) - 256, 160, 480, 64), True) - SpriteBatch.DrawInterfaceString(FontManager.InGameFont, OldLocalization.GetString("pack_menu_name") & ": " & PInfoName, New Vector2(CInt(ScreenSize.Width / 2) - CInt(FontManager.InGameFont.MeasureString(OldLocalization.GetString("pack_menu_name") & ": " & PInfoName).X / 2), 195), Color.Black) + SpriteBatch.DrawInterfaceString(FontManager.InGameFont, Localization.GetString("pack_menu_name") & ": " & PInfoName, New Vector2(CInt(ScreenSize.Width / 2) - CInt(FontManager.InGameFont.MeasureString(Localization.GetString("pack_menu_name") & ": " & PInfoName).X / 2), 195), Color.Black) Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(CInt(ScreenSize.Width / 2) - 256, 288, 480, 224), True) - SpriteBatch.DrawInterfaceString(FontManager.MiniFont, OldLocalization.GetString("pack_menu_version") & ": " & PInfoVersion & vbNewLine & OldLocalization.GetString("pack_menu_by") & ": " & PInfoAuthor & vbNewLine & OldLocalization.GetString("pack_menu_content") & ": " & PInfoContent & vbNewLine & OldLocalization.GetString("pack_menu_description") & ": " & PInfoDescription.Replace("
", vbNewLine), New Vector2(CInt(ScreenSize.Width / 2) - 220, 323), Color.Black) + SpriteBatch.DrawInterfaceString(FontManager.MiniFont, Localization.GetString("pack_menu_version") & ": " & PInfoVersion & vbNewLine & Localization.GetString("pack_menu_by") & ": " & PInfoAuthor & vbNewLine & Localization.GetString("pack_menu_content") & ": " & PInfoContent & vbNewLine & Localization.GetString("pack_menu_description") & ": " & PInfoDescription.Replace("
", vbNewLine), New Vector2(CInt(ScreenSize.Width / 2) - 220, 323), Color.Black) For i = 0 To 1 If i = packInfoIndex Then @@ -1367,17 +1367,17 @@ CanvasTexture = TextureManager.GetTexture("GUI\Menus\Menu", New Rectangle(0, 0, 48, 48), "") End If - Dim Text As String = OldLocalization.GetString("pack_menu_back") + Dim Text As String = Localization.GetString("pack_menu_back") Select Case i Case 0 If isEnabled = True Then - Text = OldLocalization.GetString("pack_menu_toggle_off") + Text = Localization.GetString("pack_menu_toggle_off") Else - Text = OldLocalization.GetString("pack_menu_toggle_on") + Text = Localization.GetString("pack_menu_toggle_on") End If Case 1 - Text = OldLocalization.GetString("pack_menu_back") + Text = Localization.GetString("pack_menu_back") End Select Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(CInt(ScreenSize.Width / 2) - 180 + (200 * i), 550, 128, 64), True) @@ -1495,15 +1495,15 @@ Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(CInt(ScreenSize.Width / 2 - 352), 172, 704, 96), Color.White, True) - SpriteBatch.DrawInterfaceString(FontManager.InGameFont, OldLocalization.GetString("delete_menu_delete_confirm"), New Vector2(CInt(ScreenSize.Width / 2) - CInt(FontManager.InGameFont.MeasureString(OldLocalization.GetString("delete_menu_delete_confirm")).X / 2), 200), Color.Black) + SpriteBatch.DrawInterfaceString(FontManager.InGameFont, Localization.GetString("delete_menu_delete_confirm"), New Vector2(CInt(ScreenSize.Width / 2) - CInt(FontManager.InGameFont.MeasureString(Localization.GetString("delete_menu_delete_confirm")).X / 2), 200), Color.Black) SpriteBatch.DrawInterfaceString(FontManager.InGameFont, """" & SaveNames(loadMenuIndex(0)) & """ ?", New Vector2(CInt(ScreenSize.Width / 2) - CInt(FontManager.InGameFont.MeasureString("""" & SaveNames(loadMenuIndex(0)) & """ ?").X / 2), 240), Color.Black) For i = 0 To 1 - Dim Text As String = OldLocalization.GetString("delete_menu_delete") + Dim Text As String = Localization.GetString("delete_menu_delete") If i = 1 Then - Text = OldLocalization.GetString("delete_menu_cancel") + Text = Localization.GetString("delete_menu_cancel") End If If i = deleteIndex Then @@ -1655,11 +1655,11 @@ Dim dispAuthor As String = GameMode.Author Dim dispContentPath As String = GameMode.ContentPath - tempGameModesDisplay = OldLocalization.GetString("gamemode_menu_name") & ": " & dispName & vbNewLine & - OldLocalization.GetString("gamemode_menu_version") & ": " & dispVersion & vbNewLine & - OldLocalization.GetString("gamemode_menu_author") & ": " & dispAuthor & vbNewLine & - OldLocalization.GetString("gamemode_menu_contentpath") & ": " & dispContentPath & vbNewLine & - OldLocalization.GetString("gamemode_menu_description") & ": " & dispDescription + tempGameModesDisplay = Localization.GetString("gamemode_menu_name") & ": " & dispName & vbNewLine & + Localization.GetString("gamemode_menu_version") & ": " & dispVersion & vbNewLine & + Localization.GetString("gamemode_menu_author") & ": " & dispAuthor & vbNewLine & + Localization.GetString("gamemode_menu_contentpath") & ": " & dispContentPath & vbNewLine & + Localization.GetString("gamemode_menu_description") & ": " & dispDescription End If SpriteBatch.DrawInterfaceString(FontManager.MiniFont, tempGameModesDisplay, New Vector2(CInt(ScreenSize.Width / 2) - 252, 416), Color.Black) @@ -1671,13 +1671,13 @@ CanvasTexture = TextureManager.GetTexture("GUI\Menus\Menu", New Rectangle(0, 0, 48, 48), "") End If - Dim Text As String = OldLocalization.GetString("gamemode_menu_back") + Dim Text As String = Localization.GetString("gamemode_menu_back") Select Case i Case 0 - Text = OldLocalization.GetString("gamemode_menu_create") + Text = Localization.GetString("gamemode_menu_create") Case 1 - Text = OldLocalization.GetString("gamemode_menu_back") + Text = Localization.GetString("gamemode_menu_back") End Select Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(CInt(ScreenSize.Width / 2) - 180 + (200 * i), 550, 128, 64), True) diff --git a/2.5DHero/2.5DHero/Screens/MainMenu/PauseScreen.vb b/2.5DHero/2.5DHero/Screens/MainMenu/PauseScreen.vb index 2394d6b1c..1859d99b5 100644 --- a/2.5DHero/2.5DHero/Screens/MainMenu/PauseScreen.vb +++ b/2.5DHero/2.5DHero/Screens/MainMenu/PauseScreen.vb @@ -34,7 +34,7 @@ s = s.PreScreen End While If s.Identification = Identifications.OverworldScreen Then - If CType(s, OverworldScreen).ActionScript.IsReady = False Then + If Construct.Controller.GetInstance.IsReady = False Then Me.canCreateAutosave = False End If End If @@ -47,9 +47,9 @@ Me.PreScreen.Draw() Canvas.DrawRectangle(New Rectangle(0, 0, Core.ScreenSize.Width, Core.ScreenSize.Height), New Color(0, 0, 0, 150)) - Dim pX As Integer = CInt(Core.ScreenSize.Width / 2) - CInt(FontManager.InGameFont.MeasureString(OldLocalization.GetString("pause_menu_title")).X / 2) - Core.SpriteBatch.DrawInterfaceString(FontManager.InGameFont, OldLocalization.GetString("pause_menu_title"), New Vector2(pX - 7, CInt(Core.ScreenSize.Height / 6.8) + 3), Color.Black) - Core.SpriteBatch.DrawInterfaceString(FontManager.InGameFont, OldLocalization.GetString("pause_menu_title"), New Vector2(pX - 10, CInt(Core.ScreenSize.Height / 6.8)), Color.White) + Dim pX As Integer = CInt(Core.ScreenSize.Width / 2) - CInt(FontManager.InGameFont.MeasureString(Localization.GetString("pause_menu_title")).X / 2) + Core.SpriteBatch.DrawInterfaceString(FontManager.InGameFont, Localization.GetString("pause_menu_title"), New Vector2(pX - 7, CInt(Core.ScreenSize.Height / 6.8) + 3), Color.Black) + Core.SpriteBatch.DrawInterfaceString(FontManager.InGameFont, Localization.GetString("pause_menu_title"), New Vector2(pX - 10, CInt(Core.ScreenSize.Height / 6.8)), Color.White) If Me.menuIndex = 0 Then DrawMenu() @@ -58,7 +58,7 @@ End If If Me.canCreateAutosave = False Then - Dim text As String = OldLocalization.GetString("pause_menu_autosave_fail") + Dim text As String = Localization.GetString("pause_menu_autosave_fail") Core.SpriteBatch.DrawInterfaceString(FontManager.InGameFont, text, New Vector2(9, Core.ScreenSize.Height - FontManager.InGameFont.MeasureString(text).Y), Color.Black) Core.SpriteBatch.DrawInterfaceString(FontManager.InGameFont, text, New Vector2(5, Core.ScreenSize.Height - FontManager.InGameFont.MeasureString(text).Y - 4), Color.White) @@ -92,9 +92,9 @@ Dim Text As String = "" Select Case i Case 0 - Text = OldLocalization.GetString("pause_menu_back_to_game") + Text = Localization.GetString("pause_menu_back_to_game") Case 1 - Text = OldLocalization.GetString("pause_menu_quit_to_menu") + Text = Localization.GetString("pause_menu_quit_to_menu") End Select If i = mainIndex Then @@ -170,19 +170,19 @@ #Region "QuitMenu" Private Sub DrawQuit() - Dim pX As Integer = CInt(Core.ScreenSize.Width / 2) - CInt(FontManager.InGameFont.MeasureString(OldLocalization.GetString("pause_menu_confirmation")).X / 2) - Core.SpriteBatch.DrawInterfaceString(FontManager.InGameFont, OldLocalization.GetString("pause_menu_confirmation"), New Vector2(pX - 7, CInt(Core.ScreenSize.Height / 6.8) + 3 + 110), Color.Black) - Core.SpriteBatch.DrawInterfaceString(FontManager.InGameFont, OldLocalization.GetString("pause_menu_confirmation"), New Vector2(pX - 10, CInt(Core.ScreenSize.Height / 6.8) + 110), Color.White) + Dim pX As Integer = CInt(Core.ScreenSize.Width / 2) - CInt(FontManager.InGameFont.MeasureString(Localization.GetString("pause_menu_confirmation")).X / 2) + Core.SpriteBatch.DrawInterfaceString(FontManager.InGameFont, Localization.GetString("pause_menu_confirmation"), New Vector2(pX - 7, CInt(Core.ScreenSize.Height / 6.8) + 3 + 110), Color.Black) + Core.SpriteBatch.DrawInterfaceString(FontManager.InGameFont, Localization.GetString("pause_menu_confirmation"), New Vector2(pX - 10, CInt(Core.ScreenSize.Height / 6.8) + 110), Color.White) For i = 0 To 1 Dim Text As String = "" Dim x As Integer = 0 Select Case i Case 0 - Text = OldLocalization.GetString("pause_menu_no") + Text = Localization.GetString("pause_menu_no") x = -200 Case 1 - Text = OldLocalization.GetString("pause_menu_yes") + Text = Localization.GetString("pause_menu_yes") x = 200 End Select @@ -260,8 +260,8 @@ If Core.Player.loadedSave = True And Me.canCreateAutosave = True Then Core.Player.SaveGame(True) End If - ScriptStorage.Clear() - Core.SetScreen(New MainMenuScreen()) + Construct.Controller.GetInstance().Reset() + Core.SetScreen(New PressStartScreen()) Core.Player.loadedSave = False End Sub diff --git a/2.5DHero/2.5DHero/Screens/MainMenu/PressStartScreen.vb b/2.5DHero/2.5DHero/Screens/MainMenu/PressStartScreen.vb index 5892dd79a..0d72ef67d 100644 --- a/2.5DHero/2.5DHero/Screens/MainMenu/PressStartScreen.vb +++ b/2.5DHero/2.5DHero/Screens/MainMenu/PressStartScreen.vb @@ -581,7 +581,10 @@ Public Class NewMainMenuScreen _isGameJolt = True _loaded = False - _sprite = Content.Load(Of Texture2D)("SharedResources\Textures\UI\GameJolt\gameJoltIcon") + Dim contentmanager As ContentManager = New ContentManager(GameInstance.Services, "SharedResources\Textures\UI\GameJolt") + _sprite = contentmanager.Load(Of Texture2D)("gameJoltIcon") + + '_sprite = Content.Load(Of Texture2D)("SharedResources\Textures\UI\GameJolt\gameJoltIcon") LoadGameJolt() Else diff --git a/2.5DHero/2.5DHero/Screens/MapScreen.vb b/2.5DHero/2.5DHero/Screens/MapScreen.vb index 8f0be77fd..d1916e9a9 100644 --- a/2.5DHero/2.5DHero/Screens/MapScreen.vb +++ b/2.5DHero/2.5DHero/Screens/MapScreen.vb @@ -90,7 +90,7 @@ Dim TempPoke As New List(Of Roaming) Dim RoamingPokeName As New List(Of String) - Dim path As String = OldGameModeManager.GetScriptPath("worldmap\" & Me.currentRegion & ".dat") + Dim path As String = GameModeManager.GetScriptPath("worldmap\" & Me.currentRegion & ".dat") Security.FileValidation.CheckFileValid(path, False, "MapScreen.vb") Dim InputData() As String = System.IO.File.ReadAllLines(path) @@ -471,14 +471,14 @@ End If If Me.hoverText <> "" And Me.pokehoverText <> "" Then - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("pokemon_name_" & Me.pokehoverText) & " at " & OldLocalization.GetString("Places_" & Me.hoverText), New Vector2(Me.CursorPosition.X + 32, Me.CursorPosition.Y - 29), Color.Black) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("pokemon_name_" & Me.pokehoverText) & " at " & OldLocalization.GetString("Places_" & Me.hoverText), New Vector2(Me.CursorPosition.X + 29, Me.CursorPosition.Y - 32), Color.White) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("pokemon_name_" & Me.pokehoverText) & " at " & Localization.GetString("Places_" & Me.hoverText), New Vector2(Me.CursorPosition.X + 32, Me.CursorPosition.Y - 29), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("pokemon_name_" & Me.pokehoverText) & " at " & Localization.GetString("Places_" & Me.hoverText), New Vector2(Me.CursorPosition.X + 29, Me.CursorPosition.Y - 32), Color.White) ElseIf Me.hoverText <> "" And Me.pokehoverText = "" Then - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("Places_" & Me.hoverText), New Vector2(Me.CursorPosition.X + 32, Me.CursorPosition.Y - 29), Color.Black) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("Places_" & Me.hoverText), New Vector2(Me.CursorPosition.X + 29, Me.CursorPosition.Y - 32), Color.White) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("Places_" & Me.hoverText), New Vector2(Me.CursorPosition.X + 32, Me.CursorPosition.Y - 29), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("Places_" & Me.hoverText), New Vector2(Me.CursorPosition.X + 29, Me.CursorPosition.Y - 32), Color.White) End If - Dim regionString As String = OldLocalization.GetString(Me.currentRegion(0).ToString().ToUpper() & Me.currentRegion.Remove(0, 1)) + Dim regionString As String = Localization.GetString(Me.currentRegion(0).ToString().ToUpper() & Me.currentRegion.Remove(0, 1)) If Me.regions.Count > 1 Then regionString &= " (Press the Shift/Shoulder Buttons to switch between regions.)" End If @@ -497,32 +497,32 @@ r = New Rectangle(116, 0, 12, 12) End If Core.SpriteBatch.Draw(Me.objectsTexture, New Rectangle(Core.windowSize.Width - 170, 100, 24, 24), r, New Color(255, 255, 255, 220)) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("map_screen_cities"), New Vector2(Core.windowSize.Width - 137, 103), Color.Black) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("map_screen_cities"), New Vector2(Core.windowSize.Width - 140, 100), Color.White) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("map_screen_cities"), New Vector2(Core.windowSize.Width - 137, 103), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("map_screen_cities"), New Vector2(Core.windowSize.Width - 140, 100), Color.White) ' Routes: r = New Rectangle(104, 12, 12, 12) If drawObjects(1) = False Then r = New Rectangle(116, 12, 12, 12) End If Core.SpriteBatch.Draw(Me.objectsTexture, New Rectangle(Core.windowSize.Width - 170, 130, 24, 24), r, New Color(255, 255, 255, 220)) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("map_screen_routes"), New Vector2(Core.windowSize.Width - 137, 133), Color.Black) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("map_screen_routes"), New Vector2(Core.windowSize.Width - 140, 130), Color.White) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("map_screen_routes"), New Vector2(Core.windowSize.Width - 137, 133), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("map_screen_routes"), New Vector2(Core.windowSize.Width - 140, 130), Color.White) ' Places: r = New Rectangle(104, 24, 12, 12) If drawObjects(2) = False Then r = New Rectangle(116, 24, 12, 12) End If Core.SpriteBatch.Draw(Me.objectsTexture, New Rectangle(Core.windowSize.Width - 170, 160, 24, 24), r, New Color(255, 255, 255, 220)) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("map_screen_places"), New Vector2(Core.windowSize.Width - 137, 163), Color.Black) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("map_screen_places"), New Vector2(Core.windowSize.Width - 140, 160), Color.White) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("map_screen_places"), New Vector2(Core.windowSize.Width - 137, 163), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("map_screen_places"), New Vector2(Core.windowSize.Width - 140, 160), Color.White) ' Roaming: r = New Rectangle(111, 64, 17, 16) If drawObjects(3) = False Then r = New Rectangle(111, 80, 17, 16) End If Core.SpriteBatch.Draw(Me.objectsTexture, New Rectangle(Core.windowSize.Width - 170, 190, 24, 24), r, New Color(255, 255, 255, 220)) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("map_screen_roaming"), New Vector2(Core.windowSize.Width - 137, 193), Color.Black) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("map_screen_roaming"), New Vector2(Core.windowSize.Width - 140, 190), Color.White) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("map_screen_roaming"), New Vector2(Core.windowSize.Width - 137, 193), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("map_screen_roaming"), New Vector2(Core.windowSize.Width - 140, 190), Color.White) End Sub Private Sub DrawCursor() @@ -553,8 +553,7 @@ End If End If - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & p.GetDisplayName() & " used~Fly.)" & vbNewLine + Dim s As String = "@text.show(" & p.GetDisplayName() & " used~Fly.)" & vbNewLine If CType(Screen.Camera, OverworldCamera).ThirdPerson = False Then s &= "@camera.activateThirdPerson" & vbNewLine @@ -602,11 +601,10 @@ s &= "@camera.deactivatethirdperson" & vbNewLine End If - s &= "@level.wait(1)" & vbNewLine & - ":end" + s &= "@level.wait(1)" PlayerStatistics.Track("Fly used", 1) Core.Player.IsFlying = True - CType(CType(Core.CurrentScreen, TransitionScreen).NewScreen, OverworldScreen).ActionScript.StartScript(s, 2, False) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) End Sub Private Function GetPlayerPosition() As Vector2 diff --git a/2.5DHero/2.5DHero/Screens/NewGameScreen.vb b/2.5DHero/2.5DHero/Screens/NewGameScreen.vb index 8dd09811c..08ea8e3cd 100644 --- a/2.5DHero/2.5DHero/Screens/NewGameScreen.vb +++ b/2.5DHero/2.5DHero/Screens/NewGameScreen.vb @@ -51,7 +51,7 @@ OldLocalization.ReloadGameModeTokens() - If OldGameModeManager.ActiveGameMode.IsDefaultGamemode = False Then + If GameModeManager.ActiveGameMode.IsDefaultGamemode = False Then MusicManager.LoadMusic(True) SoundManager.LoadSounds(True) End If @@ -84,7 +84,7 @@ End Sub Private Sub LoadIntroValues() - Dim GameMode As OldGameMode = OldGameModeManager.ActiveGameMode + Dim GameMode As GameMode = GameModeManager.ActiveGameMode Me.skinNames = GameMode.SkinNames.ToArray() Me.startSkins = GameMode.SkinFiles.ToArray() @@ -474,12 +474,12 @@ "RepelSteps|0" & vbNewLine & _ "LastSavePlace|yourroom.dat" & vbNewLine & _ "LastSavePlacePosition|1,0.1,3" & vbNewLine & _ - "Difficulty|" & OldGameModeManager.GetGameRuleValue("Difficulty", "0") & vbNewLine & _ + "Difficulty|" & GameModeManager.GetGameRuleValue("Difficulty", "0") & vbNewLine & _ "BattleStyle|0" & vbNewLine & _ "saveCreated|" & GameController.GAMEDEVELOPMENTSTAGE & " " & GameController.GAMEVERSION & vbNewLine & _ "LastPokemonPosition|999,999,999" & vbNewLine & _ "DaycareSteps|0" & vbNewLine & _ - "GameMode|" & OldGameModeManager.ActiveGameMode.DirectoryName & vbNewLine & + "GameMode|" & GameModeManager.ActiveGameMode.DirectoryName & vbNewLine & "PokeFiles|" & vbNewLine & "VisitedMaps|yourroom.dat" & vbNewLine & "TempSurfSkin|Hilbert" & vbNewLine & diff --git a/2.5DHero/2.5DHero/Screens/NewMenuScreen.vb b/2.5DHero/2.5DHero/Screens/NewMenuScreen.vb index 3f7f51ddd..c9db1e5c8 100644 --- a/2.5DHero/2.5DHero/Screens/NewMenuScreen.vb +++ b/2.5DHero/2.5DHero/Screens/NewMenuScreen.vb @@ -286,24 +286,14 @@ End Sub Private Sub ShowBalls() - ''' Requires new scripting system - 'Dim s As Screen = Me.PreScreen - 'Construct.Controller.GetInstance().RunFromFile(Screen.Level.BugCatchingContestData.GetSplit(1)) - 'Core.SetScreen(s) - Dim s As Screen = Me.PreScreen - CType(s, OverworldScreen).ActionScript.StartScript(Screen.Level.BugCatchingContestData.GetSplit(1), 0) + Construct.Controller.GetInstance().RunFromFile(Screen.Level.BugCatchingContestData.GetSplit(1)) Core.SetScreen(s) End Sub Private Sub EndContest() - ''' Requires new scripting system - 'Dim s As Screen = Me.PreScreen - 'Construct.Controller.GetInstance().RunFromFile(Screen.Level.BugCatchingContestData.GetSplit(0)) - 'Core.SetScreen(s) - Dim s As Screen = Me.PreScreen - CType(s, OverworldScreen).ActionScript.StartScript(Screen.Level.BugCatchingContestData.GetSplit(0), 0) + Construct.Controller.GetInstance().RunFromFile(Screen.Level.BugCatchingContestData.GetSplit(0)) Core.SetScreen(s) End Sub diff --git a/2.5DHero/2.5DHero/Screens/NewTrainerScreen.vb b/2.5DHero/2.5DHero/Screens/NewTrainerScreen.vb index 6e5baebd4..ec614be2c 100644 --- a/2.5DHero/2.5DHero/Screens/NewTrainerScreen.vb +++ b/2.5DHero/2.5DHero/Screens/NewTrainerScreen.vb @@ -157,7 +157,7 @@ End Sub Private Sub DrawBadges() - _textBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("trainer_screen_collected_badges") & ": " & Core.Player.Badges.Count, New Vector2(50, 360), Color.Black) + _textBatch.DrawString(FontManager.MiniFont, Localization.GetString("trainer_screen_collected_badges") & ": " & Core.Player.Badges.Count, New Vector2(50, 360), Color.Black) Dim selectedRegion As String = Badge.GetRegion(_badgeRegionIndex) Dim badgesCount As Integer = Badge.GetBadgesCount(selectedRegion) @@ -167,11 +167,11 @@ Dim badgeID As Integer = Badge.GetBadgeID(selectedRegion, i) Dim c As Color = Color.White - Dim t As String = Badge.GetBadgeName(badgeID) & OldLocalization.GetString("trainer_screen_badge") + Dim t As String = Badge.GetBadgeName(badgeID) & Localization.GetString("trainer_screen_badge") Dim shake As Single = 0F If Badge.PlayerHasBadge(badgeID) = False Then c = Color.Black - t = OldLocalization.GetString("trainer_screen_empty_badge") + t = Localization.GetString("trainer_screen_empty_badge") End If If i = CInt(_badgeIndex) Then diff --git a/2.5DHero/2.5DHero/Screens/OptionScreen.vb b/2.5DHero/2.5DHero/Screens/OptionScreen.vb index 6390517dd..eab88bb16 100644 --- a/2.5DHero/2.5DHero/Screens/OptionScreen.vb +++ b/2.5DHero/2.5DHero/Screens/OptionScreen.vb @@ -72,7 +72,7 @@ Core.SpriteBatch.DrawString(FontManager.InGameFont, Me.CurrentPath, New Vector2(80, 130), Color.Black) If savedOptions = False Then - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("option_screen_warning"), New Vector2(90 + FontManager.InGameFont.MeasureString(OldLocalization.GetString("option_screen_title")).X, 138), Color.DarkRed) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("option_screen_warning"), New Vector2(90 + FontManager.InGameFont.MeasureString(Localization.GetString("option_screen_title")).X, 138), Color.DarkRed) End If For Each C As Control In ControlList diff --git a/2.5DHero/2.5DHero/Screens/Pokedex/PokedexScreen.vb b/2.5DHero/2.5DHero/Screens/Pokedex/PokedexScreen.vb index 0da6a6dab..df8fd64d3 100644 --- a/2.5DHero/2.5DHero/Screens/Pokedex/PokedexScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Pokedex/PokedexScreen.vb @@ -173,9 +173,9 @@ Public Class PokedexHabitatScreen Me.CanMuteMusic = True Me.CanBePaused = True - For Each file As String In System.IO.Directory.GetFiles(GameController.GamePath & OldGameModeManager.ActiveGameMode.PokeFilePath, "*.*", IO.SearchOption.AllDirectories) + For Each file As String In System.IO.Directory.GetFiles(GameController.GamePath & GameModeManager.ActiveGameMode.PokeFilePath, "*.*", IO.SearchOption.AllDirectories) If file.EndsWith(".poke") = True Then - Dim fileName As String = file.Remove(0, (GameController.GamePath & OldGameModeManager.ActiveGameMode.PokeFilePath & "\").Length - 1) + Dim fileName As String = file.Remove(0, (GameController.GamePath & GameModeManager.ActiveGameMode.PokeFilePath & "\").Length - 1) Dim newHabitat As New PokedexScreen.Habitat(file) Dim exists As Boolean = False For Each h As PokedexScreen.Habitat In Me.HabitatList @@ -1321,9 +1321,9 @@ Public Class PokedexViewScreen End Sub Private Sub FillHabitats() - For Each file As String In System.IO.Directory.GetFiles(GameController.GamePath & OldGameModeManager.ActiveGameMode.PokeFilePath, "*.*", IO.SearchOption.AllDirectories) + For Each file As String In System.IO.Directory.GetFiles(GameController.GamePath & GameModeManager.ActiveGameMode.PokeFilePath, "*.*", IO.SearchOption.AllDirectories) If file.EndsWith(".poke") = True Then - Dim fileName As String = file.Remove(0, (GameController.GamePath & OldGameModeManager.ActiveGameMode.PokeFilePath & "\").Length - 1) + Dim fileName As String = file.Remove(0, (GameController.GamePath & GameModeManager.ActiveGameMode.PokeFilePath & "\").Length - 1) Dim newHabitat As New PokedexScreen.Habitat(file) Dim exists As Boolean = False For Each h As PokedexScreen.Habitat In Me.HabitatList diff --git a/2.5DHero/2.5DHero/Screens/Pokemon/Daycare.vb b/2.5DHero/2.5DHero/Screens/Pokemon/Daycare.vb index f63de7cdc..3720920fb 100644 --- a/2.5DHero/2.5DHero/Screens/Pokemon/Daycare.vb +++ b/2.5DHero/2.5DHero/Screens/Pokemon/Daycare.vb @@ -580,17 +580,17 @@ End Sub Public Shared Sub TriggerCall(ByVal daycareID As Integer) - If ActionScript.IsRegistered("daycare_callid_" & daycareID.ToString()) = True Then - Dim c() As Object = ActionScript.GetRegisterValue("daycare_callid_" & daycareID.ToString()) - If Not c(0) Is Nothing And Not c(1) Is Nothing Then - Dim callID As String = CStr(c(0)) + If Construct.Framework.RegisterHandler.IsRegistered("daycare_callid_" & daycareID.ToString()) = True Then + Dim registerValue = Construct.Framework.RegisterHandler.GetRegisterValue("daycare_callid_" & daycareID.ToString()) + If registerValue <> "" Then + Dim callID As String = registerValue GameJolt.PokegearScreen.CallID(callID, True, False) Else - Logger.Debug("Cannot initialize call for Daycare ID " & daycareID.ToString() & ".") + Logger.Debug("109", "Cannot initialize call for Daycare ID " & daycareID.ToString() & ".") End If Else - Logger.Debug("Cannot initialize call for Daycare ID " & daycareID.ToString() & ".") + Logger.Debug("110", "Cannot initialize call for Daycare ID " & daycareID.ToString() & ".") End If End Sub diff --git a/2.5DHero/2.5DHero/Screens/Pokemon/NameObjectScreen.vb b/2.5DHero/2.5DHero/Screens/Pokemon/NameObjectScreen.vb index 61e952206..04fa3728a 100644 --- a/2.5DHero/2.5DHero/Screens/Pokemon/NameObjectScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Pokemon/NameObjectScreen.vb @@ -169,7 +169,7 @@ Public Class NameObjectScreen End Sub Public Overrides Sub Update() - If CBool(OldGameModeManager.GetGameRuleValue("ForceRename", "0")) = True Then + If CBool(GameModeManager.GetGameRuleValue("ForceRename", "0")) = True Then Me._askedRename = True Me._canChooseNo = False End If diff --git a/2.5DHero/2.5DHero/Screens/Pokemon/PartyScreen.vb b/2.5DHero/2.5DHero/Screens/Pokemon/PartyScreen.vb index 379509a95..e24d17f27 100644 --- a/2.5DHero/2.5DHero/Screens/Pokemon/PartyScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Pokemon/PartyScreen.vb @@ -770,179 +770,107 @@ Public Class PartyScreen #Region "Field Moves" - 'TEMPORARY - Private Sub UseFlash() - ChooseBox.Showing = False - Core.SetScreen(Me.PreScreen) - If Core.CurrentScreen.Identification = Identifications.MenuScreen Then - Core.SetScreen(Core.CurrentScreen.PreScreen) - End If - If Screen.Level.IsDark = True Then - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & PokemonList(_index).GetDisplayName() & " used~Flash!)" & vbNewLine & - "@environment.toggledarkness" & vbNewLine & - "@sound.play(Battle\Effects\effect_thunderbolt)" & vbNewLine & - "@text.show(The area got lit up!)" & vbNewLine & - ":end" - PlayerStatistics.Track("Flash used", 1) - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Private Sub UseFly() + If Level.CanFly Or GameController.IS_DEBUG_ACTIVE Or Core.Player.SandBoxMode Then + SetScreen(OverworldScreen.GetCurrentInstance()) + + If Screen.Level.CurrentRegion.Contains(",") Then + Dim regions As List(Of String) = Screen.Level.CurrentRegion.Split(CChar(",")).ToList() + Core.SetScreen(New TransitionScreen(Core.CurrentScreen, New MapScreen(Core.CurrentScreen, regions, 0, {"Fly", Core.Player.Pokemons(_index)}), Color.White, False)) + Else + Dim startRegion As String = Screen.Level.CurrentRegion + Core.SetScreen(New TransitionScreen(Core.CurrentScreen, New MapScreen(Core.CurrentScreen, startRegion, {"Fly", Core.Player.Pokemons(_index)}), Color.White, False)) + End If Else - Dim s As String = "version=2" & vbNewLine & - "@text.show(" & PokemonList(_index).GetDisplayName() & " used~Flash!)" & vbNewLine & - "@sound.play(Battle\Effects\effect_thunderbolt)" & vbNewLine & - "@text.show(The area is already~lit up!)" & vbNewLine & - ":end" - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + ShowMessage(_translation.MESSAGE_FIELDMOVE_ERROR("Fly")) End If End Sub - Private Sub UseFly() - If Level.CanFly = True Or GameController.IS_DEBUG_ACTIVE = True Or Core.Player.SandBoxMode = True Then - ChooseBox.Showing = False - Core.SetScreen(Me.PreScreen) - If Core.CurrentScreen.Identification = Identifications.MenuScreen Then - Core.SetScreen(Core.CurrentScreen.PreScreen) - End If + Private Sub UseFlash() + SetScreen(OverworldScreen.GetCurrentInstance()) - If Screen.Level.CurrentRegion.Contains(",") = True Then - Dim regions As List(Of String) = Screen.Level.CurrentRegion.Split(CChar(",")).ToList() - Core.SetScreen(New TransitionScreen(Core.CurrentScreen, New MapScreen(Core.CurrentScreen, regions, 0, {"Fly", PokemonList(_index)}), Color.White, False)) - Else - Dim startRegion As String = Screen.Level.CurrentRegion - Core.SetScreen(New TransitionScreen(Core.CurrentScreen, New MapScreen(Core.CurrentScreen, startRegion, {"Fly", PokemonList(_index)}), Color.White, False)) + If Screen.Level.IsDark Then + Dim s As String = "@text.show(" & Core.Player.Pokemons(_index).GetDisplayName() & " used~Flash!)" & vbNewLine & + "@environment.toggledarkness" & vbNewLine & + "@sound.play(Battle\Effects\effect_thunderbolt)" & vbNewLine & + "@text.show(The area got lit up!)" + PlayerStatistics.Track("Flash used", 1) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) + Else + Dim s As String = "@text.show(" & Core.Player.Pokemons(_index).GetDisplayName() & " used~Flash!)" & vbNewLine & + "@sound.play(Battle\Effects\effect_thunderbolt)" & vbNewLine & + "@text.show(The area is already~lit up!)" + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) + End If + End Sub + + Private Sub UseRide() + If Screen.Level.Riding Then + Screen.Level.Riding = False + Screen.Level.OwnPlayer.SetTexture(Core.Player.TempRideSkin, True) + Core.Player.Skin = Core.Player.TempRideSkin + + Core.SetScreen(OverworldScreen.GetCurrentInstance()) + + If Screen.Level.IsRadioOn = False OrElse GameJolt.PokegearScreen.StationCanPlay(Screen.Level.SelectedRadioStation) = False Then + MusicPlayer.GetInstance().Play(Level.MusicLoop) End If Else - TextBox.Show("You cannot Fly~from here!", {}, True, False) + If Screen.Level.Surfing = False And Screen.Camera.IsMoving() = False And Screen.Camera.Turning = False And Level.CanRide() Then + Core.SetScreen(OverworldScreen.GetCurrentInstance()) + + Screen.Level.Riding = True + Core.Player.TempRideSkin = Core.Player.Skin + + Dim skin As String = "[POKEMON|" + If Core.Player.Pokemons(_index).IsShiny Then + skin &= "S]" + Else + skin &= "N]" + End If + skin &= Core.Player.Pokemons(_index).Number & PokemonForms.GetOverworldAddition(Core.Player.Pokemons(_index)) + + Screen.Level.OwnPlayer.SetTexture(skin, False) + + SoundManager.PlayPokemonCry(Core.Player.Pokemons(_index).Number) + + TextBox.Show(Core.Player.Pokemons(_index).GetDisplayName() & " used~Ride!", {}, True, False) + PlayerStatistics.Track("Ride used", 1) + + If Screen.Level.IsRadioOn = False OrElse GameJolt.PokegearScreen.StationCanPlay(Screen.Level.SelectedRadioStation) = False Then + MusicPlayer.GetInstance().Play("system\ride", True) + End If + Else + ShowMessage(_translation.MESSAGE_FIELDMOVE_ERROR("Ride")) + End If End If End Sub Private Sub UseCut() Dim grassEntities = Grass.GetGrassTilesAroundPlayer(2.4F) If grassEntities.Count > 0 Then - ChooseBox.Showing = False - Core.SetScreen(Me.PreScreen) - If Core.CurrentScreen.Identification = Identifications.MenuScreen Then - Core.SetScreen(Core.CurrentScreen.PreScreen) - End If + Core.SetScreen(OverworldScreen.GetCurrentInstance()) PlayerStatistics.Track("Cut used", 1) - TextBox.Show(PokemonList(_index).GetDisplayName() & "~used Cut!", {}, True, False) - PokemonList(_index).PlayCry() + TextBox.Show(Core.Player.Pokemons(_index).GetDisplayName() & "~used Cut!", {}, True, False) + Core.Player.Pokemons(_index).PlayCry() For Each e As Entity In grassEntities Screen.Level.Entities.Remove(e) Next Else - TextBox.Show("There is nothing~to be Cut!", {}, True, False) - End If - End Sub - - Private Sub UseRide() - If Screen.Level.Riding = True Then - Screen.Level.Riding = False - Screen.Level.OwnPlayer.SetTexture(Core.Player.TempRideSkin, True) - Core.Player.Skin = Core.Player.TempRideSkin - - ChooseBox.Showing = False - Core.SetScreen(Me.PreScreen) - If Core.CurrentScreen.Identification = Identifications.MenuScreen Then - Core.SetScreen(Core.CurrentScreen.PreScreen) - End If - - If Screen.Level.IsRadioOn = False OrElse GameJolt.PokegearScreen.StationCanPlay(Screen.Level.SelectedRadioStation) = False Then - MusicManager.PlayMusic(Level.MusicLoop) - End If - Else - If Screen.Level.Surfing = False And Screen.Camera.IsMoving() = False And Screen.Camera.Turning = False And Level.CanRide() = True Then - ChooseBox.Showing = False - Core.SetScreen(Me.PreScreen) - If Core.CurrentScreen.Identification = Identifications.MenuScreen Then - Core.SetScreen(Core.CurrentScreen.PreScreen) - End If - - Screen.Level.Riding = True - Core.Player.TempRideSkin = Core.Player.Skin - - Dim skin As String = "[POKEMON|" - If PokemonList(_index).IsShiny = True Then - skin &= "S]" - Else - skin &= "N]" - End If - skin &= PokemonList(_index).Number & PokemonForms.GetOverworldAddition(PokemonList(_index)) - - Screen.Level.OwnPlayer.SetTexture(skin, False) - - SoundManager.PlayPokemonCry(PokemonList(_index).Number) - - TextBox.Show(PokemonList(_index).GetDisplayName() & " used~Ride!", {}, True, False) - PlayerStatistics.Track("Ride used", 1) - - If Screen.Level.IsRadioOn = False OrElse GameJolt.PokegearScreen.StationCanPlay(Screen.Level.SelectedRadioStation) = False Then - MusicManager.PlayMusic("ride", True) - End If - Else - TextBox.Show("You cannot Ride here!", {}, True, False) - End If - End If - End Sub - - Private Sub UseDig() - If Screen.Level.CanDig = True Or GameController.IS_DEBUG_ACTIVE = True Or Core.Player.SandBoxMode = True Then - ChooseBox.Showing = False - Core.SetScreen(Me.PreScreen) - If Core.CurrentScreen.Identification = Identifications.MenuScreen Then - Core.SetScreen(Core.CurrentScreen.PreScreen) - End If - - Dim setToFirstPerson As Boolean = Not CType(Screen.Camera, OverworldCamera).ThirdPerson - - Dim s As String = "version=2 -@text.show(" & PokemonList(_index).GetDisplayName() & " used Dig!) -@level.wait(20) -@camera.activatethirdperson -@camera.reset -@camera.fix -@player.turnto(0) -@sound.play(destroy) -:while:>" & (Screen.Camera.Position.Y - 1.4).ToString().ReplaceDecSeparator() & " -@player.turn(1) -@player.warp(~,~-0.1,~) -@level.wait(1) -:endwhile -@screen.fadeout -@camera.defix -@player.warp(" & Core.Player.LastRestPlace & "," & Core.Player.LastRestPlacePosition & ",0)" & vbNewLine & -"@player.turnto(2)" - - If setToFirstPerson = True Then - s &= vbNewLine & "@camera.deactivatethirdperson" - End If - s &= vbNewLine & -"@level.update -@screen.fadein -:end" - - PlayerStatistics.Track("Dig used", 1) - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) - Else - TextBox.Show("Cannot use Dig here.", {}, True, False) + ShowMessage(_translation.MESSAGE_FIELDMOVE_ERROR("Cut")) End If End Sub Private Sub UseTeleport() - If Screen.Level.CanTeleport = True Or GameController.IS_DEBUG_ACTIVE = True Or Core.Player.SandBoxMode = True Then - ChooseBox.Showing = False - Core.SetScreen(Me.PreScreen) - If Core.CurrentScreen.Identification = Identifications.MenuScreen Then - Core.SetScreen(Core.CurrentScreen.PreScreen) - End If + If Screen.Level.CanTeleport Or GameController.IS_DEBUG_ACTIVE Or Core.Player.SandBoxMode Then + Core.SetScreen(OverworldScreen.GetCurrentInstance()) Dim setToFirstPerson As Boolean = Not CType(Screen.Camera, OverworldCamera).ThirdPerson Dim yFinish As String = (Screen.Camera.Position.Y + 2.9F).ToString().ReplaceDecSeparator() - Dim s As String = "version=2 -@text.show(" & PokemonList(_index).GetDisplayName() & "~used Teleport!) + Dim s As String = "@text.show(" & Core.Player.Pokemons(_index).GetDisplayName() & "~used Teleport!) @level.wait(20) @camera.activatethirdperson @camera.reset @@ -959,23 +887,60 @@ Public Class PartyScreen @player.warp(" & Core.Player.LastRestPlace & "," & Core.Player.LastRestPlacePosition & ",0) @player.turnto(2)" - If setToFirstPerson = True Then + If setToFirstPerson Then s &= vbNewLine & "@camera.deactivatethirdperson" End If s &= vbNewLine & "@level.update -@screen.fadein -:end" +@screen.fadein" PlayerStatistics.Track("Teleport used", 1) - CType(Core.CurrentScreen, OverworldScreen).ActionScript.StartScript(s, 2) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) Else - TextBox.Show("Cannot use Teleport here.", {}, True, False) + ShowMessage(_translation.MESSAGE_FIELDMOVE_ERROR("Teleport")) + End If + End Sub + + Private Sub UseDig() + If Screen.Level.CanDig Or GameController.IS_DEBUG_ACTIVE Or Core.Player.SandBoxMode Then + Core.SetScreen(OverworldScreen.GetCurrentInstance()) + + Dim setToFirstPerson As Boolean = Not CType(Screen.Camera, OverworldCamera).ThirdPerson + + Dim s As String = "@text.show(" & Core.Player.Pokemons(_index).GetDisplayName() & " used Dig!) +@level.wait(20) +@camera.activatethirdperson +@camera.reset +@camera.fix +@player.turnto(0) +@sound.play(destroy) +:while:>" & (Screen.Camera.Position.Y - 1.4).ToString().ReplaceDecSeparator() & " +@player.turn(1) +@player.warp(~,~-0.1,~) +@level.wait(1) +:endwhile +@screen.fadeout +@camera.defix +@player.warp(" & Core.Player.LastRestPlace & "," & Core.Player.LastRestPlacePosition & ",0)" & vbNewLine & +"@player.turnto(2)" + + If setToFirstPerson Then + s &= vbNewLine & "@camera.deactivatethirdperson" + End If + s &= vbNewLine & +"@level.update +@screen.fadein" + + PlayerStatistics.Track("Dig used", 1) + Construct.Controller.GetInstance().RunFromString(s, {Construct.Controller.ScriptRunOptions.CheckDelay}) + Else + ShowMessage(_translation.MESSAGE_FIELDMOVE_ERROR("Dig")) End If End Sub #End Region + Private _mode As ISelectionScreen.ScreenMode = ISelectionScreen.ScreenMode.Default Private _canExit As Boolean = True diff --git a/2.5DHero/2.5DHero/Screens/Pokemon/PokemonStatusScreen.vb b/2.5DHero/2.5DHero/Screens/Pokemon/PokemonStatusScreen.vb index 1e35ed457..0d8c49cba 100644 --- a/2.5DHero/2.5DHero/Screens/Pokemon/PokemonStatusScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Pokemon/PokemonStatusScreen.vb @@ -169,26 +169,26 @@ If Me.Pokemon.EggSteps = 0 Then DrawPage1() End If - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_stats_page"), New Vector2(676, 138), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_stats_page"), New Vector2(676, 138), Color.Black) TexturePositionPage = New Vector2(32, 96) Case 1 DrawPage2() - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_details_page"), New Vector2(676, 138), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_details_page"), New Vector2(676, 138), Color.Black) TexturePositionPage = New Vector2(32, 112) Case 2 If Me.Pokemon.EggSteps = 0 Then DrawPage3() End If - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_moves_page"), New Vector2(676, 138), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_moves_page"), New Vector2(676, 138), Color.Black) TexturePositionPage = New Vector2(80, 96) End Select Core.SpriteBatch.Draw(MainTexture, New Rectangle(574, 132, 96, 32), New Rectangle(CInt(TexturePositionPage.X), CInt(TexturePositionPage.Y), 48, 16), Color.White) If Me.AttackToggle = False Then - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_backadvice"), New Vector2(1200 - FontManager.MiniFont.MeasureString(OldLocalization.GetString("poke_status_screen_backadvice")).X - 360, 580), Color.DarkGray) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_backadvice"), New Vector2(1200 - FontManager.MiniFont.MeasureString(Localization.GetString("poke_status_screen_backadvice")).X - 360, 580), Color.DarkGray) Else - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_closeadvice"), New Vector2(1200 - FontManager.MiniFont.MeasureString(OldLocalization.GetString("poke_status_screen_closeadvice")).X - 360, 580), Color.DarkGray) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_closeadvice"), New Vector2(1200 - FontManager.MiniFont.MeasureString(Localization.GetString("poke_status_screen_closeadvice")).X - 360, 580), Color.DarkGray) End If End Sub @@ -265,7 +265,7 @@ Core.SpriteBatch.Draw(MainTexture, New Rectangle(180, 376, 12, 20), r, Color.White) End If - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("Level") & ": " & Me.Pokemon.Level & vbNewLine & OldLocalization.GetString("poke_status_screen_number") & Pokemon.Number & vbNewLine & vbNewLine & OldLocalization.GetString("poke_status_screen_nature") & ":" & vbNewLine & Me.Pokemon.Nature.ToString(), New Vector2(76, 410), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("Level") & ": " & Me.Pokemon.Level & vbNewLine & Localization.GetString("poke_status_screen_number") & Pokemon.Number & vbNewLine & vbNewLine & Localization.GetString("poke_status_screen_nature") & ":" & vbNewLine & Me.Pokemon.Nature.ToString(), New Vector2(76, 410), Color.Black) Dim StatusTexture As Texture2D = BattleStats.GetStatImage(Pokemon.Status) If Not StatusTexture Is Nothing Then @@ -310,25 +310,25 @@ Dim redText As String = vbNewLine & vbNewLine Dim blueText As String = vbNewLine & vbNewLine - Dim blackText As String = OldLocalization.GetString("HP") & vbNewLine & vbNewLine + Dim blackText As String = Localization.GetString("HP") & vbNewLine & vbNewLine For i = 0 To 4 Dim statText As String = "" Dim stat As String = "" Select Case i Case 0 - statText = OldLocalization.GetString("Attack") + statText = Localization.GetString("Attack") stat = "Attack" Case 1 - statText = OldLocalization.GetString("Defense") + statText = Localization.GetString("Defense") stat = "Defense" Case 2 - statText = OldLocalization.GetString("Special_Attack") + statText = Localization.GetString("Special_Attack") stat = "SpAttack" Case 3 - statText = OldLocalization.GetString("Special_Defense") + statText = Localization.GetString("Special_Defense") stat = "SpDefense" Case 4 - statText = OldLocalization.GetString("Speed") + statText = Localization.GetString("Speed") stat = "Speed" End Select @@ -354,7 +354,7 @@ .DrawString(FontManager.MiniFont, Pokemon.HP & " / " & Pokemon.MaxHP & vbNewLine & vbNewLine & Pokemon.Attack & vbNewLine & vbNewLine & Pokemon.Defense & vbNewLine & vbNewLine & Pokemon.SpAttack & vbNewLine & vbNewLine & Pokemon.SpDefense & vbNewLine & vbNewLine & Pokemon.Speed, New Vector2(CInt(p.X + 280), CInt(p.Y + 68)), Color.Black) ' Experience Points: - If Pokemon.Level < CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100")) Then + If Pokemon.Level < CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100")) Then Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(220, 484, 320, 96)) Dim NextLvExp As Integer = Pokemon.NeedExperience(Me.Pokemon.Level + 1) - Pokemon.NeedExperience(Me.Pokemon.Level) @@ -366,14 +366,14 @@ Dim NeedExp As Integer = NextLvExp - currentExp - If Pokemon.Level = CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100")) Then + If Pokemon.Level = CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100")) Then NextLvExp = 0 Else barPercentage = CInt((currentExp / NextLvExp) * 100) barX = CInt((currentExp / NextLvExp) * 150).Clamp(0, 150) End If - .DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_all_exp") & ": " & Pokemon.Experience & vbNewLine & OldLocalization.GetString("poke_status_screen_nxt_lv") & ": " & NextLvExp - currentExp, New Vector2(240, 504), Color.Black) + .DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_all_exp") & ": " & Pokemon.Experience & vbNewLine & Localization.GetString("poke_status_screen_nxt_lv") & ": " & NextLvExp - currentExp, New Vector2(240, 504), Color.Black) Dim i As Integer = 0 For x = 0 To barX - 1 @@ -407,7 +407,7 @@ ' Capture Information: Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(220, 196, 320, 96)) With Core.SpriteBatch - .DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_OT") & ": " & Pokemon.OT & " /" & Pokemon.CatchTrainerName & vbNewLine & vbNewLine & Pokemon.CatchMethod & vbNewLine & Pokemon.CatchLocation, New Vector2(238, 214), Color.DarkBlue) + .DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_OT") & ": " & Pokemon.OT & " /" & Pokemon.CatchTrainerName & vbNewLine & vbNewLine & Pokemon.CatchMethod & vbNewLine & Pokemon.CatchLocation, New Vector2(238, 214), Color.DarkBlue) End With ' Item: @@ -415,10 +415,10 @@ If Me.Pokemon.EggSteps = 0 Then If Not Pokemon.Item Is Nothing Then Core.SpriteBatch.Draw(Pokemon.Item.Texture, New Rectangle(232, 338, 24, 24), Color.White) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_Item") & ": " & Pokemon.Item.Name, New Vector2(262, 342), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_Item") & ": " & Pokemon.Item.Name, New Vector2(262, 342), Color.Black) Core.SpriteBatch.DrawString(FontManager.MiniFont, Pokemon.Item.Description.CropStringToWidth(FontManager.MiniFont, 300), New Vector2(234, 360), Color.Black) Else - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_Item") & ": " & OldLocalization.GetString("poke_status_screen_no_item"), New Vector2(262, 342), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_Item") & ": " & Localization.GetString("poke_status_screen_no_item"), New Vector2(262, 342), Color.Black) End If End If @@ -426,7 +426,7 @@ Canvas.DrawImageBorder(CanvasTexture, 2, New Rectangle(220, 484, 320, 96)) If Me.Pokemon.EggSteps = 0 Then With Core.SpriteBatch - .DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_ability") & ": " & Me.Pokemon.Ability.Name & vbNewLine & vbNewLine & Me.Pokemon.Ability.Description.CropStringToWidth(FontManager.MiniFont, 300), New Vector2(234, 500), Color.Black) + .DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_ability") & ": " & Me.Pokemon.Ability.Name & vbNewLine & vbNewLine & Me.Pokemon.Ability.Description.CropStringToWidth(FontManager.MiniFont, 300), New Vector2(234, 500), Color.Black) End With Else With Core.SpriteBatch @@ -485,7 +485,7 @@ acc = "-" End If - .DrawString(FontManager.MiniFont, OldLocalization.GetString("poke_status_screen_power") & ": " & power & vbNewLine & OldLocalization.GetString("poke_status_screen_accuracy") & ": " & acc & vbNewLine & vbNewLine & t, New Vector2(CInt(572 - 300 + AttackPos), 218), Color.Black) + .DrawString(FontManager.MiniFont, Localization.GetString("poke_status_screen_power") & ": " & power & vbNewLine & Localization.GetString("poke_status_screen_accuracy") & ": " & acc & vbNewLine & vbNewLine & t, New Vector2(CInt(572 - 300 + AttackPos), 218), Color.Black) .Draw(A.GetDamageCategoryImage(), New Rectangle(CInt(572 - 150 + AttackPos), 222, 56, 28), Color.White) End With @@ -523,7 +523,7 @@ c = Color.IndianRed End If - .DrawString(FontManager.MiniFont, OldLocalization.GetString("PP") & " " & A.CurrentPP & " / " & A.MaxPP, New Vector2(400, CInt(p.Y + 58)), c) + .DrawString(FontManager.MiniFont, Localization.GetString("PP") & " " & A.CurrentPP & " / " & A.MaxPP, New Vector2(400, CInt(p.Y + 58)), c) .Draw(TextureManager.GetTexture("GUI\Menus\Types", A.Type.GetElementImage(), ""), New Rectangle(270, CInt(p.Y + 54), 48, 16), Color.White) End With diff --git a/2.5DHero/2.5DHero/Screens/Pokemon/SummaryScreen.vb b/2.5DHero/2.5DHero/Screens/Pokemon/SummaryScreen.vb index 51bbe40f5..b3e29338c 100644 --- a/2.5DHero/2.5DHero/Screens/Pokemon/SummaryScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Pokemon/SummaryScreen.vb @@ -381,7 +381,7 @@ SpriteBatch.DrawString(FontManager.ChatFont, "Exp. Points", New Vector2(826, 462), New Color(255, 255, 255, CInt(220 * _interfaceFade * _pageFade))) SpriteBatch.DrawString(FontManager.ChatFont, .Experience.ToString(), New Vector2(980, 462), New Color(255, 255, 255, CInt(220 * _fadeIn * _pageFade))) - If .Level < CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100")) Then + If .Level < CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100")) Then Canvas.DrawRectangle(New Rectangle(816, 490, 300, 64), New Color(0, 0, 0, CInt(70 * _interfaceFade * _pageFade))) SpriteBatch.DrawString(FontManager.ChatFont, "To Next Lv.", New Vector2(826, 494), New Color(255, 255, 255, CInt(220 * _interfaceFade * _pageFade))) diff --git a/2.5DHero/2.5DHero/Screens/Pokemon/TeachMovesScreen.vb b/2.5DHero/2.5DHero/Screens/Pokemon/TeachMovesScreen.vb index 4fa48435e..c064e2762 100644 --- a/2.5DHero/2.5DHero/Screens/Pokemon/TeachMovesScreen.vb +++ b/2.5DHero/2.5DHero/Screens/Pokemon/TeachMovesScreen.vb @@ -168,7 +168,7 @@ c = Color.IndianRed End If - .DrawString(FontManager.MiniFont, OldLocalization.GetString("PP") & " " & A.CurrentPP & " / " & A.MaxPP, New Vector2(p.X + 130, CInt(p.Y + 58)), c) + .DrawString(FontManager.MiniFont, Localization.GetString("PP") & " " & A.CurrentPP & " / " & A.MaxPP, New Vector2(p.X + 130, CInt(p.Y + 58)), c) .Draw(TextureManager.GetTexture("GUI\Menus\Types", A.Type.GetElementImage(), ""), New Rectangle(CInt(p.X), CInt(p.Y + 54), 48, 16), Color.White) End With diff --git a/2.5DHero/2.5DHero/Screens/SaveScreen.vb b/2.5DHero/2.5DHero/Screens/SaveScreen.vb index 313da62ed..b4e588036 100644 --- a/2.5DHero/2.5DHero/Screens/SaveScreen.vb +++ b/2.5DHero/2.5DHero/Screens/SaveScreen.vb @@ -15,7 +15,7 @@ Me.PreScreen = currentScreen Me.mainTexture = TextureManager.GetTexture("GUI\Menus\Menu") - ChooseBox.Show({OldLocalization.GetString("save_screen_yes"), OldLocalization.GetString("save_screen_no")}, 0, {}) + ChooseBox.Show({Localization.GetString("save_screen_yes"), Localization.GetString("save_screen_no")}, 0, {}) SaveGameHelpers.ResetSaveCounter() End Sub @@ -47,7 +47,7 @@ End If Else If ready = True Then - .DrawString(FontManager.InGameFont, OldLocalization.GetString("save_screen_success"), New Vector2(188, 186), Color.DarkBlue) + .DrawString(FontManager.InGameFont, Localization.GetString("save_screen_success"), New Vector2(188, 186), Color.DarkBlue) Else If SaveGameHelpers.GameJoltSaveDone() = False And savingStarted = True Then If SaveGameHelpers.StartedDownloadCheck = True Then @@ -56,7 +56,7 @@ .DrawString(FontManager.InGameFont, "Saving, please wait" & LoadingDots.Dots, New Vector2(188, 186), Color.Black) End If Else - .DrawString(FontManager.InGameFont, OldLocalization.GetString("save_screen_title"), New Vector2(188, 186), Color.Black) + .DrawString(FontManager.InGameFont, Localization.GetString("save_screen_title"), New Vector2(188, 186), Color.Black) End If End If @@ -68,7 +68,7 @@ End If Next - .DrawString(FontManager.MiniFont, OldLocalization.GetString("save_screen_name") & ": " & Core.Player.Name & vbNewLine & vbNewLine & OldLocalization.GetString("save_screen_badges") & ": " & Core.Player.Badges.Count.ToString() & vbNewLine & vbNewLine & OldLocalization.GetString("save_screen_money") & ": " & Core.Player.Money & vbNewLine & vbNewLine & OldLocalization.GetString("save_screen_time") & ": " & TimeHelpers.GetDisplayTime(TimeHelpers.GetCurrentPlayTime(), True), New Vector2(192, 350), Color.DarkBlue) + .DrawString(FontManager.MiniFont, Localization.GetString("save_screen_name") & ": " & Core.Player.Name & vbNewLine & vbNewLine & Localization.GetString("save_screen_badges") & ": " & Core.Player.Badges.Count.ToString() & vbNewLine & vbNewLine & Localization.GetString("save_screen_money") & ": " & Core.Player.Money & vbNewLine & vbNewLine & Localization.GetString("save_screen_time") & ": " & TimeHelpers.GetDisplayTime(TimeHelpers.GetCurrentPlayTime(), True), New Vector2(192, 350), Color.DarkBlue) End If End With diff --git a/2.5DHero/2.5DHero/Screens/TradeScreen.vb b/2.5DHero/2.5DHero/Screens/TradeScreen.vb index 77c51bfc5..8238e6fe2 100644 --- a/2.5DHero/2.5DHero/Screens/TradeScreen.vb +++ b/2.5DHero/2.5DHero/Screens/TradeScreen.vb @@ -1,3 +1,5 @@ +Imports net.Pokemon3D.Game.Construct.Framework + Public Class TradeScreen Inherits Screen @@ -148,7 +150,7 @@ Public Class TradeScreen Dim itemData = lItem.Split(CChar("|")) - Me.TradeItems.Add(New TradeItem(ScriptConversion.ToInteger(itemData(0)), ScriptConversion.ToInteger(itemData(1)), ScriptConversion.ToInteger(itemData(2)), Me.Currency)) + TradeItems.Add(New TradeItem(Converter.ToInteger(itemData(0)), Converter.ToInteger(itemData(1)), Converter.ToInteger(itemData(2)), Currency)) Next Me.texture = TextureManager.GetTexture("GUI\Menus\General") diff --git a/2.5DHero/2.5DHero/Screens/TrainerScreen.vb b/2.5DHero/2.5DHero/Screens/TrainerScreen.vb index 3b18febc1..594fd4a23 100644 --- a/2.5DHero/2.5DHero/Screens/TrainerScreen.vb +++ b/2.5DHero/2.5DHero/Screens/TrainerScreen.vb @@ -56,13 +56,13 @@ DrawContent() DrawBadges() - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("trainer_screen_backadvice"), New Vector2(1200 - FontManager.MiniFont.MeasureString(OldLocalization.GetString("trainer_screen_backadvice")).X - 330, 580), Color.DarkGray) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("trainer_screen_backadvice"), New Vector2(1200 - FontManager.MiniFont.MeasureString(Localization.GetString("trainer_screen_backadvice")).X - 330, 580), Color.DarkGray) End Sub Private Sub DrawHeader() Canvas.DrawImageBorder(TextureManager.GetTexture(mainTexture, New Rectangle(0, 0, 48, 48)), 2, New Rectangle(60, 100, 480, 64)) Core.SpriteBatch.Draw(mainTexture, New Rectangle(78, 124, 60, 48), New Rectangle(108, 112, 20, 16), Color.White) - Core.SpriteBatch.DrawString(FontManager.InGameFont, OldLocalization.GetString("trainer_screen_trainer_card"), New Vector2(154, 132), Color.Black) + Core.SpriteBatch.DrawString(FontManager.InGameFont, Localization.GetString("trainer_screen_trainer_card"), New Vector2(154, 132), Color.Black) End Sub Private Sub DrawContent() @@ -108,14 +108,14 @@ Dim EmblemName As String = Core.GameJoltSave.Emblem Core.SpriteBatch.DrawString(FontManager.MiniFont, "Current Emblem: """ & EmblemName(0).ToString().ToUpper() & EmblemName.Substring(1, EmblemName.Length - 1) & """ (" & CStr(Core.GameJoltSave.AchievedEmblems.IndexOf(EmblemName) + 1) & "/" & Core.GameJoltSave.AchievedEmblems.Count & ") - use arrow keys to change.", New Vector2(80, 333), Color.Black) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("trainer_screen_money") & ": " & vbNewLine & vbNewLine & OldLocalization.GetString("trainer_screen_pokedex") & ": " & vbNewLine & vbNewLine & OldLocalization.GetString("trainer_screen_time") & ": ", New Vector2(610, 220), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("trainer_screen_money") & ": " & vbNewLine & vbNewLine & Localization.GetString("trainer_screen_pokedex") & ": " & vbNewLine & vbNewLine & Localization.GetString("trainer_screen_time") & ": ", New Vector2(610, 220), Color.Black) With Core.Player Core.SpriteBatch.DrawString(FontManager.MiniFont, "$" & .Money & vbNewLine & vbNewLine & Pokedex.CountEntries(Core.Player.PokedexData, {2, 3}) & " /" & Pokedex.CountEntries(Core.Player.PokedexData, {1, 2, 3}) & vbNewLine & vbNewLine & TimeHelpers.GetDisplayTime(TimeHelpers.GetCurrentPlayTime(), True), New Vector2(700, 220), Color.DarkBlue) End With Else Canvas.DrawImageBorder(TextureManager.GetTexture(mainTexture, New Rectangle(0, 0, 48, 48)), 2, New Rectangle(572, 100, 288, 288)) - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("trainer_screen_name") & ": " & vbNewLine & vbNewLine & OldLocalization.GetString("trainer_screen_points") & ": " & vbNewLine & vbNewLine & OldLocalization.GetString("trainer_screen_money") & ": " & vbNewLine & vbNewLine & OldLocalization.GetString("trainer_screen_pokedex") & ": " & vbNewLine & vbNewLine & OldLocalization.GetString("trainer_screen_time") & ": ", New Vector2(108, 220), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("trainer_screen_name") & ": " & vbNewLine & vbNewLine & Localization.GetString("trainer_screen_points") & ": " & vbNewLine & vbNewLine & Localization.GetString("trainer_screen_money") & ": " & vbNewLine & vbNewLine & Localization.GetString("trainer_screen_pokedex") & ": " & vbNewLine & vbNewLine & Localization.GetString("trainer_screen_time") & ": ", New Vector2(108, 220), Color.Black) Dim displayPoints As Integer = Core.Player.Points If Core.Player.IsGameJoltSave = True Then @@ -133,7 +133,7 @@ Private Sub DrawBadges() If Core.Player.Badges.Count > 0 Then - Core.SpriteBatch.DrawString(FontManager.MiniFont, OldLocalization.GetString("trainer_screen_collected_badges") & ": " & Core.Player.Badges.Count, New Vector2(108, 450), Color.Black) + Core.SpriteBatch.DrawString(FontManager.MiniFont, Localization.GetString("trainer_screen_collected_badges") & ": " & Core.Player.Badges.Count, New Vector2(108, 450), Color.Black) Dim selectedRegion As String = Badge.GetRegion(CInt(index.Y)) Dim badgesCount As Integer = Badge.GetBadgesCount(selectedRegion) @@ -142,10 +142,10 @@ Dim badgeID As Integer = Badge.GetBadgeID(selectedRegion, i) Dim c As Color = Color.White - Dim t As String = Badge.GetBadgeName(badgeID) & OldLocalization.GetString("trainer_screen_badge") + Dim t As String = Badge.GetBadgeName(badgeID) & Localization.GetString("trainer_screen_badge") If Badge.PlayerHasBadge(badgeID) = False Then c = Color.Black - t = OldLocalization.GetString("trainer_screen_empty_badge") + t = Localization.GetString("trainer_screen_empty_badge") End If Core.SpriteBatch.Draw(Badge.GetBadgeTexture(badgeID), New Rectangle(60 + (i + 1) * 64, 480, 50, 50), c) diff --git a/2.5DHero/2.5DHero/World/ActionScript/ActionScript.vb b/2.5DHero/2.5DHero/World/ActionScript/ActionScript.vb index e72493adc..1d68adff9 100644 --- a/2.5DHero/2.5DHero/World/ActionScript/ActionScript.vb +++ b/2.5DHero/2.5DHero/World/ActionScript/ActionScript.vb @@ -118,7 +118,7 @@ nextScript: Logger.Debug("Start script (ID: " & Input & ")") l.ScriptName = "Type: Script; Input: " & Input - Dim path As String = OldGameModeManager.GetScriptPath(Input & ".dat") + Dim path As String = GameModeManager.GetScriptPath(Input & ".dat") Security.FileValidation.CheckFileValid(path, False, "ActionScript.vb") If System.IO.File.Exists(path) = True Then diff --git a/2.5DHero/2.5DHero/World/ActionScript/V2/ScriptConstructs/DoPokemon.vb b/2.5DHero/2.5DHero/World/ActionScript/V2/ScriptConstructs/DoPokemon.vb index 0668b513a..d081fc23a 100644 --- a/2.5DHero/2.5DHero/World/ActionScript/V2/ScriptConstructs/DoPokemon.vb +++ b/2.5DHero/2.5DHero/World/ActionScript/V2/ScriptConstructs/DoPokemon.vb @@ -246,7 +246,7 @@ Return p.Experience - p.NeedExperience(p.Level) Case "generatefrontier" Dim level As Integer = int(argument.GetSplit(0)) - level = level.Clamp(1, CInt(OldGameModeManager.GetGameRuleValue("MaxLevel", "100"))) + level = level.Clamp(1, CInt(GameModeManager.GetGameRuleValue("MaxLevel", "100"))) Dim pokemon_class As Integer = int(argument.GetSplit(1)) Dim IDPreset As List(Of Integer) = Nothing diff --git a/2.5DHero/2.5DHero/World/Badge.vb b/2.5DHero/2.5DHero/World/Badge.vb index 0bd92c3ed..a3b18b238 100644 --- a/2.5DHero/2.5DHero/World/Badge.vb +++ b/2.5DHero/2.5DHero/World/Badge.vb @@ -91,7 +91,7 @@ Public Class Badge Public Shared Sub Load() Badges.Clear() - Dim file As String = OldGameModeManager.GetContentFilePath("Data\badges.dat") + Dim file As String = GameModeManager.GetContentFilePath("Data\badges.dat") Security.FileValidation.CheckFileValid(file, False, "Badge.vb") Dim data() As String = System.IO.File.ReadAllLines(file) For Each line As String In data diff --git a/2.5DHero/2.5DHero/World/Level.vb b/2.5DHero/2.5DHero/World/Level.vb index f6b571b54..71c2987cc 100644 --- a/2.5DHero/2.5DHero/World/Level.vb +++ b/2.5DHero/2.5DHero/World/Level.vb @@ -49,6 +49,7 @@ Public Class Level Private _lightingType As Integer = 0 Private _isSafariZone As Boolean = False Private _isBugCatchingContest As Boolean = False + Private _mapScript As String = "" Private _bugCatchingContestData As String = "" Private _battleMapData As String = "" @@ -586,6 +587,18 @@ Public Class Level End Get End Property + ''' + ''' The map script of this map. + ''' + Public Property MapScript() As String + Get + Return _mapScript + End Get + Set(value As String) + _mapScript = value + End Set + End Property + #End Region #Region "Structures" @@ -991,7 +1004,7 @@ Public Class Level World.Initialize(Screen.Level.EnvironmentType, Screen.Level.WeatherType) ' If this map is on the restplaces list, set the player's last restplace to this map: - Dim restplaces As List(Of String) = System.IO.File.ReadAllLines(OldGameModeManager.GetMapPath("restplaces.dat")).ToList() + Dim restplaces As List(Of String) = System.IO.File.ReadAllLines(GameModeManager.GetMapPath("restplaces.dat")).ToList() For Each line As String In restplaces Dim place As String = line.GetSplit(0, "|") diff --git a/2.5DHero/2.5DHero/World/LevelLoader.vb b/2.5DHero/2.5DHero/World/LevelLoader.vb index 4b04c482b..da3fe50d2 100644 --- a/2.5DHero/2.5DHero/World/LevelLoader.vb +++ b/2.5DHero/2.5DHero/World/LevelLoader.vb @@ -98,7 +98,7 @@ sessionMapsLoaded.Add(levelPath) End If - levelPath = OldGameModeManager.GetMapPath(levelPath) + levelPath = GameModeManager.GetMapPath(levelPath) Logger.Debug("Loading map: " & levelPath.Remove(0, GameController.GamePath.Length)) Security.FileValidation.CheckFileValid(levelPath, False, "LevelLoader.vb") @@ -484,7 +484,7 @@ Dim structureKey As String = MapOffset.X.ToString() & "|" & MapOffset.Y.ToString() & "|" & MapOffset.Z.ToString() & "|" & MapName If tempStructureList.ContainsKey(structureKey) = False Then - Dim filepath As String = OldGameModeManager.GetMapPath(MapName) + Dim filepath As String = GameModeManager.GetMapPath(MapName) Security.FileValidation.CheckFileValid(filepath, False, "LevelLoader.vb/StructureSpawner") If IO.File.Exists(filepath) = False Then @@ -574,12 +574,18 @@ positionData = positionData.Remove(positionData.IndexOf("]")) Dim posArr() As String = positionData.Split(CChar(",")) - Dim newPosition As New Vector3(ScriptConversion.ToSingle(posArr(0).Replace(".", GameController.DecSeparator)) + MapOffset.X, ScriptConversion.ToSingle(posArr(1).Replace(".", GameController.DecSeparator)) + MapOffset.Y, CSng(posArr(2).Replace(".", GameController.DecSeparator)) + MapOffset.Z) + Dim newPosition As New Vector3(CSng(posArr(0).Replace(".", GameController.DecSeparator)) + MapOffset.X, + CSng(posArr(1).Replace(".", GameController.DecSeparator)) + MapOffset.Y, + CSng(posArr(2).Replace(".", GameController.DecSeparator)) + MapOffset.Z) If line.ToLower().Contains("{""position""{sngarr[") = True Then - line = line.Replace(positionString, "{""position""{sngarr[" & newPosition.X.ToString().Replace(GameController.DecSeparator, ".") & "," & newPosition.Y.ToString().Replace(GameController.DecSeparator, ".") & "," & newPosition.Z.ToString().Replace(GameController.DecSeparator, ".") & "]}}") + line = line.Replace(positionString, "{""position""{sngarr[" & newPosition.X.ToString().Replace(GameController.DecSeparator, ".") & "," & + newPosition.Y.ToString().Replace(GameController.DecSeparator, ".") & "," & + newPosition.Z.ToString().Replace(GameController.DecSeparator, ".") & "]}}") Else - line = line.Replace(positionString, "{""position""{intarr[" & CInt(newPosition.X).ToString().Replace(GameController.DecSeparator, ".") & "," & CInt(newPosition.Y).ToString().Replace(GameController.DecSeparator, ".") & "," & CInt(newPosition.Z).ToString().Replace(GameController.DecSeparator, ".") & "]}}") + line = line.Replace(positionString, "{""position""{intarr[" & CInt(newPosition.X).ToString().Replace(GameController.DecSeparator, ".") & "," & + CInt(newPosition.Y).ToString().Replace(GameController.DecSeparator, ".") & "," & + CInt(newPosition.Z).ToString().Replace(GameController.DecSeparator, ".") & "]}}") End If End If @@ -1012,17 +1018,16 @@ If TagExists(Tags, "MapScript") = True Then Dim scriptName As String = CStr(GetTag(Tags, "MapScript")) If CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - If CType(CurrentScreen, OverworldScreen).ActionScript.IsReady = True Then - CType(CurrentScreen, OverworldScreen).ActionScript.reDelay = 0.0F - CType(CurrentScreen, OverworldScreen).ActionScript.StartScript(scriptName, 0) - Else ' A script intro is playing (such as Fly). - MapScript = scriptName + If Construct.Controller.GetInstance().IsReady = True Then + Construct.Controller.GetInstance().RunFromFile(scriptName, {}) + Else 'A script intro is playing (fly) + Screen.Level.MapScript = scriptName End If - Else ' Must be a direct save load from the main menu. - MapScript = scriptName + Else 'Loads the map from a screen that is not the overworld screen, preserve the map script and apply as soon as the screen switches to an overworld screen. + Screen.Level.MapScript = scriptName End If Else - MapScript = "" + Screen.Level.MapScript = "" End If If TagExists(Tags, "RadioChannels") = True Then diff --git a/2.5DHero/2.5DHero/World/PokemonEncounter.vb b/2.5DHero/2.5DHero/World/PokemonEncounter.vb index b578c63b7..a47fa01a8 100644 --- a/2.5DHero/2.5DHero/World/PokemonEncounter.vb +++ b/2.5DHero/2.5DHero/World/PokemonEncounter.vb @@ -39,7 +39,7 @@ Public Class PokemonEncounter pokeFile = .LevelFile.Remove(.LevelFile.Length - 4, 4) & ".poke" End If - If System.IO.File.Exists(OldGameModeManager.GetPokeFilePath(pokeFile)) = True Then ' Only try to register a wild battle if the .poke file exists: + If System.IO.File.Exists(GameModeManager.GetPokeFilePath(pokeFile)) = True Then ' Only try to register a wild battle if the .poke file exists: Dim startRandomValue As Integer = 12 Dim minRandomValue As Integer = 5 @@ -115,7 +115,7 @@ Public Class PokemonEncounter ' Generate new wild Pokémon: Dim Pokemon As Pokemon = Spawner.GetPokemon(Screen.Level.LevelFile, Me._levelReference.PokemonEncounterData.Method, True, Me._levelReference.PokemonEncounterData.PokeFile) - If Not Pokemon Is Nothing And CType(Core.CurrentScreen, OverworldScreen).TrainerEncountered = False And CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady = True Then + If Not Pokemon Is Nothing And CType(Core.CurrentScreen, OverworldScreen).TrainerEncountered = False And Construct.Controller.GetInstance().IsReady = True Then Screen.Level.RouteSign.Hide() ' When a battle starts, hide the Route sign. ' If the player has a Repel going and the first Pokémon in the party's level is greater than the wild Pokémon's level, don't start the battle: diff --git a/2.5DHero/2.5DHero/World/World.vb b/2.5DHero/2.5DHero/World/World.vb index 32f23be19..c517a2ddc 100644 --- a/2.5DHero/2.5DHero/World/World.vb +++ b/2.5DHero/2.5DHero/World/World.vb @@ -465,6 +465,16 @@ endsub: End Select End Function + + ''' + ''' Sets a new region weather. + ''' + ''' The environment type to use. + ''' The weather type to use. + Public Sub SetNewRegionWeather(ByVal EnvironmentType As Integer, ByVal WeatherType As Integer) + _regionWeatherSet = False + Initialize(EnvironmentType, WeatherType) + End Sub Public Sub Initialize(ByVal EnvironmentType As Integer, ByVal WeatherType As Integer) If _regionWeatherSet = False Then World._regionWeather = World.GetRegionWeather(World.CurrentSeason) @@ -708,7 +718,7 @@ endsub: Dim validScreen() As Screen.Identifications = {Screen.Identifications.OverworldScreen, Screen.Identifications.BattleScreen, Screen.Identifications.BattleCatchScreen, Screen.Identifications.MainMenuScreen} If validScreen.Contains(Core.CurrentScreen.Identification) = True Then If Core.CurrentScreen.Identification = Screen.Identifications.OverworldScreen Then - If CType(Core.CurrentScreen, OverworldScreen).ActionScript.IsReady = False Then + If Construct.Controller.GetInstance().IsReady = False Then Exit Sub End If End If diff --git a/2.5DHero/2.5DHeroContent/Content.mgcb b/2.5DHero/2.5DHeroContent/Content.mgcb index 347d9fcc1..a4cd63c83 100644 --- a/2.5DHero/2.5DHeroContent/Content.mgcb +++ b/2.5DHero/2.5DHeroContent/Content.mgcb @@ -78953,2085 +78953,6 @@ #begin GameModes/Kolben/Data/Moves/example.dat /copy:GameModes/Kolben/Data/Moves/example.dat -#begin GameModes/Kolben/Data/Pokemon/1.dat -/copy:GameModes/Kolben/Data/Pokemon/1.dat - -#begin GameModes/Kolben/Data/Pokemon/10.dat -/copy:GameModes/Kolben/Data/Pokemon/10.dat - -#begin GameModes/Kolben/Data/Pokemon/100.dat -/copy:GameModes/Kolben/Data/Pokemon/100.dat - -#begin GameModes/Kolben/Data/Pokemon/101.dat -/copy:GameModes/Kolben/Data/Pokemon/101.dat - -#begin GameModes/Kolben/Data/Pokemon/102.dat -/copy:GameModes/Kolben/Data/Pokemon/102.dat - -#begin GameModes/Kolben/Data/Pokemon/103.dat -/copy:GameModes/Kolben/Data/Pokemon/103.dat - -#begin GameModes/Kolben/Data/Pokemon/104.dat -/copy:GameModes/Kolben/Data/Pokemon/104.dat - -#begin GameModes/Kolben/Data/Pokemon/105.dat -/copy:GameModes/Kolben/Data/Pokemon/105.dat - -#begin GameModes/Kolben/Data/Pokemon/106.dat -/copy:GameModes/Kolben/Data/Pokemon/106.dat - -#begin GameModes/Kolben/Data/Pokemon/107.dat -/copy:GameModes/Kolben/Data/Pokemon/107.dat - -#begin GameModes/Kolben/Data/Pokemon/108.dat -/copy:GameModes/Kolben/Data/Pokemon/108.dat - -#begin GameModes/Kolben/Data/Pokemon/109.dat -/copy:GameModes/Kolben/Data/Pokemon/109.dat - -#begin GameModes/Kolben/Data/Pokemon/11.dat -/copy:GameModes/Kolben/Data/Pokemon/11.dat - -#begin GameModes/Kolben/Data/Pokemon/110.dat -/copy:GameModes/Kolben/Data/Pokemon/110.dat - -#begin GameModes/Kolben/Data/Pokemon/111.dat -/copy:GameModes/Kolben/Data/Pokemon/111.dat - -#begin GameModes/Kolben/Data/Pokemon/112.dat -/copy:GameModes/Kolben/Data/Pokemon/112.dat - -#begin GameModes/Kolben/Data/Pokemon/113.dat -/copy:GameModes/Kolben/Data/Pokemon/113.dat - -#begin GameModes/Kolben/Data/Pokemon/114.dat -/copy:GameModes/Kolben/Data/Pokemon/114.dat - -#begin GameModes/Kolben/Data/Pokemon/115.dat -/copy:GameModes/Kolben/Data/Pokemon/115.dat - -#begin GameModes/Kolben/Data/Pokemon/116.dat -/copy:GameModes/Kolben/Data/Pokemon/116.dat - -#begin GameModes/Kolben/Data/Pokemon/117.dat -/copy:GameModes/Kolben/Data/Pokemon/117.dat - -#begin GameModes/Kolben/Data/Pokemon/118.dat -/copy:GameModes/Kolben/Data/Pokemon/118.dat - -#begin GameModes/Kolben/Data/Pokemon/119.dat -/copy:GameModes/Kolben/Data/Pokemon/119.dat - -#begin GameModes/Kolben/Data/Pokemon/12.dat -/copy:GameModes/Kolben/Data/Pokemon/12.dat - -#begin GameModes/Kolben/Data/Pokemon/120.dat -/copy:GameModes/Kolben/Data/Pokemon/120.dat - -#begin GameModes/Kolben/Data/Pokemon/121.dat -/copy:GameModes/Kolben/Data/Pokemon/121.dat - -#begin GameModes/Kolben/Data/Pokemon/122.dat -/copy:GameModes/Kolben/Data/Pokemon/122.dat - -#begin GameModes/Kolben/Data/Pokemon/123.dat -/copy:GameModes/Kolben/Data/Pokemon/123.dat - -#begin GameModes/Kolben/Data/Pokemon/124.dat -/copy:GameModes/Kolben/Data/Pokemon/124.dat - -#begin GameModes/Kolben/Data/Pokemon/125.dat -/copy:GameModes/Kolben/Data/Pokemon/125.dat - -#begin GameModes/Kolben/Data/Pokemon/126.dat -/copy:GameModes/Kolben/Data/Pokemon/126.dat - -#begin GameModes/Kolben/Data/Pokemon/127.dat -/copy:GameModes/Kolben/Data/Pokemon/127.dat - -#begin GameModes/Kolben/Data/Pokemon/128.dat -/copy:GameModes/Kolben/Data/Pokemon/128.dat - -#begin GameModes/Kolben/Data/Pokemon/129.dat -/copy:GameModes/Kolben/Data/Pokemon/129.dat - -#begin GameModes/Kolben/Data/Pokemon/13.dat -/copy:GameModes/Kolben/Data/Pokemon/13.dat - -#begin GameModes/Kolben/Data/Pokemon/130.dat -/copy:GameModes/Kolben/Data/Pokemon/130.dat - -#begin GameModes/Kolben/Data/Pokemon/131.dat -/copy:GameModes/Kolben/Data/Pokemon/131.dat - -#begin GameModes/Kolben/Data/Pokemon/132.dat -/copy:GameModes/Kolben/Data/Pokemon/132.dat - -#begin GameModes/Kolben/Data/Pokemon/133.dat -/copy:GameModes/Kolben/Data/Pokemon/133.dat - -#begin GameModes/Kolben/Data/Pokemon/134.dat -/copy:GameModes/Kolben/Data/Pokemon/134.dat - -#begin GameModes/Kolben/Data/Pokemon/135.dat -/copy:GameModes/Kolben/Data/Pokemon/135.dat - -#begin GameModes/Kolben/Data/Pokemon/136.dat -/copy:GameModes/Kolben/Data/Pokemon/136.dat - -#begin GameModes/Kolben/Data/Pokemon/137.dat -/copy:GameModes/Kolben/Data/Pokemon/137.dat - -#begin GameModes/Kolben/Data/Pokemon/138.dat -/copy:GameModes/Kolben/Data/Pokemon/138.dat - -#begin GameModes/Kolben/Data/Pokemon/139.dat -/copy:GameModes/Kolben/Data/Pokemon/139.dat - -#begin GameModes/Kolben/Data/Pokemon/14.dat -/copy:GameModes/Kolben/Data/Pokemon/14.dat - -#begin GameModes/Kolben/Data/Pokemon/140.dat -/copy:GameModes/Kolben/Data/Pokemon/140.dat - -#begin GameModes/Kolben/Data/Pokemon/141.dat -/copy:GameModes/Kolben/Data/Pokemon/141.dat - -#begin GameModes/Kolben/Data/Pokemon/142.dat -/copy:GameModes/Kolben/Data/Pokemon/142.dat - -#begin GameModes/Kolben/Data/Pokemon/143.dat -/copy:GameModes/Kolben/Data/Pokemon/143.dat - -#begin GameModes/Kolben/Data/Pokemon/144.dat -/copy:GameModes/Kolben/Data/Pokemon/144.dat - -#begin GameModes/Kolben/Data/Pokemon/145.dat -/copy:GameModes/Kolben/Data/Pokemon/145.dat - -#begin GameModes/Kolben/Data/Pokemon/146.dat -/copy:GameModes/Kolben/Data/Pokemon/146.dat - -#begin GameModes/Kolben/Data/Pokemon/147.dat -/copy:GameModes/Kolben/Data/Pokemon/147.dat - -#begin GameModes/Kolben/Data/Pokemon/148.dat -/copy:GameModes/Kolben/Data/Pokemon/148.dat - -#begin GameModes/Kolben/Data/Pokemon/149.dat -/copy:GameModes/Kolben/Data/Pokemon/149.dat - -#begin GameModes/Kolben/Data/Pokemon/15.dat -/copy:GameModes/Kolben/Data/Pokemon/15.dat - -#begin GameModes/Kolben/Data/Pokemon/150.dat -/copy:GameModes/Kolben/Data/Pokemon/150.dat - -#begin GameModes/Kolben/Data/Pokemon/151.dat -/copy:GameModes/Kolben/Data/Pokemon/151.dat - -#begin GameModes/Kolben/Data/Pokemon/152.dat -/copy:GameModes/Kolben/Data/Pokemon/152.dat - -#begin GameModes/Kolben/Data/Pokemon/153.dat -/copy:GameModes/Kolben/Data/Pokemon/153.dat - -#begin GameModes/Kolben/Data/Pokemon/154.dat -/copy:GameModes/Kolben/Data/Pokemon/154.dat - -#begin GameModes/Kolben/Data/Pokemon/155.dat -/copy:GameModes/Kolben/Data/Pokemon/155.dat - -#begin GameModes/Kolben/Data/Pokemon/156.dat -/copy:GameModes/Kolben/Data/Pokemon/156.dat - -#begin GameModes/Kolben/Data/Pokemon/157.dat -/copy:GameModes/Kolben/Data/Pokemon/157.dat - -#begin GameModes/Kolben/Data/Pokemon/158.dat -/copy:GameModes/Kolben/Data/Pokemon/158.dat - -#begin GameModes/Kolben/Data/Pokemon/159.dat -/copy:GameModes/Kolben/Data/Pokemon/159.dat - -#begin GameModes/Kolben/Data/Pokemon/16.dat -/copy:GameModes/Kolben/Data/Pokemon/16.dat - -#begin GameModes/Kolben/Data/Pokemon/160.dat -/copy:GameModes/Kolben/Data/Pokemon/160.dat - -#begin GameModes/Kolben/Data/Pokemon/161.dat -/copy:GameModes/Kolben/Data/Pokemon/161.dat - -#begin GameModes/Kolben/Data/Pokemon/162.dat -/copy:GameModes/Kolben/Data/Pokemon/162.dat - -#begin GameModes/Kolben/Data/Pokemon/163.dat -/copy:GameModes/Kolben/Data/Pokemon/163.dat - -#begin GameModes/Kolben/Data/Pokemon/164.dat -/copy:GameModes/Kolben/Data/Pokemon/164.dat - -#begin GameModes/Kolben/Data/Pokemon/165.dat -/copy:GameModes/Kolben/Data/Pokemon/165.dat - -#begin GameModes/Kolben/Data/Pokemon/166.dat -/copy:GameModes/Kolben/Data/Pokemon/166.dat - -#begin GameModes/Kolben/Data/Pokemon/167.dat -/copy:GameModes/Kolben/Data/Pokemon/167.dat - -#begin GameModes/Kolben/Data/Pokemon/168.dat -/copy:GameModes/Kolben/Data/Pokemon/168.dat - -#begin GameModes/Kolben/Data/Pokemon/169.dat -/copy:GameModes/Kolben/Data/Pokemon/169.dat - -#begin GameModes/Kolben/Data/Pokemon/17.dat -/copy:GameModes/Kolben/Data/Pokemon/17.dat - -#begin GameModes/Kolben/Data/Pokemon/170.dat -/copy:GameModes/Kolben/Data/Pokemon/170.dat - -#begin GameModes/Kolben/Data/Pokemon/171.dat -/copy:GameModes/Kolben/Data/Pokemon/171.dat - -#begin GameModes/Kolben/Data/Pokemon/172.dat -/copy:GameModes/Kolben/Data/Pokemon/172.dat - -#begin GameModes/Kolben/Data/Pokemon/173.dat -/copy:GameModes/Kolben/Data/Pokemon/173.dat - -#begin GameModes/Kolben/Data/Pokemon/174.dat -/copy:GameModes/Kolben/Data/Pokemon/174.dat - -#begin GameModes/Kolben/Data/Pokemon/175.dat -/copy:GameModes/Kolben/Data/Pokemon/175.dat - -#begin GameModes/Kolben/Data/Pokemon/176.dat -/copy:GameModes/Kolben/Data/Pokemon/176.dat - -#begin GameModes/Kolben/Data/Pokemon/177.dat -/copy:GameModes/Kolben/Data/Pokemon/177.dat - -#begin GameModes/Kolben/Data/Pokemon/178.dat -/copy:GameModes/Kolben/Data/Pokemon/178.dat - -#begin GameModes/Kolben/Data/Pokemon/179.dat -/copy:GameModes/Kolben/Data/Pokemon/179.dat - -#begin GameModes/Kolben/Data/Pokemon/18.dat -/copy:GameModes/Kolben/Data/Pokemon/18.dat - -#begin GameModes/Kolben/Data/Pokemon/180.dat -/copy:GameModes/Kolben/Data/Pokemon/180.dat - -#begin GameModes/Kolben/Data/Pokemon/181.dat -/copy:GameModes/Kolben/Data/Pokemon/181.dat - -#begin GameModes/Kolben/Data/Pokemon/182.dat -/copy:GameModes/Kolben/Data/Pokemon/182.dat - -#begin GameModes/Kolben/Data/Pokemon/183.dat -/copy:GameModes/Kolben/Data/Pokemon/183.dat - -#begin GameModes/Kolben/Data/Pokemon/184.dat -/copy:GameModes/Kolben/Data/Pokemon/184.dat - -#begin GameModes/Kolben/Data/Pokemon/185.dat -/copy:GameModes/Kolben/Data/Pokemon/185.dat - -#begin GameModes/Kolben/Data/Pokemon/186.dat -/copy:GameModes/Kolben/Data/Pokemon/186.dat - -#begin GameModes/Kolben/Data/Pokemon/187.dat -/copy:GameModes/Kolben/Data/Pokemon/187.dat - -#begin GameModes/Kolben/Data/Pokemon/188.dat -/copy:GameModes/Kolben/Data/Pokemon/188.dat - -#begin GameModes/Kolben/Data/Pokemon/189.dat -/copy:GameModes/Kolben/Data/Pokemon/189.dat - -#begin GameModes/Kolben/Data/Pokemon/19.dat -/copy:GameModes/Kolben/Data/Pokemon/19.dat - -#begin GameModes/Kolben/Data/Pokemon/190.dat -/copy:GameModes/Kolben/Data/Pokemon/190.dat - -#begin GameModes/Kolben/Data/Pokemon/191.dat -/copy:GameModes/Kolben/Data/Pokemon/191.dat - -#begin GameModes/Kolben/Data/Pokemon/192.dat -/copy:GameModes/Kolben/Data/Pokemon/192.dat - -#begin GameModes/Kolben/Data/Pokemon/193.dat -/copy:GameModes/Kolben/Data/Pokemon/193.dat - -#begin GameModes/Kolben/Data/Pokemon/194.dat -/copy:GameModes/Kolben/Data/Pokemon/194.dat - -#begin GameModes/Kolben/Data/Pokemon/195.dat -/copy:GameModes/Kolben/Data/Pokemon/195.dat - -#begin GameModes/Kolben/Data/Pokemon/196.dat -/copy:GameModes/Kolben/Data/Pokemon/196.dat - -#begin GameModes/Kolben/Data/Pokemon/197.dat -/copy:GameModes/Kolben/Data/Pokemon/197.dat - -#begin GameModes/Kolben/Data/Pokemon/198.dat -/copy:GameModes/Kolben/Data/Pokemon/198.dat - -#begin GameModes/Kolben/Data/Pokemon/199.dat -/copy:GameModes/Kolben/Data/Pokemon/199.dat - -#begin GameModes/Kolben/Data/Pokemon/2.dat -/copy:GameModes/Kolben/Data/Pokemon/2.dat - -#begin GameModes/Kolben/Data/Pokemon/20.dat -/copy:GameModes/Kolben/Data/Pokemon/20.dat - -#begin GameModes/Kolben/Data/Pokemon/200.dat -/copy:GameModes/Kolben/Data/Pokemon/200.dat - -#begin GameModes/Kolben/Data/Pokemon/201.dat -/copy:GameModes/Kolben/Data/Pokemon/201.dat - -#begin GameModes/Kolben/Data/Pokemon/202.dat -/copy:GameModes/Kolben/Data/Pokemon/202.dat - -#begin GameModes/Kolben/Data/Pokemon/203.dat -/copy:GameModes/Kolben/Data/Pokemon/203.dat - -#begin GameModes/Kolben/Data/Pokemon/204.dat -/copy:GameModes/Kolben/Data/Pokemon/204.dat - -#begin GameModes/Kolben/Data/Pokemon/205.dat -/copy:GameModes/Kolben/Data/Pokemon/205.dat - -#begin GameModes/Kolben/Data/Pokemon/206.dat -/copy:GameModes/Kolben/Data/Pokemon/206.dat - -#begin GameModes/Kolben/Data/Pokemon/207.dat -/copy:GameModes/Kolben/Data/Pokemon/207.dat - -#begin GameModes/Kolben/Data/Pokemon/208.dat -/copy:GameModes/Kolben/Data/Pokemon/208.dat - -#begin GameModes/Kolben/Data/Pokemon/209.dat -/copy:GameModes/Kolben/Data/Pokemon/209.dat - -#begin GameModes/Kolben/Data/Pokemon/21.dat -/copy:GameModes/Kolben/Data/Pokemon/21.dat - -#begin GameModes/Kolben/Data/Pokemon/210.dat -/copy:GameModes/Kolben/Data/Pokemon/210.dat - -#begin GameModes/Kolben/Data/Pokemon/211.dat -/copy:GameModes/Kolben/Data/Pokemon/211.dat - -#begin GameModes/Kolben/Data/Pokemon/212.dat -/copy:GameModes/Kolben/Data/Pokemon/212.dat - -#begin GameModes/Kolben/Data/Pokemon/213.dat -/copy:GameModes/Kolben/Data/Pokemon/213.dat - -#begin GameModes/Kolben/Data/Pokemon/214.dat -/copy:GameModes/Kolben/Data/Pokemon/214.dat - -#begin GameModes/Kolben/Data/Pokemon/215.dat -/copy:GameModes/Kolben/Data/Pokemon/215.dat - -#begin GameModes/Kolben/Data/Pokemon/216.dat -/copy:GameModes/Kolben/Data/Pokemon/216.dat - -#begin GameModes/Kolben/Data/Pokemon/217.dat -/copy:GameModes/Kolben/Data/Pokemon/217.dat - -#begin GameModes/Kolben/Data/Pokemon/218.dat -/copy:GameModes/Kolben/Data/Pokemon/218.dat - -#begin GameModes/Kolben/Data/Pokemon/219.dat -/copy:GameModes/Kolben/Data/Pokemon/219.dat - -#begin GameModes/Kolben/Data/Pokemon/22.dat -/copy:GameModes/Kolben/Data/Pokemon/22.dat - -#begin GameModes/Kolben/Data/Pokemon/220.dat -/copy:GameModes/Kolben/Data/Pokemon/220.dat - -#begin GameModes/Kolben/Data/Pokemon/221.dat -/copy:GameModes/Kolben/Data/Pokemon/221.dat - -#begin GameModes/Kolben/Data/Pokemon/222.dat -/copy:GameModes/Kolben/Data/Pokemon/222.dat - -#begin GameModes/Kolben/Data/Pokemon/223.dat -/copy:GameModes/Kolben/Data/Pokemon/223.dat - -#begin GameModes/Kolben/Data/Pokemon/224.dat -/copy:GameModes/Kolben/Data/Pokemon/224.dat - -#begin GameModes/Kolben/Data/Pokemon/225.dat -/copy:GameModes/Kolben/Data/Pokemon/225.dat - -#begin GameModes/Kolben/Data/Pokemon/226.dat -/copy:GameModes/Kolben/Data/Pokemon/226.dat - -#begin GameModes/Kolben/Data/Pokemon/227.dat -/copy:GameModes/Kolben/Data/Pokemon/227.dat - -#begin GameModes/Kolben/Data/Pokemon/228.dat -/copy:GameModes/Kolben/Data/Pokemon/228.dat - -#begin GameModes/Kolben/Data/Pokemon/229.dat -/copy:GameModes/Kolben/Data/Pokemon/229.dat - -#begin GameModes/Kolben/Data/Pokemon/23.dat -/copy:GameModes/Kolben/Data/Pokemon/23.dat - -#begin GameModes/Kolben/Data/Pokemon/230.dat -/copy:GameModes/Kolben/Data/Pokemon/230.dat - -#begin GameModes/Kolben/Data/Pokemon/231.dat -/copy:GameModes/Kolben/Data/Pokemon/231.dat - -#begin GameModes/Kolben/Data/Pokemon/232.dat -/copy:GameModes/Kolben/Data/Pokemon/232.dat - -#begin GameModes/Kolben/Data/Pokemon/233.dat -/copy:GameModes/Kolben/Data/Pokemon/233.dat - -#begin GameModes/Kolben/Data/Pokemon/234.dat -/copy:GameModes/Kolben/Data/Pokemon/234.dat - -#begin GameModes/Kolben/Data/Pokemon/235.dat -/copy:GameModes/Kolben/Data/Pokemon/235.dat - -#begin GameModes/Kolben/Data/Pokemon/236.dat -/copy:GameModes/Kolben/Data/Pokemon/236.dat - -#begin GameModes/Kolben/Data/Pokemon/237.dat -/copy:GameModes/Kolben/Data/Pokemon/237.dat - -#begin GameModes/Kolben/Data/Pokemon/238.dat -/copy:GameModes/Kolben/Data/Pokemon/238.dat - -#begin GameModes/Kolben/Data/Pokemon/239.dat -/copy:GameModes/Kolben/Data/Pokemon/239.dat - -#begin GameModes/Kolben/Data/Pokemon/24.dat -/copy:GameModes/Kolben/Data/Pokemon/24.dat - -#begin GameModes/Kolben/Data/Pokemon/240.dat -/copy:GameModes/Kolben/Data/Pokemon/240.dat - -#begin GameModes/Kolben/Data/Pokemon/241.dat -/copy:GameModes/Kolben/Data/Pokemon/241.dat - -#begin GameModes/Kolben/Data/Pokemon/242.dat -/copy:GameModes/Kolben/Data/Pokemon/242.dat - -#begin GameModes/Kolben/Data/Pokemon/243.dat -/copy:GameModes/Kolben/Data/Pokemon/243.dat - -#begin GameModes/Kolben/Data/Pokemon/244.dat -/copy:GameModes/Kolben/Data/Pokemon/244.dat - -#begin GameModes/Kolben/Data/Pokemon/245.dat -/copy:GameModes/Kolben/Data/Pokemon/245.dat - -#begin GameModes/Kolben/Data/Pokemon/246.dat -/copy:GameModes/Kolben/Data/Pokemon/246.dat - -#begin GameModes/Kolben/Data/Pokemon/247.dat -/copy:GameModes/Kolben/Data/Pokemon/247.dat - -#begin GameModes/Kolben/Data/Pokemon/248.dat -/copy:GameModes/Kolben/Data/Pokemon/248.dat - -#begin GameModes/Kolben/Data/Pokemon/249.dat -/copy:GameModes/Kolben/Data/Pokemon/249.dat - -#begin GameModes/Kolben/Data/Pokemon/25.dat -/copy:GameModes/Kolben/Data/Pokemon/25.dat - -#begin GameModes/Kolben/Data/Pokemon/250.dat -/copy:GameModes/Kolben/Data/Pokemon/250.dat - -#begin GameModes/Kolben/Data/Pokemon/251.dat -/copy:GameModes/Kolben/Data/Pokemon/251.dat - -#begin GameModes/Kolben/Data/Pokemon/252.dat -/copy:GameModes/Kolben/Data/Pokemon/252.dat - -#begin GameModes/Kolben/Data/Pokemon/253.dat -/copy:GameModes/Kolben/Data/Pokemon/253.dat - -#begin GameModes/Kolben/Data/Pokemon/254.dat -/copy:GameModes/Kolben/Data/Pokemon/254.dat - -#begin GameModes/Kolben/Data/Pokemon/255.dat -/copy:GameModes/Kolben/Data/Pokemon/255.dat - -#begin GameModes/Kolben/Data/Pokemon/256.dat -/copy:GameModes/Kolben/Data/Pokemon/256.dat - -#begin GameModes/Kolben/Data/Pokemon/257.dat -/copy:GameModes/Kolben/Data/Pokemon/257.dat - -#begin GameModes/Kolben/Data/Pokemon/258.dat -/copy:GameModes/Kolben/Data/Pokemon/258.dat - -#begin GameModes/Kolben/Data/Pokemon/259.dat -/copy:GameModes/Kolben/Data/Pokemon/259.dat - -#begin GameModes/Kolben/Data/Pokemon/26.dat -/copy:GameModes/Kolben/Data/Pokemon/26.dat - -#begin GameModes/Kolben/Data/Pokemon/260.dat -/copy:GameModes/Kolben/Data/Pokemon/260.dat - -#begin GameModes/Kolben/Data/Pokemon/261.dat -/copy:GameModes/Kolben/Data/Pokemon/261.dat - -#begin GameModes/Kolben/Data/Pokemon/262.dat -/copy:GameModes/Kolben/Data/Pokemon/262.dat - -#begin GameModes/Kolben/Data/Pokemon/263.dat -/copy:GameModes/Kolben/Data/Pokemon/263.dat - -#begin GameModes/Kolben/Data/Pokemon/264.dat -/copy:GameModes/Kolben/Data/Pokemon/264.dat - -#begin GameModes/Kolben/Data/Pokemon/265.dat -/copy:GameModes/Kolben/Data/Pokemon/265.dat - -#begin GameModes/Kolben/Data/Pokemon/266.dat -/copy:GameModes/Kolben/Data/Pokemon/266.dat - -#begin GameModes/Kolben/Data/Pokemon/267.dat -/copy:GameModes/Kolben/Data/Pokemon/267.dat - -#begin GameModes/Kolben/Data/Pokemon/268.dat -/copy:GameModes/Kolben/Data/Pokemon/268.dat - -#begin GameModes/Kolben/Data/Pokemon/269.dat -/copy:GameModes/Kolben/Data/Pokemon/269.dat - -#begin GameModes/Kolben/Data/Pokemon/27.dat -/copy:GameModes/Kolben/Data/Pokemon/27.dat - -#begin GameModes/Kolben/Data/Pokemon/270.dat -/copy:GameModes/Kolben/Data/Pokemon/270.dat - -#begin GameModes/Kolben/Data/Pokemon/271.dat -/copy:GameModes/Kolben/Data/Pokemon/271.dat - -#begin GameModes/Kolben/Data/Pokemon/272.dat -/copy:GameModes/Kolben/Data/Pokemon/272.dat - -#begin GameModes/Kolben/Data/Pokemon/273.dat -/copy:GameModes/Kolben/Data/Pokemon/273.dat - -#begin GameModes/Kolben/Data/Pokemon/274.dat -/copy:GameModes/Kolben/Data/Pokemon/274.dat - -#begin GameModes/Kolben/Data/Pokemon/275.dat -/copy:GameModes/Kolben/Data/Pokemon/275.dat - -#begin GameModes/Kolben/Data/Pokemon/276.dat -/copy:GameModes/Kolben/Data/Pokemon/276.dat - -#begin GameModes/Kolben/Data/Pokemon/277.dat -/copy:GameModes/Kolben/Data/Pokemon/277.dat - -#begin GameModes/Kolben/Data/Pokemon/278.dat -/copy:GameModes/Kolben/Data/Pokemon/278.dat - -#begin GameModes/Kolben/Data/Pokemon/279.dat -/copy:GameModes/Kolben/Data/Pokemon/279.dat - -#begin GameModes/Kolben/Data/Pokemon/28.dat -/copy:GameModes/Kolben/Data/Pokemon/28.dat - -#begin GameModes/Kolben/Data/Pokemon/280.dat -/copy:GameModes/Kolben/Data/Pokemon/280.dat - -#begin GameModes/Kolben/Data/Pokemon/281.dat -/copy:GameModes/Kolben/Data/Pokemon/281.dat - -#begin GameModes/Kolben/Data/Pokemon/282.dat -/copy:GameModes/Kolben/Data/Pokemon/282.dat - -#begin GameModes/Kolben/Data/Pokemon/283.dat -/copy:GameModes/Kolben/Data/Pokemon/283.dat - -#begin GameModes/Kolben/Data/Pokemon/284.dat -/copy:GameModes/Kolben/Data/Pokemon/284.dat - -#begin GameModes/Kolben/Data/Pokemon/285.dat -/copy:GameModes/Kolben/Data/Pokemon/285.dat - -#begin GameModes/Kolben/Data/Pokemon/286.dat -/copy:GameModes/Kolben/Data/Pokemon/286.dat - -#begin GameModes/Kolben/Data/Pokemon/287.dat -/copy:GameModes/Kolben/Data/Pokemon/287.dat - -#begin GameModes/Kolben/Data/Pokemon/288.dat -/copy:GameModes/Kolben/Data/Pokemon/288.dat - -#begin GameModes/Kolben/Data/Pokemon/289.dat -/copy:GameModes/Kolben/Data/Pokemon/289.dat - -#begin GameModes/Kolben/Data/Pokemon/29.dat -/copy:GameModes/Kolben/Data/Pokemon/29.dat - -#begin GameModes/Kolben/Data/Pokemon/290.dat -/copy:GameModes/Kolben/Data/Pokemon/290.dat - -#begin GameModes/Kolben/Data/Pokemon/291.dat -/copy:GameModes/Kolben/Data/Pokemon/291.dat - -#begin GameModes/Kolben/Data/Pokemon/292.dat -/copy:GameModes/Kolben/Data/Pokemon/292.dat - -#begin GameModes/Kolben/Data/Pokemon/293.dat -/copy:GameModes/Kolben/Data/Pokemon/293.dat - -#begin GameModes/Kolben/Data/Pokemon/294.dat -/copy:GameModes/Kolben/Data/Pokemon/294.dat - -#begin GameModes/Kolben/Data/Pokemon/295.dat -/copy:GameModes/Kolben/Data/Pokemon/295.dat - -#begin GameModes/Kolben/Data/Pokemon/296.dat -/copy:GameModes/Kolben/Data/Pokemon/296.dat - -#begin GameModes/Kolben/Data/Pokemon/297.dat -/copy:GameModes/Kolben/Data/Pokemon/297.dat - -#begin GameModes/Kolben/Data/Pokemon/298.dat -/copy:GameModes/Kolben/Data/Pokemon/298.dat - -#begin GameModes/Kolben/Data/Pokemon/299.dat -/copy:GameModes/Kolben/Data/Pokemon/299.dat - -#begin GameModes/Kolben/Data/Pokemon/3.dat -/copy:GameModes/Kolben/Data/Pokemon/3.dat - -#begin GameModes/Kolben/Data/Pokemon/30.dat -/copy:GameModes/Kolben/Data/Pokemon/30.dat - -#begin GameModes/Kolben/Data/Pokemon/300.dat -/copy:GameModes/Kolben/Data/Pokemon/300.dat - -#begin GameModes/Kolben/Data/Pokemon/301.dat -/copy:GameModes/Kolben/Data/Pokemon/301.dat - -#begin GameModes/Kolben/Data/Pokemon/302.dat -/copy:GameModes/Kolben/Data/Pokemon/302.dat - -#begin GameModes/Kolben/Data/Pokemon/303.dat -/copy:GameModes/Kolben/Data/Pokemon/303.dat - -#begin GameModes/Kolben/Data/Pokemon/304.dat -/copy:GameModes/Kolben/Data/Pokemon/304.dat - -#begin GameModes/Kolben/Data/Pokemon/305.dat -/copy:GameModes/Kolben/Data/Pokemon/305.dat - -#begin GameModes/Kolben/Data/Pokemon/306.dat -/copy:GameModes/Kolben/Data/Pokemon/306.dat - -#begin GameModes/Kolben/Data/Pokemon/307.dat -/copy:GameModes/Kolben/Data/Pokemon/307.dat - -#begin GameModes/Kolben/Data/Pokemon/308.dat -/copy:GameModes/Kolben/Data/Pokemon/308.dat - -#begin GameModes/Kolben/Data/Pokemon/309.dat -/copy:GameModes/Kolben/Data/Pokemon/309.dat - -#begin GameModes/Kolben/Data/Pokemon/31.dat -/copy:GameModes/Kolben/Data/Pokemon/31.dat - -#begin GameModes/Kolben/Data/Pokemon/310.dat -/copy:GameModes/Kolben/Data/Pokemon/310.dat - -#begin GameModes/Kolben/Data/Pokemon/311.dat -/copy:GameModes/Kolben/Data/Pokemon/311.dat - -#begin GameModes/Kolben/Data/Pokemon/312.dat -/copy:GameModes/Kolben/Data/Pokemon/312.dat - -#begin GameModes/Kolben/Data/Pokemon/313.dat -/copy:GameModes/Kolben/Data/Pokemon/313.dat - -#begin GameModes/Kolben/Data/Pokemon/314.dat -/copy:GameModes/Kolben/Data/Pokemon/314.dat - -#begin GameModes/Kolben/Data/Pokemon/315.dat -/copy:GameModes/Kolben/Data/Pokemon/315.dat - -#begin GameModes/Kolben/Data/Pokemon/316.dat -/copy:GameModes/Kolben/Data/Pokemon/316.dat - -#begin GameModes/Kolben/Data/Pokemon/317.dat -/copy:GameModes/Kolben/Data/Pokemon/317.dat - -#begin GameModes/Kolben/Data/Pokemon/318.dat -/copy:GameModes/Kolben/Data/Pokemon/318.dat - -#begin GameModes/Kolben/Data/Pokemon/319.dat -/copy:GameModes/Kolben/Data/Pokemon/319.dat - -#begin GameModes/Kolben/Data/Pokemon/32.dat -/copy:GameModes/Kolben/Data/Pokemon/32.dat - -#begin GameModes/Kolben/Data/Pokemon/320.dat -/copy:GameModes/Kolben/Data/Pokemon/320.dat - -#begin GameModes/Kolben/Data/Pokemon/321.dat -/copy:GameModes/Kolben/Data/Pokemon/321.dat - -#begin GameModes/Kolben/Data/Pokemon/322.dat -/copy:GameModes/Kolben/Data/Pokemon/322.dat - -#begin GameModes/Kolben/Data/Pokemon/323.dat -/copy:GameModes/Kolben/Data/Pokemon/323.dat - -#begin GameModes/Kolben/Data/Pokemon/324.dat -/copy:GameModes/Kolben/Data/Pokemon/324.dat - -#begin GameModes/Kolben/Data/Pokemon/325.dat -/copy:GameModes/Kolben/Data/Pokemon/325.dat - -#begin GameModes/Kolben/Data/Pokemon/326.dat -/copy:GameModes/Kolben/Data/Pokemon/326.dat - -#begin GameModes/Kolben/Data/Pokemon/327.dat -/copy:GameModes/Kolben/Data/Pokemon/327.dat - -#begin GameModes/Kolben/Data/Pokemon/328.dat -/copy:GameModes/Kolben/Data/Pokemon/328.dat - -#begin GameModes/Kolben/Data/Pokemon/329.dat -/copy:GameModes/Kolben/Data/Pokemon/329.dat - -#begin GameModes/Kolben/Data/Pokemon/33.dat -/copy:GameModes/Kolben/Data/Pokemon/33.dat - -#begin GameModes/Kolben/Data/Pokemon/330.dat -/copy:GameModes/Kolben/Data/Pokemon/330.dat - -#begin GameModes/Kolben/Data/Pokemon/331.dat -/copy:GameModes/Kolben/Data/Pokemon/331.dat - -#begin GameModes/Kolben/Data/Pokemon/332.dat -/copy:GameModes/Kolben/Data/Pokemon/332.dat - -#begin GameModes/Kolben/Data/Pokemon/333.dat -/copy:GameModes/Kolben/Data/Pokemon/333.dat - -#begin GameModes/Kolben/Data/Pokemon/334.dat -/copy:GameModes/Kolben/Data/Pokemon/334.dat - -#begin GameModes/Kolben/Data/Pokemon/335.dat -/copy:GameModes/Kolben/Data/Pokemon/335.dat - -#begin GameModes/Kolben/Data/Pokemon/336.dat -/copy:GameModes/Kolben/Data/Pokemon/336.dat - -#begin GameModes/Kolben/Data/Pokemon/337.dat -/copy:GameModes/Kolben/Data/Pokemon/337.dat - -#begin GameModes/Kolben/Data/Pokemon/338.dat -/copy:GameModes/Kolben/Data/Pokemon/338.dat - -#begin GameModes/Kolben/Data/Pokemon/339.dat -/copy:GameModes/Kolben/Data/Pokemon/339.dat - -#begin GameModes/Kolben/Data/Pokemon/34.dat -/copy:GameModes/Kolben/Data/Pokemon/34.dat - -#begin GameModes/Kolben/Data/Pokemon/340.dat -/copy:GameModes/Kolben/Data/Pokemon/340.dat - -#begin GameModes/Kolben/Data/Pokemon/341.dat -/copy:GameModes/Kolben/Data/Pokemon/341.dat - -#begin GameModes/Kolben/Data/Pokemon/342.dat -/copy:GameModes/Kolben/Data/Pokemon/342.dat - -#begin GameModes/Kolben/Data/Pokemon/343.dat -/copy:GameModes/Kolben/Data/Pokemon/343.dat - -#begin GameModes/Kolben/Data/Pokemon/344.dat -/copy:GameModes/Kolben/Data/Pokemon/344.dat - -#begin GameModes/Kolben/Data/Pokemon/345.dat -/copy:GameModes/Kolben/Data/Pokemon/345.dat - -#begin GameModes/Kolben/Data/Pokemon/346.dat -/copy:GameModes/Kolben/Data/Pokemon/346.dat - -#begin GameModes/Kolben/Data/Pokemon/347.dat -/copy:GameModes/Kolben/Data/Pokemon/347.dat - -#begin GameModes/Kolben/Data/Pokemon/348.dat -/copy:GameModes/Kolben/Data/Pokemon/348.dat - -#begin GameModes/Kolben/Data/Pokemon/349.dat -/copy:GameModes/Kolben/Data/Pokemon/349.dat - -#begin GameModes/Kolben/Data/Pokemon/35.dat -/copy:GameModes/Kolben/Data/Pokemon/35.dat - -#begin GameModes/Kolben/Data/Pokemon/350.dat -/copy:GameModes/Kolben/Data/Pokemon/350.dat - -#begin GameModes/Kolben/Data/Pokemon/351.dat -/copy:GameModes/Kolben/Data/Pokemon/351.dat - -#begin GameModes/Kolben/Data/Pokemon/352.dat -/copy:GameModes/Kolben/Data/Pokemon/352.dat - -#begin GameModes/Kolben/Data/Pokemon/353.dat -/copy:GameModes/Kolben/Data/Pokemon/353.dat - -#begin GameModes/Kolben/Data/Pokemon/354.dat -/copy:GameModes/Kolben/Data/Pokemon/354.dat - -#begin GameModes/Kolben/Data/Pokemon/355.dat -/copy:GameModes/Kolben/Data/Pokemon/355.dat - -#begin GameModes/Kolben/Data/Pokemon/356.dat -/copy:GameModes/Kolben/Data/Pokemon/356.dat - -#begin GameModes/Kolben/Data/Pokemon/357.dat -/copy:GameModes/Kolben/Data/Pokemon/357.dat - -#begin GameModes/Kolben/Data/Pokemon/358.dat -/copy:GameModes/Kolben/Data/Pokemon/358.dat - -#begin GameModes/Kolben/Data/Pokemon/359.dat -/copy:GameModes/Kolben/Data/Pokemon/359.dat - -#begin GameModes/Kolben/Data/Pokemon/36.dat -/copy:GameModes/Kolben/Data/Pokemon/36.dat - -#begin GameModes/Kolben/Data/Pokemon/360.dat -/copy:GameModes/Kolben/Data/Pokemon/360.dat - -#begin GameModes/Kolben/Data/Pokemon/361.dat -/copy:GameModes/Kolben/Data/Pokemon/361.dat - -#begin GameModes/Kolben/Data/Pokemon/362.dat -/copy:GameModes/Kolben/Data/Pokemon/362.dat - -#begin GameModes/Kolben/Data/Pokemon/363.dat -/copy:GameModes/Kolben/Data/Pokemon/363.dat - -#begin GameModes/Kolben/Data/Pokemon/364.dat -/copy:GameModes/Kolben/Data/Pokemon/364.dat - -#begin GameModes/Kolben/Data/Pokemon/365.dat -/copy:GameModes/Kolben/Data/Pokemon/365.dat - -#begin GameModes/Kolben/Data/Pokemon/366.dat -/copy:GameModes/Kolben/Data/Pokemon/366.dat - -#begin GameModes/Kolben/Data/Pokemon/367.dat -/copy:GameModes/Kolben/Data/Pokemon/367.dat - -#begin GameModes/Kolben/Data/Pokemon/368.dat -/copy:GameModes/Kolben/Data/Pokemon/368.dat - -#begin GameModes/Kolben/Data/Pokemon/369.dat -/copy:GameModes/Kolben/Data/Pokemon/369.dat - -#begin GameModes/Kolben/Data/Pokemon/37.dat -/copy:GameModes/Kolben/Data/Pokemon/37.dat - -#begin GameModes/Kolben/Data/Pokemon/370.dat -/copy:GameModes/Kolben/Data/Pokemon/370.dat - -#begin GameModes/Kolben/Data/Pokemon/371.dat -/copy:GameModes/Kolben/Data/Pokemon/371.dat - -#begin GameModes/Kolben/Data/Pokemon/372.dat -/copy:GameModes/Kolben/Data/Pokemon/372.dat - -#begin GameModes/Kolben/Data/Pokemon/373.dat -/copy:GameModes/Kolben/Data/Pokemon/373.dat - -#begin GameModes/Kolben/Data/Pokemon/374.dat -/copy:GameModes/Kolben/Data/Pokemon/374.dat - -#begin GameModes/Kolben/Data/Pokemon/375.dat -/copy:GameModes/Kolben/Data/Pokemon/375.dat - -#begin GameModes/Kolben/Data/Pokemon/376.dat -/copy:GameModes/Kolben/Data/Pokemon/376.dat - -#begin GameModes/Kolben/Data/Pokemon/377.dat -/copy:GameModes/Kolben/Data/Pokemon/377.dat - -#begin GameModes/Kolben/Data/Pokemon/378.dat -/copy:GameModes/Kolben/Data/Pokemon/378.dat - -#begin GameModes/Kolben/Data/Pokemon/379.dat -/copy:GameModes/Kolben/Data/Pokemon/379.dat - -#begin GameModes/Kolben/Data/Pokemon/38.dat -/copy:GameModes/Kolben/Data/Pokemon/38.dat - -#begin GameModes/Kolben/Data/Pokemon/380.dat -/copy:GameModes/Kolben/Data/Pokemon/380.dat - -#begin GameModes/Kolben/Data/Pokemon/381.dat -/copy:GameModes/Kolben/Data/Pokemon/381.dat - -#begin GameModes/Kolben/Data/Pokemon/382.dat -/copy:GameModes/Kolben/Data/Pokemon/382.dat - -#begin GameModes/Kolben/Data/Pokemon/383.dat -/copy:GameModes/Kolben/Data/Pokemon/383.dat - -#begin GameModes/Kolben/Data/Pokemon/384.dat -/copy:GameModes/Kolben/Data/Pokemon/384.dat - -#begin GameModes/Kolben/Data/Pokemon/385.dat -/copy:GameModes/Kolben/Data/Pokemon/385.dat - -#begin GameModes/Kolben/Data/Pokemon/386.dat -/copy:GameModes/Kolben/Data/Pokemon/386.dat - -#begin GameModes/Kolben/Data/Pokemon/386_attack.dat -/copy:GameModes/Kolben/Data/Pokemon/386_attack.dat - -#begin GameModes/Kolben/Data/Pokemon/386_defense.dat -/copy:GameModes/Kolben/Data/Pokemon/386_defense.dat - -#begin GameModes/Kolben/Data/Pokemon/386_speed.dat -/copy:GameModes/Kolben/Data/Pokemon/386_speed.dat - -#begin GameModes/Kolben/Data/Pokemon/387.dat -/copy:GameModes/Kolben/Data/Pokemon/387.dat - -#begin GameModes/Kolben/Data/Pokemon/388.dat -/copy:GameModes/Kolben/Data/Pokemon/388.dat - -#begin GameModes/Kolben/Data/Pokemon/389.dat -/copy:GameModes/Kolben/Data/Pokemon/389.dat - -#begin GameModes/Kolben/Data/Pokemon/39.dat -/copy:GameModes/Kolben/Data/Pokemon/39.dat - -#begin GameModes/Kolben/Data/Pokemon/390.dat -/copy:GameModes/Kolben/Data/Pokemon/390.dat - -#begin GameModes/Kolben/Data/Pokemon/391.dat -/copy:GameModes/Kolben/Data/Pokemon/391.dat - -#begin GameModes/Kolben/Data/Pokemon/392.dat -/copy:GameModes/Kolben/Data/Pokemon/392.dat - -#begin GameModes/Kolben/Data/Pokemon/393.dat -/copy:GameModes/Kolben/Data/Pokemon/393.dat - -#begin GameModes/Kolben/Data/Pokemon/394.dat -/copy:GameModes/Kolben/Data/Pokemon/394.dat - -#begin GameModes/Kolben/Data/Pokemon/395.dat -/copy:GameModes/Kolben/Data/Pokemon/395.dat - -#begin GameModes/Kolben/Data/Pokemon/396.dat -/copy:GameModes/Kolben/Data/Pokemon/396.dat - -#begin GameModes/Kolben/Data/Pokemon/397.dat -/copy:GameModes/Kolben/Data/Pokemon/397.dat - -#begin GameModes/Kolben/Data/Pokemon/398.dat -/copy:GameModes/Kolben/Data/Pokemon/398.dat - -#begin GameModes/Kolben/Data/Pokemon/399.dat -/copy:GameModes/Kolben/Data/Pokemon/399.dat - -#begin GameModes/Kolben/Data/Pokemon/4.dat -/copy:GameModes/Kolben/Data/Pokemon/4.dat - -#begin GameModes/Kolben/Data/Pokemon/40.dat -/copy:GameModes/Kolben/Data/Pokemon/40.dat - -#begin GameModes/Kolben/Data/Pokemon/400.dat -/copy:GameModes/Kolben/Data/Pokemon/400.dat - -#begin GameModes/Kolben/Data/Pokemon/401.dat -/copy:GameModes/Kolben/Data/Pokemon/401.dat - -#begin GameModes/Kolben/Data/Pokemon/402.dat -/copy:GameModes/Kolben/Data/Pokemon/402.dat - -#begin GameModes/Kolben/Data/Pokemon/403.dat -/copy:GameModes/Kolben/Data/Pokemon/403.dat - -#begin GameModes/Kolben/Data/Pokemon/404.dat -/copy:GameModes/Kolben/Data/Pokemon/404.dat - -#begin GameModes/Kolben/Data/Pokemon/405.dat -/copy:GameModes/Kolben/Data/Pokemon/405.dat - -#begin GameModes/Kolben/Data/Pokemon/406.dat -/copy:GameModes/Kolben/Data/Pokemon/406.dat - -#begin GameModes/Kolben/Data/Pokemon/407.dat -/copy:GameModes/Kolben/Data/Pokemon/407.dat - -#begin GameModes/Kolben/Data/Pokemon/408.dat -/copy:GameModes/Kolben/Data/Pokemon/408.dat - -#begin GameModes/Kolben/Data/Pokemon/409.dat -/copy:GameModes/Kolben/Data/Pokemon/409.dat - -#begin GameModes/Kolben/Data/Pokemon/41.dat -/copy:GameModes/Kolben/Data/Pokemon/41.dat - -#begin GameModes/Kolben/Data/Pokemon/410.dat -/copy:GameModes/Kolben/Data/Pokemon/410.dat - -#begin GameModes/Kolben/Data/Pokemon/411.dat -/copy:GameModes/Kolben/Data/Pokemon/411.dat - -#begin GameModes/Kolben/Data/Pokemon/412.dat -/copy:GameModes/Kolben/Data/Pokemon/412.dat - -#begin GameModes/Kolben/Data/Pokemon/413.dat -/copy:GameModes/Kolben/Data/Pokemon/413.dat - -#begin GameModes/Kolben/Data/Pokemon/413_sandy.dat -/copy:GameModes/Kolben/Data/Pokemon/413_sandy.dat - -#begin GameModes/Kolben/Data/Pokemon/413_trash.dat -/copy:GameModes/Kolben/Data/Pokemon/413_trash.dat - -#begin GameModes/Kolben/Data/Pokemon/414.dat -/copy:GameModes/Kolben/Data/Pokemon/414.dat - -#begin GameModes/Kolben/Data/Pokemon/415.dat -/copy:GameModes/Kolben/Data/Pokemon/415.dat - -#begin GameModes/Kolben/Data/Pokemon/416.dat -/copy:GameModes/Kolben/Data/Pokemon/416.dat - -#begin GameModes/Kolben/Data/Pokemon/417.dat -/copy:GameModes/Kolben/Data/Pokemon/417.dat - -#begin GameModes/Kolben/Data/Pokemon/418.dat -/copy:GameModes/Kolben/Data/Pokemon/418.dat - -#begin GameModes/Kolben/Data/Pokemon/419.dat -/copy:GameModes/Kolben/Data/Pokemon/419.dat - -#begin GameModes/Kolben/Data/Pokemon/42.dat -/copy:GameModes/Kolben/Data/Pokemon/42.dat - -#begin GameModes/Kolben/Data/Pokemon/420.dat -/copy:GameModes/Kolben/Data/Pokemon/420.dat - -#begin GameModes/Kolben/Data/Pokemon/421.dat -/copy:GameModes/Kolben/Data/Pokemon/421.dat - -#begin GameModes/Kolben/Data/Pokemon/422.dat -/copy:GameModes/Kolben/Data/Pokemon/422.dat - -#begin GameModes/Kolben/Data/Pokemon/423.dat -/copy:GameModes/Kolben/Data/Pokemon/423.dat - -#begin GameModes/Kolben/Data/Pokemon/424.dat -/copy:GameModes/Kolben/Data/Pokemon/424.dat - -#begin GameModes/Kolben/Data/Pokemon/425.dat -/copy:GameModes/Kolben/Data/Pokemon/425.dat - -#begin GameModes/Kolben/Data/Pokemon/426.dat -/copy:GameModes/Kolben/Data/Pokemon/426.dat - -#begin GameModes/Kolben/Data/Pokemon/427.dat -/copy:GameModes/Kolben/Data/Pokemon/427.dat - -#begin GameModes/Kolben/Data/Pokemon/428.dat -/copy:GameModes/Kolben/Data/Pokemon/428.dat - -#begin GameModes/Kolben/Data/Pokemon/429.dat -/copy:GameModes/Kolben/Data/Pokemon/429.dat - -#begin GameModes/Kolben/Data/Pokemon/43.dat -/copy:GameModes/Kolben/Data/Pokemon/43.dat - -#begin GameModes/Kolben/Data/Pokemon/430.dat -/copy:GameModes/Kolben/Data/Pokemon/430.dat - -#begin GameModes/Kolben/Data/Pokemon/431.dat -/copy:GameModes/Kolben/Data/Pokemon/431.dat - -#begin GameModes/Kolben/Data/Pokemon/432.dat -/copy:GameModes/Kolben/Data/Pokemon/432.dat - -#begin GameModes/Kolben/Data/Pokemon/433.dat -/copy:GameModes/Kolben/Data/Pokemon/433.dat - -#begin GameModes/Kolben/Data/Pokemon/434.dat -/copy:GameModes/Kolben/Data/Pokemon/434.dat - -#begin GameModes/Kolben/Data/Pokemon/435.dat -/copy:GameModes/Kolben/Data/Pokemon/435.dat - -#begin GameModes/Kolben/Data/Pokemon/436.dat -/copy:GameModes/Kolben/Data/Pokemon/436.dat - -#begin GameModes/Kolben/Data/Pokemon/437.dat -/copy:GameModes/Kolben/Data/Pokemon/437.dat - -#begin GameModes/Kolben/Data/Pokemon/438.dat -/copy:GameModes/Kolben/Data/Pokemon/438.dat - -#begin GameModes/Kolben/Data/Pokemon/439.dat -/copy:GameModes/Kolben/Data/Pokemon/439.dat - -#begin GameModes/Kolben/Data/Pokemon/44.dat -/copy:GameModes/Kolben/Data/Pokemon/44.dat - -#begin GameModes/Kolben/Data/Pokemon/440.dat -/copy:GameModes/Kolben/Data/Pokemon/440.dat - -#begin GameModes/Kolben/Data/Pokemon/441.dat -/copy:GameModes/Kolben/Data/Pokemon/441.dat - -#begin GameModes/Kolben/Data/Pokemon/442.dat -/copy:GameModes/Kolben/Data/Pokemon/442.dat - -#begin GameModes/Kolben/Data/Pokemon/443.dat -/copy:GameModes/Kolben/Data/Pokemon/443.dat - -#begin GameModes/Kolben/Data/Pokemon/444.dat -/copy:GameModes/Kolben/Data/Pokemon/444.dat - -#begin GameModes/Kolben/Data/Pokemon/445.dat -/copy:GameModes/Kolben/Data/Pokemon/445.dat - -#begin GameModes/Kolben/Data/Pokemon/446.dat -/copy:GameModes/Kolben/Data/Pokemon/446.dat - -#begin GameModes/Kolben/Data/Pokemon/447.dat -/copy:GameModes/Kolben/Data/Pokemon/447.dat - -#begin GameModes/Kolben/Data/Pokemon/448.dat -/copy:GameModes/Kolben/Data/Pokemon/448.dat - -#begin GameModes/Kolben/Data/Pokemon/449.dat -/copy:GameModes/Kolben/Data/Pokemon/449.dat - -#begin GameModes/Kolben/Data/Pokemon/45.dat -/copy:GameModes/Kolben/Data/Pokemon/45.dat - -#begin GameModes/Kolben/Data/Pokemon/450.dat -/copy:GameModes/Kolben/Data/Pokemon/450.dat - -#begin GameModes/Kolben/Data/Pokemon/451.dat -/copy:GameModes/Kolben/Data/Pokemon/451.dat - -#begin GameModes/Kolben/Data/Pokemon/452.dat -/copy:GameModes/Kolben/Data/Pokemon/452.dat - -#begin GameModes/Kolben/Data/Pokemon/453.dat -/copy:GameModes/Kolben/Data/Pokemon/453.dat - -#begin GameModes/Kolben/Data/Pokemon/454.dat -/copy:GameModes/Kolben/Data/Pokemon/454.dat - -#begin GameModes/Kolben/Data/Pokemon/455.dat -/copy:GameModes/Kolben/Data/Pokemon/455.dat - -#begin GameModes/Kolben/Data/Pokemon/456.dat -/copy:GameModes/Kolben/Data/Pokemon/456.dat - -#begin GameModes/Kolben/Data/Pokemon/457.dat -/copy:GameModes/Kolben/Data/Pokemon/457.dat - -#begin GameModes/Kolben/Data/Pokemon/458.dat -/copy:GameModes/Kolben/Data/Pokemon/458.dat - -#begin GameModes/Kolben/Data/Pokemon/459.dat -/copy:GameModes/Kolben/Data/Pokemon/459.dat - -#begin GameModes/Kolben/Data/Pokemon/46.dat -/copy:GameModes/Kolben/Data/Pokemon/46.dat - -#begin GameModes/Kolben/Data/Pokemon/460.dat -/copy:GameModes/Kolben/Data/Pokemon/460.dat - -#begin GameModes/Kolben/Data/Pokemon/461.dat -/copy:GameModes/Kolben/Data/Pokemon/461.dat - -#begin GameModes/Kolben/Data/Pokemon/462.dat -/copy:GameModes/Kolben/Data/Pokemon/462.dat - -#begin GameModes/Kolben/Data/Pokemon/463.dat -/copy:GameModes/Kolben/Data/Pokemon/463.dat - -#begin GameModes/Kolben/Data/Pokemon/464.dat -/copy:GameModes/Kolben/Data/Pokemon/464.dat - -#begin GameModes/Kolben/Data/Pokemon/465.dat -/copy:GameModes/Kolben/Data/Pokemon/465.dat - -#begin GameModes/Kolben/Data/Pokemon/466.dat -/copy:GameModes/Kolben/Data/Pokemon/466.dat - -#begin GameModes/Kolben/Data/Pokemon/467.dat -/copy:GameModes/Kolben/Data/Pokemon/467.dat - -#begin GameModes/Kolben/Data/Pokemon/468.dat -/copy:GameModes/Kolben/Data/Pokemon/468.dat - -#begin GameModes/Kolben/Data/Pokemon/469.dat -/copy:GameModes/Kolben/Data/Pokemon/469.dat - -#begin GameModes/Kolben/Data/Pokemon/47.dat -/copy:GameModes/Kolben/Data/Pokemon/47.dat - -#begin GameModes/Kolben/Data/Pokemon/470.dat -/copy:GameModes/Kolben/Data/Pokemon/470.dat - -#begin GameModes/Kolben/Data/Pokemon/471.dat -/copy:GameModes/Kolben/Data/Pokemon/471.dat - -#begin GameModes/Kolben/Data/Pokemon/472.dat -/copy:GameModes/Kolben/Data/Pokemon/472.dat - -#begin GameModes/Kolben/Data/Pokemon/473.dat -/copy:GameModes/Kolben/Data/Pokemon/473.dat - -#begin GameModes/Kolben/Data/Pokemon/474.dat -/copy:GameModes/Kolben/Data/Pokemon/474.dat - -#begin GameModes/Kolben/Data/Pokemon/475.dat -/copy:GameModes/Kolben/Data/Pokemon/475.dat - -#begin GameModes/Kolben/Data/Pokemon/476.dat -/copy:GameModes/Kolben/Data/Pokemon/476.dat - -#begin GameModes/Kolben/Data/Pokemon/477.dat -/copy:GameModes/Kolben/Data/Pokemon/477.dat - -#begin GameModes/Kolben/Data/Pokemon/478.dat -/copy:GameModes/Kolben/Data/Pokemon/478.dat - -#begin GameModes/Kolben/Data/Pokemon/479.dat -/copy:GameModes/Kolben/Data/Pokemon/479.dat - -#begin GameModes/Kolben/Data/Pokemon/479_fan.dat -/copy:GameModes/Kolben/Data/Pokemon/479_fan.dat - -#begin GameModes/Kolben/Data/Pokemon/479_frost.dat -/copy:GameModes/Kolben/Data/Pokemon/479_frost.dat - -#begin GameModes/Kolben/Data/Pokemon/479_heat.dat -/copy:GameModes/Kolben/Data/Pokemon/479_heat.dat - -#begin GameModes/Kolben/Data/Pokemon/479_mow.dat -/copy:GameModes/Kolben/Data/Pokemon/479_mow.dat - -#begin GameModes/Kolben/Data/Pokemon/479_wash.dat -/copy:GameModes/Kolben/Data/Pokemon/479_wash.dat - -#begin GameModes/Kolben/Data/Pokemon/48.dat -/copy:GameModes/Kolben/Data/Pokemon/48.dat - -#begin GameModes/Kolben/Data/Pokemon/480.dat -/copy:GameModes/Kolben/Data/Pokemon/480.dat - -#begin GameModes/Kolben/Data/Pokemon/481.dat -/copy:GameModes/Kolben/Data/Pokemon/481.dat - -#begin GameModes/Kolben/Data/Pokemon/482.dat -/copy:GameModes/Kolben/Data/Pokemon/482.dat - -#begin GameModes/Kolben/Data/Pokemon/483.dat -/copy:GameModes/Kolben/Data/Pokemon/483.dat - -#begin GameModes/Kolben/Data/Pokemon/484.dat -/copy:GameModes/Kolben/Data/Pokemon/484.dat - -#begin GameModes/Kolben/Data/Pokemon/485.dat -/copy:GameModes/Kolben/Data/Pokemon/485.dat - -#begin GameModes/Kolben/Data/Pokemon/486.dat -/copy:GameModes/Kolben/Data/Pokemon/486.dat - -#begin GameModes/Kolben/Data/Pokemon/487.dat -/copy:GameModes/Kolben/Data/Pokemon/487.dat - -#begin GameModes/Kolben/Data/Pokemon/487_origin.dat -/copy:GameModes/Kolben/Data/Pokemon/487_origin.dat - -#begin GameModes/Kolben/Data/Pokemon/488.dat -/copy:GameModes/Kolben/Data/Pokemon/488.dat - -#begin GameModes/Kolben/Data/Pokemon/489.dat -/copy:GameModes/Kolben/Data/Pokemon/489.dat - -#begin GameModes/Kolben/Data/Pokemon/49.dat -/copy:GameModes/Kolben/Data/Pokemon/49.dat - -#begin GameModes/Kolben/Data/Pokemon/490.dat -/copy:GameModes/Kolben/Data/Pokemon/490.dat - -#begin GameModes/Kolben/Data/Pokemon/491.dat -/copy:GameModes/Kolben/Data/Pokemon/491.dat - -#begin GameModes/Kolben/Data/Pokemon/492.dat -/copy:GameModes/Kolben/Data/Pokemon/492.dat - -#begin GameModes/Kolben/Data/Pokemon/492_sky.dat -/copy:GameModes/Kolben/Data/Pokemon/492_sky.dat - -#begin GameModes/Kolben/Data/Pokemon/493.dat -/copy:GameModes/Kolben/Data/Pokemon/493.dat - -#begin GameModes/Kolben/Data/Pokemon/494.dat -/copy:GameModes/Kolben/Data/Pokemon/494.dat - -#begin GameModes/Kolben/Data/Pokemon/495.dat -/copy:GameModes/Kolben/Data/Pokemon/495.dat - -#begin GameModes/Kolben/Data/Pokemon/496.dat -/copy:GameModes/Kolben/Data/Pokemon/496.dat - -#begin GameModes/Kolben/Data/Pokemon/497.dat -/copy:GameModes/Kolben/Data/Pokemon/497.dat - -#begin GameModes/Kolben/Data/Pokemon/498.dat -/copy:GameModes/Kolben/Data/Pokemon/498.dat - -#begin GameModes/Kolben/Data/Pokemon/499.dat -/copy:GameModes/Kolben/Data/Pokemon/499.dat - -#begin GameModes/Kolben/Data/Pokemon/5.dat -/copy:GameModes/Kolben/Data/Pokemon/5.dat - -#begin GameModes/Kolben/Data/Pokemon/50.dat -/copy:GameModes/Kolben/Data/Pokemon/50.dat - -#begin GameModes/Kolben/Data/Pokemon/500.dat -/copy:GameModes/Kolben/Data/Pokemon/500.dat - -#begin GameModes/Kolben/Data/Pokemon/501.dat -/copy:GameModes/Kolben/Data/Pokemon/501.dat - -#begin GameModes/Kolben/Data/Pokemon/502.dat -/copy:GameModes/Kolben/Data/Pokemon/502.dat - -#begin GameModes/Kolben/Data/Pokemon/503.dat -/copy:GameModes/Kolben/Data/Pokemon/503.dat - -#begin GameModes/Kolben/Data/Pokemon/504.dat -/copy:GameModes/Kolben/Data/Pokemon/504.dat - -#begin GameModes/Kolben/Data/Pokemon/505.dat -/copy:GameModes/Kolben/Data/Pokemon/505.dat - -#begin GameModes/Kolben/Data/Pokemon/506.dat -/copy:GameModes/Kolben/Data/Pokemon/506.dat - -#begin GameModes/Kolben/Data/Pokemon/507.dat -/copy:GameModes/Kolben/Data/Pokemon/507.dat - -#begin GameModes/Kolben/Data/Pokemon/508.dat -/copy:GameModes/Kolben/Data/Pokemon/508.dat - -#begin GameModes/Kolben/Data/Pokemon/509.dat -/copy:GameModes/Kolben/Data/Pokemon/509.dat - -#begin GameModes/Kolben/Data/Pokemon/51.dat -/copy:GameModes/Kolben/Data/Pokemon/51.dat - -#begin GameModes/Kolben/Data/Pokemon/510.dat -/copy:GameModes/Kolben/Data/Pokemon/510.dat - -#begin GameModes/Kolben/Data/Pokemon/511.dat -/copy:GameModes/Kolben/Data/Pokemon/511.dat - -#begin GameModes/Kolben/Data/Pokemon/512.dat -/copy:GameModes/Kolben/Data/Pokemon/512.dat - -#begin GameModes/Kolben/Data/Pokemon/513.dat -/copy:GameModes/Kolben/Data/Pokemon/513.dat - -#begin GameModes/Kolben/Data/Pokemon/514.dat -/copy:GameModes/Kolben/Data/Pokemon/514.dat - -#begin GameModes/Kolben/Data/Pokemon/515.dat -/copy:GameModes/Kolben/Data/Pokemon/515.dat - -#begin GameModes/Kolben/Data/Pokemon/516.dat -/copy:GameModes/Kolben/Data/Pokemon/516.dat - -#begin GameModes/Kolben/Data/Pokemon/517.dat -/copy:GameModes/Kolben/Data/Pokemon/517.dat - -#begin GameModes/Kolben/Data/Pokemon/518.dat -/copy:GameModes/Kolben/Data/Pokemon/518.dat - -#begin GameModes/Kolben/Data/Pokemon/519.dat -/copy:GameModes/Kolben/Data/Pokemon/519.dat - -#begin GameModes/Kolben/Data/Pokemon/52.dat -/copy:GameModes/Kolben/Data/Pokemon/52.dat - -#begin GameModes/Kolben/Data/Pokemon/520.dat -/copy:GameModes/Kolben/Data/Pokemon/520.dat - -#begin GameModes/Kolben/Data/Pokemon/521.dat -/copy:GameModes/Kolben/Data/Pokemon/521.dat - -#begin GameModes/Kolben/Data/Pokemon/522.dat -/copy:GameModes/Kolben/Data/Pokemon/522.dat - -#begin GameModes/Kolben/Data/Pokemon/523.dat -/copy:GameModes/Kolben/Data/Pokemon/523.dat - -#begin GameModes/Kolben/Data/Pokemon/524.dat -/copy:GameModes/Kolben/Data/Pokemon/524.dat - -#begin GameModes/Kolben/Data/Pokemon/525.dat -/copy:GameModes/Kolben/Data/Pokemon/525.dat - -#begin GameModes/Kolben/Data/Pokemon/526.dat -/copy:GameModes/Kolben/Data/Pokemon/526.dat - -#begin GameModes/Kolben/Data/Pokemon/527.dat -/copy:GameModes/Kolben/Data/Pokemon/527.dat - -#begin GameModes/Kolben/Data/Pokemon/528.dat -/copy:GameModes/Kolben/Data/Pokemon/528.dat - -#begin GameModes/Kolben/Data/Pokemon/529.dat -/copy:GameModes/Kolben/Data/Pokemon/529.dat - -#begin GameModes/Kolben/Data/Pokemon/53.dat -/copy:GameModes/Kolben/Data/Pokemon/53.dat - -#begin GameModes/Kolben/Data/Pokemon/530.dat -/copy:GameModes/Kolben/Data/Pokemon/530.dat - -#begin GameModes/Kolben/Data/Pokemon/531.dat -/copy:GameModes/Kolben/Data/Pokemon/531.dat - -#begin GameModes/Kolben/Data/Pokemon/532.dat -/copy:GameModes/Kolben/Data/Pokemon/532.dat - -#begin GameModes/Kolben/Data/Pokemon/533.dat -/copy:GameModes/Kolben/Data/Pokemon/533.dat - -#begin GameModes/Kolben/Data/Pokemon/534.dat -/copy:GameModes/Kolben/Data/Pokemon/534.dat - -#begin GameModes/Kolben/Data/Pokemon/535.dat -/copy:GameModes/Kolben/Data/Pokemon/535.dat - -#begin GameModes/Kolben/Data/Pokemon/536.dat -/copy:GameModes/Kolben/Data/Pokemon/536.dat - -#begin GameModes/Kolben/Data/Pokemon/537.dat -/copy:GameModes/Kolben/Data/Pokemon/537.dat - -#begin GameModes/Kolben/Data/Pokemon/538.dat -/copy:GameModes/Kolben/Data/Pokemon/538.dat - -#begin GameModes/Kolben/Data/Pokemon/539.dat -/copy:GameModes/Kolben/Data/Pokemon/539.dat - -#begin GameModes/Kolben/Data/Pokemon/54.dat -/copy:GameModes/Kolben/Data/Pokemon/54.dat - -#begin GameModes/Kolben/Data/Pokemon/540.dat -/copy:GameModes/Kolben/Data/Pokemon/540.dat - -#begin GameModes/Kolben/Data/Pokemon/541.dat -/copy:GameModes/Kolben/Data/Pokemon/541.dat - -#begin GameModes/Kolben/Data/Pokemon/542.dat -/copy:GameModes/Kolben/Data/Pokemon/542.dat - -#begin GameModes/Kolben/Data/Pokemon/543.dat -/copy:GameModes/Kolben/Data/Pokemon/543.dat - -#begin GameModes/Kolben/Data/Pokemon/544.dat -/copy:GameModes/Kolben/Data/Pokemon/544.dat - -#begin GameModes/Kolben/Data/Pokemon/545.dat -/copy:GameModes/Kolben/Data/Pokemon/545.dat - -#begin GameModes/Kolben/Data/Pokemon/546.dat -/copy:GameModes/Kolben/Data/Pokemon/546.dat - -#begin GameModes/Kolben/Data/Pokemon/547.dat -/copy:GameModes/Kolben/Data/Pokemon/547.dat - -#begin GameModes/Kolben/Data/Pokemon/548.dat -/copy:GameModes/Kolben/Data/Pokemon/548.dat - -#begin GameModes/Kolben/Data/Pokemon/549.dat -/copy:GameModes/Kolben/Data/Pokemon/549.dat - -#begin GameModes/Kolben/Data/Pokemon/55.dat -/copy:GameModes/Kolben/Data/Pokemon/55.dat - -#begin GameModes/Kolben/Data/Pokemon/550.dat -/copy:GameModes/Kolben/Data/Pokemon/550.dat - -#begin GameModes/Kolben/Data/Pokemon/550_blue.dat -/copy:GameModes/Kolben/Data/Pokemon/550_blue.dat - -#begin GameModes/Kolben/Data/Pokemon/551.dat -/copy:GameModes/Kolben/Data/Pokemon/551.dat - -#begin GameModes/Kolben/Data/Pokemon/552.dat -/copy:GameModes/Kolben/Data/Pokemon/552.dat - -#begin GameModes/Kolben/Data/Pokemon/553.dat -/copy:GameModes/Kolben/Data/Pokemon/553.dat - -#begin GameModes/Kolben/Data/Pokemon/554.dat -/copy:GameModes/Kolben/Data/Pokemon/554.dat - -#begin GameModes/Kolben/Data/Pokemon/555.dat -/copy:GameModes/Kolben/Data/Pokemon/555.dat - -#begin GameModes/Kolben/Data/Pokemon/555_zen.dat -/copy:GameModes/Kolben/Data/Pokemon/555_zen.dat - -#begin GameModes/Kolben/Data/Pokemon/556.dat -/copy:GameModes/Kolben/Data/Pokemon/556.dat - -#begin GameModes/Kolben/Data/Pokemon/557.dat -/copy:GameModes/Kolben/Data/Pokemon/557.dat - -#begin GameModes/Kolben/Data/Pokemon/558.dat -/copy:GameModes/Kolben/Data/Pokemon/558.dat - -#begin GameModes/Kolben/Data/Pokemon/559.dat -/copy:GameModes/Kolben/Data/Pokemon/559.dat - -#begin GameModes/Kolben/Data/Pokemon/56.dat -/copy:GameModes/Kolben/Data/Pokemon/56.dat - -#begin GameModes/Kolben/Data/Pokemon/560.dat -/copy:GameModes/Kolben/Data/Pokemon/560.dat - -#begin GameModes/Kolben/Data/Pokemon/561.dat -/copy:GameModes/Kolben/Data/Pokemon/561.dat - -#begin GameModes/Kolben/Data/Pokemon/562.dat -/copy:GameModes/Kolben/Data/Pokemon/562.dat - -#begin GameModes/Kolben/Data/Pokemon/563.dat -/copy:GameModes/Kolben/Data/Pokemon/563.dat - -#begin GameModes/Kolben/Data/Pokemon/564.dat -/copy:GameModes/Kolben/Data/Pokemon/564.dat - -#begin GameModes/Kolben/Data/Pokemon/565.dat -/copy:GameModes/Kolben/Data/Pokemon/565.dat - -#begin GameModes/Kolben/Data/Pokemon/566.dat -/copy:GameModes/Kolben/Data/Pokemon/566.dat - -#begin GameModes/Kolben/Data/Pokemon/567.dat -/copy:GameModes/Kolben/Data/Pokemon/567.dat - -#begin GameModes/Kolben/Data/Pokemon/568.dat -/copy:GameModes/Kolben/Data/Pokemon/568.dat - -#begin GameModes/Kolben/Data/Pokemon/569.dat -/copy:GameModes/Kolben/Data/Pokemon/569.dat - -#begin GameModes/Kolben/Data/Pokemon/57.dat -/copy:GameModes/Kolben/Data/Pokemon/57.dat - -#begin GameModes/Kolben/Data/Pokemon/570.dat -/copy:GameModes/Kolben/Data/Pokemon/570.dat - -#begin GameModes/Kolben/Data/Pokemon/571.dat -/copy:GameModes/Kolben/Data/Pokemon/571.dat - -#begin GameModes/Kolben/Data/Pokemon/572.dat -/copy:GameModes/Kolben/Data/Pokemon/572.dat - -#begin GameModes/Kolben/Data/Pokemon/573.dat -/copy:GameModes/Kolben/Data/Pokemon/573.dat - -#begin GameModes/Kolben/Data/Pokemon/574.dat -/copy:GameModes/Kolben/Data/Pokemon/574.dat - -#begin GameModes/Kolben/Data/Pokemon/575.dat -/copy:GameModes/Kolben/Data/Pokemon/575.dat - -#begin GameModes/Kolben/Data/Pokemon/576.dat -/copy:GameModes/Kolben/Data/Pokemon/576.dat - -#begin GameModes/Kolben/Data/Pokemon/577.dat -/copy:GameModes/Kolben/Data/Pokemon/577.dat - -#begin GameModes/Kolben/Data/Pokemon/578.dat -/copy:GameModes/Kolben/Data/Pokemon/578.dat - -#begin GameModes/Kolben/Data/Pokemon/579.dat -/copy:GameModes/Kolben/Data/Pokemon/579.dat - -#begin GameModes/Kolben/Data/Pokemon/58.dat -/copy:GameModes/Kolben/Data/Pokemon/58.dat - -#begin GameModes/Kolben/Data/Pokemon/580.dat -/copy:GameModes/Kolben/Data/Pokemon/580.dat - -#begin GameModes/Kolben/Data/Pokemon/581.dat -/copy:GameModes/Kolben/Data/Pokemon/581.dat - -#begin GameModes/Kolben/Data/Pokemon/582.dat -/copy:GameModes/Kolben/Data/Pokemon/582.dat - -#begin GameModes/Kolben/Data/Pokemon/583.dat -/copy:GameModes/Kolben/Data/Pokemon/583.dat - -#begin GameModes/Kolben/Data/Pokemon/584.dat -/copy:GameModes/Kolben/Data/Pokemon/584.dat - -#begin GameModes/Kolben/Data/Pokemon/585.dat -/copy:GameModes/Kolben/Data/Pokemon/585.dat - -#begin GameModes/Kolben/Data/Pokemon/586.dat -/copy:GameModes/Kolben/Data/Pokemon/586.dat - -#begin GameModes/Kolben/Data/Pokemon/587.dat -/copy:GameModes/Kolben/Data/Pokemon/587.dat - -#begin GameModes/Kolben/Data/Pokemon/588.dat -/copy:GameModes/Kolben/Data/Pokemon/588.dat - -#begin GameModes/Kolben/Data/Pokemon/589.dat -/copy:GameModes/Kolben/Data/Pokemon/589.dat - -#begin GameModes/Kolben/Data/Pokemon/59.dat -/copy:GameModes/Kolben/Data/Pokemon/59.dat - -#begin GameModes/Kolben/Data/Pokemon/590.dat -/copy:GameModes/Kolben/Data/Pokemon/590.dat - -#begin GameModes/Kolben/Data/Pokemon/591.dat -/copy:GameModes/Kolben/Data/Pokemon/591.dat - -#begin GameModes/Kolben/Data/Pokemon/592.dat -/copy:GameModes/Kolben/Data/Pokemon/592.dat - -#begin GameModes/Kolben/Data/Pokemon/593.dat -/copy:GameModes/Kolben/Data/Pokemon/593.dat - -#begin GameModes/Kolben/Data/Pokemon/594.dat -/copy:GameModes/Kolben/Data/Pokemon/594.dat - -#begin GameModes/Kolben/Data/Pokemon/595.dat -/copy:GameModes/Kolben/Data/Pokemon/595.dat - -#begin GameModes/Kolben/Data/Pokemon/596.dat -/copy:GameModes/Kolben/Data/Pokemon/596.dat - -#begin GameModes/Kolben/Data/Pokemon/597.dat -/copy:GameModes/Kolben/Data/Pokemon/597.dat - -#begin GameModes/Kolben/Data/Pokemon/598.dat -/copy:GameModes/Kolben/Data/Pokemon/598.dat - -#begin GameModes/Kolben/Data/Pokemon/599.dat -/copy:GameModes/Kolben/Data/Pokemon/599.dat - -#begin GameModes/Kolben/Data/Pokemon/6.dat -/copy:GameModes/Kolben/Data/Pokemon/6.dat - -#begin GameModes/Kolben/Data/Pokemon/60.dat -/copy:GameModes/Kolben/Data/Pokemon/60.dat - -#begin GameModes/Kolben/Data/Pokemon/600.dat -/copy:GameModes/Kolben/Data/Pokemon/600.dat - -#begin GameModes/Kolben/Data/Pokemon/601.dat -/copy:GameModes/Kolben/Data/Pokemon/601.dat - -#begin GameModes/Kolben/Data/Pokemon/602.dat -/copy:GameModes/Kolben/Data/Pokemon/602.dat - -#begin GameModes/Kolben/Data/Pokemon/603.dat -/copy:GameModes/Kolben/Data/Pokemon/603.dat - -#begin GameModes/Kolben/Data/Pokemon/604.dat -/copy:GameModes/Kolben/Data/Pokemon/604.dat - -#begin GameModes/Kolben/Data/Pokemon/605.dat -/copy:GameModes/Kolben/Data/Pokemon/605.dat - -#begin GameModes/Kolben/Data/Pokemon/606.dat -/copy:GameModes/Kolben/Data/Pokemon/606.dat - -#begin GameModes/Kolben/Data/Pokemon/607.dat -/copy:GameModes/Kolben/Data/Pokemon/607.dat - -#begin GameModes/Kolben/Data/Pokemon/608.dat -/copy:GameModes/Kolben/Data/Pokemon/608.dat - -#begin GameModes/Kolben/Data/Pokemon/609.dat -/copy:GameModes/Kolben/Data/Pokemon/609.dat - -#begin GameModes/Kolben/Data/Pokemon/61.dat -/copy:GameModes/Kolben/Data/Pokemon/61.dat - -#begin GameModes/Kolben/Data/Pokemon/610.dat -/copy:GameModes/Kolben/Data/Pokemon/610.dat - -#begin GameModes/Kolben/Data/Pokemon/611.dat -/copy:GameModes/Kolben/Data/Pokemon/611.dat - -#begin GameModes/Kolben/Data/Pokemon/612.dat -/copy:GameModes/Kolben/Data/Pokemon/612.dat - -#begin GameModes/Kolben/Data/Pokemon/613.dat -/copy:GameModes/Kolben/Data/Pokemon/613.dat - -#begin GameModes/Kolben/Data/Pokemon/614.dat -/copy:GameModes/Kolben/Data/Pokemon/614.dat - -#begin GameModes/Kolben/Data/Pokemon/615.dat -/copy:GameModes/Kolben/Data/Pokemon/615.dat - -#begin GameModes/Kolben/Data/Pokemon/616.dat -/copy:GameModes/Kolben/Data/Pokemon/616.dat - -#begin GameModes/Kolben/Data/Pokemon/617.dat -/copy:GameModes/Kolben/Data/Pokemon/617.dat - -#begin GameModes/Kolben/Data/Pokemon/618.dat -/copy:GameModes/Kolben/Data/Pokemon/618.dat - -#begin GameModes/Kolben/Data/Pokemon/619.dat -/copy:GameModes/Kolben/Data/Pokemon/619.dat - -#begin GameModes/Kolben/Data/Pokemon/62.dat -/copy:GameModes/Kolben/Data/Pokemon/62.dat - -#begin GameModes/Kolben/Data/Pokemon/620.dat -/copy:GameModes/Kolben/Data/Pokemon/620.dat - -#begin GameModes/Kolben/Data/Pokemon/621.dat -/copy:GameModes/Kolben/Data/Pokemon/621.dat - -#begin GameModes/Kolben/Data/Pokemon/622.dat -/copy:GameModes/Kolben/Data/Pokemon/622.dat - -#begin GameModes/Kolben/Data/Pokemon/623.dat -/copy:GameModes/Kolben/Data/Pokemon/623.dat - -#begin GameModes/Kolben/Data/Pokemon/624.dat -/copy:GameModes/Kolben/Data/Pokemon/624.dat - -#begin GameModes/Kolben/Data/Pokemon/625.dat -/copy:GameModes/Kolben/Data/Pokemon/625.dat - -#begin GameModes/Kolben/Data/Pokemon/626.dat -/copy:GameModes/Kolben/Data/Pokemon/626.dat - -#begin GameModes/Kolben/Data/Pokemon/627.dat -/copy:GameModes/Kolben/Data/Pokemon/627.dat - -#begin GameModes/Kolben/Data/Pokemon/628.dat -/copy:GameModes/Kolben/Data/Pokemon/628.dat - -#begin GameModes/Kolben/Data/Pokemon/629.dat -/copy:GameModes/Kolben/Data/Pokemon/629.dat - -#begin GameModes/Kolben/Data/Pokemon/63.dat -/copy:GameModes/Kolben/Data/Pokemon/63.dat - -#begin GameModes/Kolben/Data/Pokemon/630.dat -/copy:GameModes/Kolben/Data/Pokemon/630.dat - -#begin GameModes/Kolben/Data/Pokemon/631.dat -/copy:GameModes/Kolben/Data/Pokemon/631.dat - -#begin GameModes/Kolben/Data/Pokemon/632.dat -/copy:GameModes/Kolben/Data/Pokemon/632.dat - -#begin GameModes/Kolben/Data/Pokemon/633.dat -/copy:GameModes/Kolben/Data/Pokemon/633.dat - -#begin GameModes/Kolben/Data/Pokemon/634.dat -/copy:GameModes/Kolben/Data/Pokemon/634.dat - -#begin GameModes/Kolben/Data/Pokemon/635.dat -/copy:GameModes/Kolben/Data/Pokemon/635.dat - -#begin GameModes/Kolben/Data/Pokemon/636.dat -/copy:GameModes/Kolben/Data/Pokemon/636.dat - -#begin GameModes/Kolben/Data/Pokemon/637.dat -/copy:GameModes/Kolben/Data/Pokemon/637.dat - -#begin GameModes/Kolben/Data/Pokemon/638.dat -/copy:GameModes/Kolben/Data/Pokemon/638.dat - -#begin GameModes/Kolben/Data/Pokemon/639.dat -/copy:GameModes/Kolben/Data/Pokemon/639.dat - -#begin GameModes/Kolben/Data/Pokemon/64.dat -/copy:GameModes/Kolben/Data/Pokemon/64.dat - -#begin GameModes/Kolben/Data/Pokemon/640.dat -/copy:GameModes/Kolben/Data/Pokemon/640.dat - -#begin GameModes/Kolben/Data/Pokemon/641.dat -/copy:GameModes/Kolben/Data/Pokemon/641.dat - -#begin GameModes/Kolben/Data/Pokemon/641_therian.dat -/copy:GameModes/Kolben/Data/Pokemon/641_therian.dat - -#begin GameModes/Kolben/Data/Pokemon/642.dat -/copy:GameModes/Kolben/Data/Pokemon/642.dat - -#begin GameModes/Kolben/Data/Pokemon/642_therian.dat -/copy:GameModes/Kolben/Data/Pokemon/642_therian.dat - -#begin GameModes/Kolben/Data/Pokemon/643.dat -/copy:GameModes/Kolben/Data/Pokemon/643.dat - -#begin GameModes/Kolben/Data/Pokemon/644.dat -/copy:GameModes/Kolben/Data/Pokemon/644.dat - -#begin GameModes/Kolben/Data/Pokemon/645.dat -/copy:GameModes/Kolben/Data/Pokemon/645.dat - -#begin GameModes/Kolben/Data/Pokemon/645_therian.dat -/copy:GameModes/Kolben/Data/Pokemon/645_therian.dat - -#begin GameModes/Kolben/Data/Pokemon/646.dat -/copy:GameModes/Kolben/Data/Pokemon/646.dat - -#begin GameModes/Kolben/Data/Pokemon/646_black.dat -/copy:GameModes/Kolben/Data/Pokemon/646_black.dat - -#begin GameModes/Kolben/Data/Pokemon/646_white.dat -/copy:GameModes/Kolben/Data/Pokemon/646_white.dat - -#begin GameModes/Kolben/Data/Pokemon/647.dat -/copy:GameModes/Kolben/Data/Pokemon/647.dat - -#begin GameModes/Kolben/Data/Pokemon/648.dat -/copy:GameModes/Kolben/Data/Pokemon/648.dat - -#begin GameModes/Kolben/Data/Pokemon/648_pirouette.dat -/copy:GameModes/Kolben/Data/Pokemon/648_pirouette.dat - -#begin GameModes/Kolben/Data/Pokemon/649.dat -/copy:GameModes/Kolben/Data/Pokemon/649.dat - -#begin GameModes/Kolben/Data/Pokemon/65.dat -/copy:GameModes/Kolben/Data/Pokemon/65.dat - -#begin GameModes/Kolben/Data/Pokemon/66.dat -/copy:GameModes/Kolben/Data/Pokemon/66.dat - -#begin GameModes/Kolben/Data/Pokemon/661.dat -/copy:GameModes/Kolben/Data/Pokemon/661.dat - -#begin GameModes/Kolben/Data/Pokemon/662.dat -/copy:GameModes/Kolben/Data/Pokemon/662.dat - -#begin GameModes/Kolben/Data/Pokemon/663.dat -/copy:GameModes/Kolben/Data/Pokemon/663.dat - -#begin GameModes/Kolben/Data/Pokemon/67.dat -/copy:GameModes/Kolben/Data/Pokemon/67.dat - -#begin GameModes/Kolben/Data/Pokemon/674.dat -/copy:GameModes/Kolben/Data/Pokemon/674.dat - -#begin GameModes/Kolben/Data/Pokemon/675.dat -/copy:GameModes/Kolben/Data/Pokemon/675.dat - -#begin GameModes/Kolben/Data/Pokemon/679.dat -/copy:GameModes/Kolben/Data/Pokemon/679.dat - -#begin GameModes/Kolben/Data/Pokemon/68.dat -/copy:GameModes/Kolben/Data/Pokemon/68.dat - -#begin GameModes/Kolben/Data/Pokemon/680.dat -/copy:GameModes/Kolben/Data/Pokemon/680.dat - -#begin GameModes/Kolben/Data/Pokemon/681.dat -/copy:GameModes/Kolben/Data/Pokemon/681.dat - -#begin GameModes/Kolben/Data/Pokemon/681_blade.dat -/copy:GameModes/Kolben/Data/Pokemon/681_blade.dat - -#begin GameModes/Kolben/Data/Pokemon/69.dat -/copy:GameModes/Kolben/Data/Pokemon/69.dat - -#begin GameModes/Kolben/Data/Pokemon/696.dat -/copy:GameModes/Kolben/Data/Pokemon/696.dat - -#begin GameModes/Kolben/Data/Pokemon/697.dat -/copy:GameModes/Kolben/Data/Pokemon/697.dat - -#begin GameModes/Kolben/Data/Pokemon/698.dat -/copy:GameModes/Kolben/Data/Pokemon/698.dat - -#begin GameModes/Kolben/Data/Pokemon/699.dat -/copy:GameModes/Kolben/Data/Pokemon/699.dat - -#begin GameModes/Kolben/Data/Pokemon/7.dat -/copy:GameModes/Kolben/Data/Pokemon/7.dat - -#begin GameModes/Kolben/Data/Pokemon/70.dat -/copy:GameModes/Kolben/Data/Pokemon/70.dat - -#begin GameModes/Kolben/Data/Pokemon/700.dat -/copy:GameModes/Kolben/Data/Pokemon/700.dat - -#begin GameModes/Kolben/Data/Pokemon/703.dat -/copy:GameModes/Kolben/Data/Pokemon/703.dat - -#begin GameModes/Kolben/Data/Pokemon/707.dat -/copy:GameModes/Kolben/Data/Pokemon/707.dat - -#begin GameModes/Kolben/Data/Pokemon/708.dat -/copy:GameModes/Kolben/Data/Pokemon/708.dat - -#begin GameModes/Kolben/Data/Pokemon/709.dat -/copy:GameModes/Kolben/Data/Pokemon/709.dat - -#begin GameModes/Kolben/Data/Pokemon/71.dat -/copy:GameModes/Kolben/Data/Pokemon/71.dat - -#begin GameModes/Kolben/Data/Pokemon/714.dat -/copy:GameModes/Kolben/Data/Pokemon/714.dat - -#begin GameModes/Kolben/Data/Pokemon/715.dat -/copy:GameModes/Kolben/Data/Pokemon/715.dat - -#begin GameModes/Kolben/Data/Pokemon/72.dat -/copy:GameModes/Kolben/Data/Pokemon/72.dat - -#begin GameModes/Kolben/Data/Pokemon/721.dat -/copy:GameModes/Kolben/Data/Pokemon/721.dat - -#begin GameModes/Kolben/Data/Pokemon/73.dat -/copy:GameModes/Kolben/Data/Pokemon/73.dat - -#begin GameModes/Kolben/Data/Pokemon/74.dat -/copy:GameModes/Kolben/Data/Pokemon/74.dat - -#begin GameModes/Kolben/Data/Pokemon/75.dat -/copy:GameModes/Kolben/Data/Pokemon/75.dat - -#begin GameModes/Kolben/Data/Pokemon/76.dat -/copy:GameModes/Kolben/Data/Pokemon/76.dat - -#begin GameModes/Kolben/Data/Pokemon/77.dat -/copy:GameModes/Kolben/Data/Pokemon/77.dat - -#begin GameModes/Kolben/Data/Pokemon/78.dat -/copy:GameModes/Kolben/Data/Pokemon/78.dat - -#begin GameModes/Kolben/Data/Pokemon/79.dat -/copy:GameModes/Kolben/Data/Pokemon/79.dat - -#begin GameModes/Kolben/Data/Pokemon/8.dat -/copy:GameModes/Kolben/Data/Pokemon/8.dat - -#begin GameModes/Kolben/Data/Pokemon/80.dat -/copy:GameModes/Kolben/Data/Pokemon/80.dat - -#begin GameModes/Kolben/Data/Pokemon/81.dat -/copy:GameModes/Kolben/Data/Pokemon/81.dat - -#begin GameModes/Kolben/Data/Pokemon/82.dat -/copy:GameModes/Kolben/Data/Pokemon/82.dat - -#begin GameModes/Kolben/Data/Pokemon/83.dat -/copy:GameModes/Kolben/Data/Pokemon/83.dat - -#begin GameModes/Kolben/Data/Pokemon/84.dat -/copy:GameModes/Kolben/Data/Pokemon/84.dat - -#begin GameModes/Kolben/Data/Pokemon/85.dat -/copy:GameModes/Kolben/Data/Pokemon/85.dat - -#begin GameModes/Kolben/Data/Pokemon/86.dat -/copy:GameModes/Kolben/Data/Pokemon/86.dat - -#begin GameModes/Kolben/Data/Pokemon/87.dat -/copy:GameModes/Kolben/Data/Pokemon/87.dat - -#begin GameModes/Kolben/Data/Pokemon/88.dat -/copy:GameModes/Kolben/Data/Pokemon/88.dat - -#begin GameModes/Kolben/Data/Pokemon/89.dat -/copy:GameModes/Kolben/Data/Pokemon/89.dat - -#begin GameModes/Kolben/Data/Pokemon/9.dat -/copy:GameModes/Kolben/Data/Pokemon/9.dat - -#begin GameModes/Kolben/Data/Pokemon/90.dat -/copy:GameModes/Kolben/Data/Pokemon/90.dat - -#begin GameModes/Kolben/Data/Pokemon/91.dat -/copy:GameModes/Kolben/Data/Pokemon/91.dat - -#begin GameModes/Kolben/Data/Pokemon/92.dat -/copy:GameModes/Kolben/Data/Pokemon/92.dat - -#begin GameModes/Kolben/Data/Pokemon/93.dat -/copy:GameModes/Kolben/Data/Pokemon/93.dat - -#begin GameModes/Kolben/Data/Pokemon/94.dat -/copy:GameModes/Kolben/Data/Pokemon/94.dat - -#begin GameModes/Kolben/Data/Pokemon/95.dat -/copy:GameModes/Kolben/Data/Pokemon/95.dat - -#begin GameModes/Kolben/Data/Pokemon/96.dat -/copy:GameModes/Kolben/Data/Pokemon/96.dat - -#begin GameModes/Kolben/Data/Pokemon/97.dat -/copy:GameModes/Kolben/Data/Pokemon/97.dat - -#begin GameModes/Kolben/Data/Pokemon/98.dat -/copy:GameModes/Kolben/Data/Pokemon/98.dat - -#begin GameModes/Kolben/Data/Pokemon/99.dat -/copy:GameModes/Kolben/Data/Pokemon/99.dat - -#begin GameModes/Kolben/Data/Pokemon/frontier/0.dat -/copy:GameModes/Kolben/Data/Pokemon/frontier/0.dat - -#begin GameModes/Kolben/Data/Pokemon/frontier/1.dat -/copy:GameModes/Kolben/Data/Pokemon/frontier/1.dat - -#begin GameModes/Kolben/Data/Pokemon/frontier/2.dat -/copy:GameModes/Kolben/Data/Pokemon/frontier/2.dat - #begin GameModes/Kolben/Data/worldmap/johto.dat /copy:GameModes/Kolben/Data/worldmap/johto.dat @@ -101519,3 +99440,7804 @@ #begin Scripts/worldmap/sevii islands.dat /copy:Scripts/worldmap/sevii islands.dat +#begin SharedResources/Effects/BackdropShader.fx +/importer:EffectImporter +/processor:EffectProcessor +/processorParam:DebugMode=Auto +/build:SharedResources/Effects/BackdropShader.fx + +#begin SharedResources/Effects/DiffuseShader.fx +/importer:EffectImporter +/processor:EffectProcessor +/processorParam:DebugMode=Auto +/build:SharedResources/Effects/DiffuseShader.fx + +#begin SharedResources/Effects/GaussianBlur.fx +/importer:EffectImporter +/processor:EffectProcessor +/processorParam:DebugMode=Auto +/build:SharedResources/Effects/GaussianBlur.fx + +#begin SharedResources/Models/SkyDome.x +/importer:OpenAssetImporter +/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:SharedResources/Models/SkyDome.x + +#begin SharedResources/Sounds/Battle/Damage/normaldamage.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/Damage/normaldamage.mp3 + +#begin SharedResources/Sounds/Battle/Damage/not_effective.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/Damage/not_effective.mp3 + +#begin SharedResources/Sounds/Battle/Damage/super_effective.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/Damage/super_effective.mp3 + +#begin SharedResources/Sounds/Battle/Effects/effect_ember.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/Effects/effect_ember.mp3 + +#begin SharedResources/Sounds/Battle/Effects/effect_fly.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/Effects/effect_fly.mp3 + +#begin SharedResources/Sounds/Battle/Effects/effect_ice1.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/Effects/effect_ice1.mp3 + +#begin SharedResources/Sounds/Battle/Effects/effect_poison.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/Effects/effect_poison.mp3 + +#begin SharedResources/Sounds/Battle/Effects/effect_pound.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/Effects/effect_pound.mp3 + +#begin SharedResources/Sounds/Battle/Effects/effect_thunderbolt.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/Effects/effect_thunderbolt.mp3 + +#begin SharedResources/Sounds/Battle/Effects/effect_thundershock2.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/Effects/effect_thundershock2.mp3 + +#begin SharedResources/Sounds/Battle/ballshake.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/ballshake.mp3 + +#begin SharedResources/Sounds/Battle/exp_max.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/exp_max.mp3 + +#begin SharedResources/Sounds/Battle/pokeball_land.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/pokeball_land.mp3 + +#begin SharedResources/Sounds/Battle/running.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/running.mp3 + +#begin SharedResources/Sounds/Battle/shiny.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/shiny.mp3 + +#begin SharedResources/Sounds/Battle/throw.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Battle/throw.mp3 + +#begin SharedResources/Sounds/Pokegear/off.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Pokegear/off.mp3 + +#begin SharedResources/Sounds/Pokegear/on.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/Pokegear/on.mp3 + +#begin SharedResources/Sounds/badgeAcquired.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/badgeAcquired.mp3 + +#begin SharedResources/Sounds/bump.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/bump.mp3 + +#begin SharedResources/Sounds/buy.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/buy.mp3 + +#begin SharedResources/Sounds/destroy.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/destroy.mp3 + +#begin SharedResources/Sounds/eggHatch.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/eggHatch.mp3 + +#begin SharedResources/Sounds/enter.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/enter.mp3 + +#begin SharedResources/Sounds/itemfinder.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/itemfinder.mp3 + +#begin SharedResources/Sounds/itemFound.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/itemFound.mp3 + +#begin SharedResources/Sounds/jumpLedge.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/jumpLedge.mp3 + +#begin SharedResources/Sounds/menuOpen.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/menuOpen.mp3 + +#begin SharedResources/Sounds/pokeballOpen.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/pokeballOpen.mp3 + +#begin SharedResources/Sounds/pokeballShake.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/pokeballShake.mp3 + +#begin SharedResources/Sounds/save.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/save.mp3 + +#begin SharedResources/Sounds/select.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/select.mp3 + +#begin SharedResources/Sounds/success.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/success.mp3 + +#begin SharedResources/Sounds/successSmall.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/successSmall.mp3 + +#begin SharedResources/Sounds/teleport.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/teleport.mp3 + +#begin SharedResources/Sounds/tossPokeball.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Best +/build:SharedResources/Sounds/tossPokeball.mp3 + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonA.tga + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonB.tga + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonX.tga + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonY.tga + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftShoulder.tga + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftThumbstick.tga + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftTrigger.tga + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerRightShoulder.tga + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerRightThumbstick.tga + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerRightTrigger.tga + +#begin SharedResources/Textures/Microsoft/XBOX/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:SharedResources/Textures/Microsoft/XBOX/xboxControllerStart.tga + +#begin SharedResources/Textures/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:SharedResources/Textures/Pokemon/Egg/Templates/back.png + +#begin SharedResources/Textures/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:SharedResources/Textures/Pokemon/Egg/Templates/front.png + +#begin SharedResources/Textures/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:SharedResources/Textures/Pokemon/Egg/Templates/menu.png + +#begin SharedResources/Textures/Pokemon/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:SharedResources/Textures/Pokemon/Egg/back.png + +#begin SharedResources/Textures/Pokemon/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:SharedResources/Textures/Pokemon/Egg/front.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/auroraBoralis.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/cave.jpg + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/clouds.jpg + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/clouds1.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/cloudsWeather.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/dark.jpg + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/daycycle.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/forest.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/moon.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/stars.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/sun.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/sunRise.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/sunSet.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/underwater.png + +#begin SharedResources/Textures/SkyDome/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:SharedResources/Textures/SkyDome/underwaterGround.png + +#begin SharedResources/Textures/UI/Battle/battleFrontierIntro.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Battle/battleFrontierIntro.png + +#begin SharedResources/Textures/UI/Battle/main.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Battle/main.png + +#begin SharedResources/Textures/UI/Battle/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:SharedResources/Textures/UI/Battle/vsIntro.png + +#begin SharedResources/Textures/UI/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:SharedResources/Textures/UI/Battle/weatherIcons.png + +#begin SharedResources/Textures/UI/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:SharedResources/Textures/UI/Chat/icons.png + +#begin SharedResources/Textures/UI/Evolution/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:SharedResources/Textures/UI/Evolution/eggBreak.png + +#begin SharedResources/Textures/UI/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:SharedResources/Textures/UI/Evolution/light.png + +#begin SharedResources/Textures/UI/Evolution/spark.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Evolution/spark.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/alph.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/border.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/boulder.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/cascade.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/champion.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/cyber.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/earth.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/eevee.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/eggsplosion.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/fog.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/genetics.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/glacier.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/glowing.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/gold ability.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/gold knowledge.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/hive.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/johto.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/kanto.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/legendary.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/mailman.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/marsh.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/material.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/mineral.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/missingno.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/overkill.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/plain.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/pokedex.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/rainbow.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/rising.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/shooting star.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/silver ability.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/silver knowledge.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/snow.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/soul.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/stars.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/storm.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/thunder.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/trainer.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/unodostres.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/volcano.png + +#begin SharedResources/Textures/UI/GameJolt/Emblems/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:SharedResources/Textures/UI/GameJolt/Emblems/zephyr.png + +#begin SharedResources/Textures/UI/GameJolt/Loading/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:SharedResources/Textures/UI/GameJolt/Loading/0.png + +#begin SharedResources/Textures/UI/GameJolt/Loading/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:SharedResources/Textures/UI/GameJolt/Loading/1.png + +#begin SharedResources/Textures/UI/GameJolt/Loading/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:SharedResources/Textures/UI/GameJolt/Loading/2.png + +#begin SharedResources/Textures/UI/GameJolt/Loading/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:SharedResources/Textures/UI/GameJolt/Loading/3.png + +#begin SharedResources/Textures/UI/GameJolt/gameJoltIcon.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/GameJolt/gameJoltIcon.png + +#begin SharedResources/Textures/UI/GameJolt/login.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/GameJolt/login.png + +#begin SharedResources/Textures/UI/GameJolt/logo.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/GameJolt/logo.png + +#begin SharedResources/Textures/UI/GameJolt/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:SharedResources/Textures/UI/GameJolt/question.png + +#begin SharedResources/Textures/UI/GameJolt/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:SharedResources/Textures/UI/GameJolt/x.png + +#begin SharedResources/Textures/UI/GTS/main.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/GTS/main.png + +#begin SharedResources/Textures/UI/Inventory/main.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Inventory/main.png + +#begin SharedResources/Textures/UI/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:SharedResources/Textures/UI/Logos/KolbenBrand.png + +#begin SharedResources/Textures/UI/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:SharedResources/Textures/UI/Logos/KolbenText.png + +#begin SharedResources/Textures/UI/Logos/logoShine.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Logos/logoShine.png + +#begin SharedResources/Textures/UI/Logos/pokemon.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Logos/pokemon.png + +#begin SharedResources/Textures/UI/Map/main.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Map/main.png + +#begin SharedResources/Textures/UI/Overworld/darkOverlay.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Overworld/darkOverlay.png + +#begin SharedResources/Textures/UI/Overworld/main.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Overworld/main.png + +#begin SharedResources/Textures/UI/Pokedex/main.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Pokedex/main.png + +#begin SharedResources/Textures/UI/Pokegear/main.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Pokegear/main.png + +#begin SharedResources/Textures/UI/Pokemon/Summary/main.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Pokemon/Summary/main.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/0.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/1.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/10.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/11.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/12.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/13.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/14.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/15.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/16.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/17.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/18.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/19.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/2.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/20.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/21.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/22.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/23.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/3.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/4.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/5.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/6.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/7.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/8.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/9.png + +#begin SharedResources/Textures/UI/Storage/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:SharedResources/Textures/UI/Storage/battleBox.png + +#begin SharedResources/Textures/UI/Storage/main.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/Storage/main.png + +#begin SharedResources/Textures/UI/Store/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:SharedResources/Textures/UI/Store/sparkle.png + +#begin SharedResources/Textures/UI/TrainerCard/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:SharedResources/Textures/UI/TrainerCard/Back.png + +#begin SharedResources/Textures/UI/TrainerCard/Paperclip.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/TrainerCard/Paperclip.png + +#begin SharedResources/Textures/UI/TrainerCard/Papers.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/TrainerCard/Papers.png + +#begin SharedResources/Textures/UI/main.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/UI/main.png + +#begin SharedResources/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:SharedResources/Textures/Weather/ash.png + +#begin SharedResources/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:SharedResources/Textures/Weather/ash2.png + +#begin SharedResources/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:SharedResources/Textures/Weather/bubble.png + +#begin SharedResources/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:SharedResources/Textures/Weather/rain.png + +#begin SharedResources/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:SharedResources/Textures/Weather/rain2.png + +#begin SharedResources/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:SharedResources/Textures/Weather/rain3.png + +#begin SharedResources/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:SharedResources/Textures/Weather/sand.png + +#begin SharedResources/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:SharedResources/Textures/Weather/snow.png + +#begin SharedResources/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:SharedResources/Textures/Weather/snow2.png + +#begin SharedResources/Textures/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:SharedResources/Textures/no_texture.png + +#begin SharedResources/Textures/unknownSprite.png +/importer:TextureImporter +/processor:TextureProcessor +/processorParam:ColorKeyColor=255,0,255,255 +/processorParam:ColorKeyEnabled=True +/processorParam:GenerateMipmaps=False +/processorParam:PremultiplyAlpha=True +/processorParam:ResizeToPowerOfTwo=False +/processorParam:MakeSquare=False +/processorParam:TextureFormat=Color +/build:SharedResources/Textures/unknownSprite.png + +#begin SharedResources/Fonts/Braille.png +/importer:TextureImporter +/processor:FontTextureProcessor +/processorParam:FirstCharacter= +/processorParam:PremultiplyAlpha=True +/processorParam:TextureFormat=Color +/build:SharedResources/Fonts/Braille.png + +#begin SharedResources/Fonts/chatFont.png +/importer:TextureImporter +/processor:FontTextureProcessor +/processorParam:FirstCharacter= +/processorParam:PremultiplyAlpha=True +/processorParam:TextureFormat=Color +/build:SharedResources/Fonts/chatFont.png + +#begin SharedResources/Fonts/InGame.png +/importer:TextureImporter +/processor:FontTextureProcessor +/processorParam:FirstCharacter= +/processorParam:PremultiplyAlpha=True +/processorParam:TextureFormat=Color +/build:SharedResources/Fonts/InGame.png + +#begin SharedResources/Fonts/mainFont.png +/importer:TextureImporter +/processor:FontTextureProcessor +/processorParam:FirstCharacter= +/processorParam:PremultiplyAlpha=True +/processorParam:TextureFormat=Color +/build:SharedResources/Fonts/mainFont.png + +#begin SharedResources/Fonts/miniFont.spritefont +/importer:FontDescriptionImporter +/processor:FontDescriptionProcessor +/processorParam:TextureFormat=Compressed +/build:SharedResources/Fonts/miniFont.spritefont + +#begin SharedResources/Fonts/TextFont.png +/importer:TextureImporter +/processor:FontTextureProcessor +/processorParam:FirstCharacter= +/processorParam:PremultiplyAlpha=True +/processorParam:TextureFormat=Color +/build:SharedResources/Fonts/TextFont.png + +#begin SharedResources/Fonts/Unown.png +/importer:TextureImporter +/processor:FontTextureProcessor +/processorParam:FirstCharacter= +/processorParam:PremultiplyAlpha=True +/processorParam:TextureFormat=Color +/build:SharedResources/Fonts/Unown.png + +#begin SharedResources/Songs/credits.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:SharedResources/Songs/credits.ogg + +#begin SharedResources/Songs/evolution.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:SharedResources/Songs/evolution.ogg + +#begin SharedResources/Songs/gts.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:SharedResources/Songs/gts.ogg + +#begin SharedResources/Songs/lobby.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:SharedResources/Songs/lobby.ogg + +#begin SharedResources/Songs/pvp.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:SharedResources/Songs/pvp.ogg + +#begin SharedResources/Songs/ride.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:SharedResources/Songs/ride.ogg + +#begin SharedResources/Songs/surf.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:SharedResources/Songs/surf.ogg + +#begin SharedResources/Songs/title.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:SharedResources/Songs/title.ogg + +#begin SharedResources/Fonts/GameJolt.xnb +/copy:SharedResources/Fonts/GameJolt.xnb + +#begin Localization/Tokens_de.dat +/copy:Localization/Tokens_de.dat + +#begin Localization/Tokens_en.dat +/copy:Localization/Tokens_en.dat + +#begin Localization/Tokens_fr.dat +/copy:Localization/Tokens_fr.dat + +#begin Localization/Tokens_id.dat +/copy:Localization/Tokens_id.dat + +#begin Localization/Tokens_it.dat +/copy:Localization/Tokens_it.dat + +#begin Localization/Tokens_sv.dat +/copy:Localization/Tokens_sv.dat + +#begin Localization/Tokens_tr.dat +/copy:Localization/Tokens_tr.dat + +#begin GameModes/Kolben/Content/Songs/intro/azalea.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/azalea.ogg + +#begin GameModes/Kolben/Content/Songs/intro/barktown.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/barktown.ogg + +#begin GameModes/Kolben/Content/Songs/intro/battlefactory.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/battlefactory.ogg + +#begin GameModes/Kolben/Content/Songs/intro/bugcontest.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/bugcontest.ogg + +#begin GameModes/Kolben/Content/Songs/intro/burnedtower.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/burnedtower.ogg + +#begin GameModes/Kolben/Content/Songs/intro/celadon.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/celadon.ogg + +#begin GameModes/Kolben/Content/Songs/intro/cerulean.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/cerulean.ogg + +#begin GameModes/Kolben/Content/Songs/intro/cerulean_cave.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/cerulean_cave.ogg + +#begin GameModes/Kolben/Content/Songs/intro/champion_defeat.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/champion_defeat.ogg + +#begin GameModes/Kolben/Content/Songs/intro/cherrygrove.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/cherrygrove.ogg + +#begin GameModes/Kolben/Content/Songs/intro/diglettscave.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/diglettscave.ogg + +#begin GameModes/Kolben/Content/Songs/intro/elite_defeat.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/elite_defeat.ogg + +#begin GameModes/Kolben/Content/Songs/intro/elmslab.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/elmslab.ogg + +#begin GameModes/Kolben/Content/Songs/intro/entei_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/entei_battle.ogg + +#begin GameModes/Kolben/Content/Songs/intro/evolution.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/evolution.ogg + +#begin GameModes/Kolben/Content/Songs/intro/frontier.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/frontier.ogg + +#begin GameModes/Kolben/Content/Songs/intro/gamecorner.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/gamecorner.ogg + +#begin GameModes/Kolben/Content/Songs/intro/Goldenrod.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/Goldenrod.ogg + +#begin GameModes/Kolben/Content/Songs/intro/gts.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/gts.ogg + +#begin GameModes/Kolben/Content/Songs/intro/ho-oh_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/ho-oh_battle.ogg + +#begin GameModes/Kolben/Content/Songs/intro/IlexForest.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/IlexForest.ogg + +#begin GameModes/Kolben/Content/Songs/intro/johto_elite.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/johto_elite.ogg + +#begin GameModes/Kolben/Content/Songs/intro/johto_leader.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/johto_leader.ogg + +#begin GameModes/Kolben/Content/Songs/intro/johto_rival_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/johto_rival_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/intro/johto_rocket.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/johto_rocket.ogg + +#begin GameModes/Kolben/Content/Songs/intro/johto_trainer.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/johto_trainer.ogg + +#begin GameModes/Kolben/Content/Songs/intro/johto_wild.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/johto_wild.ogg + +#begin GameModes/Kolben/Content/Songs/intro/kanto_leader.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/kanto_leader.ogg + +#begin GameModes/Kolben/Content/Songs/intro/kanto_trainer.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/kanto_trainer.ogg + +#begin GameModes/Kolben/Content/Songs/intro/lavender.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/lavender.ogg + +#begin GameModes/Kolben/Content/Songs/intro/leader_defeat.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/leader_defeat.ogg + +#begin GameModes/Kolben/Content/Songs/intro/lobby.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/lobby.ogg + +#begin GameModes/Kolben/Content/Songs/intro/lugia_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/lugia_battle.ogg + +#begin GameModes/Kolben/Content/Songs/intro/mart.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/mart.ogg + +#begin GameModes/Kolben/Content/Songs/intro/mary_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/mary_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/intro/oakslab.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/oakslab.ogg + +#begin GameModes/Kolben/Content/Songs/intro/oak_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/oak_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/intro/pokeflute.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/pokeflute.ogg + +#begin GameModes/Kolben/Content/Songs/intro/pokemon_lullaby.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/pokemon_lullaby.ogg + +#begin GameModes/Kolben/Content/Songs/intro/pokemon_march.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/pokemon_march.ogg + +#begin GameModes/Kolben/Content/Songs/intro/pvp.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/pvp.ogg + +#begin GameModes/Kolben/Content/Songs/intro/raikou_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/raikou_battle.ogg + +#begin GameModes/Kolben/Content/Songs/intro/ride.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/ride.ogg + +#begin GameModes/Kolben/Content/Songs/intro/RouteMusic1.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/RouteMusic1.ogg + +#begin GameModes/Kolben/Content/Songs/intro/RouteMusic10.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/RouteMusic10.ogg + +#begin GameModes/Kolben/Content/Songs/intro/RouteMusic11.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/RouteMusic11.ogg + +#begin GameModes/Kolben/Content/Songs/intro/RouteMusic2.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/RouteMusic2.ogg + +#begin GameModes/Kolben/Content/Songs/intro/RouteMusic3.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/RouteMusic3.ogg + +#begin GameModes/Kolben/Content/Songs/intro/RouteMusic4.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/RouteMusic4.ogg + +#begin GameModes/Kolben/Content/Songs/intro/RouteMusic5.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/RouteMusic5.ogg + +#begin GameModes/Kolben/Content/Songs/intro/RouteMusic6.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/RouteMusic6.ogg + +#begin GameModes/Kolben/Content/Songs/intro/RouteMusic7.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/RouteMusic7.ogg + +#begin GameModes/Kolben/Content/Songs/intro/RouteMusic8.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/RouteMusic8.ogg + +#begin GameModes/Kolben/Content/Songs/intro/safari.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/safari.ogg + +#begin GameModes/Kolben/Content/Songs/intro/show_me_around.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/show_me_around.ogg + +#begin GameModes/Kolben/Content/Songs/intro/space_legend_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/space_legend_battle.ogg + +#begin GameModes/Kolben/Content/Songs/intro/sprout_tower.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/sprout_tower.ogg + +#begin GameModes/Kolben/Content/Songs/intro/ssaqua.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/ssaqua.ogg + +#begin GameModes/Kolben/Content/Songs/intro/startower.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/startower.ogg + +#begin GameModes/Kolben/Content/Songs/intro/suicune_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/suicune_battle.ogg + +#begin GameModes/Kolben/Content/Songs/intro/trainer_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/trainer_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/intro/vermilion.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/vermilion.ogg + +#begin GameModes/Kolben/Content/Songs/intro/violet.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/intro/violet.ogg + +#begin GameModes/Kolben/Content/Songs/alph.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/alph.ogg + +#begin GameModes/Kolben/Content/Songs/ancient_ruins.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/ancient_ruins.ogg + +#begin GameModes/Kolben/Content/Songs/azalea.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/azalea.ogg + +#begin GameModes/Kolben/Content/Songs/barktown.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/barktown.ogg + +#begin GameModes/Kolben/Content/Songs/battlefactory.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/battlefactory.ogg + +#begin GameModes/Kolben/Content/Songs/battletower.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/battletower.ogg + +#begin GameModes/Kolben/Content/Songs/brain_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/brain_battle.ogg + +#begin GameModes/Kolben/Content/Songs/brain_battle_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/brain_battle_intro.ogg + +#begin GameModes/Kolben/Content/Songs/bugcontest.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/bugcontest.ogg + +#begin GameModes/Kolben/Content/Songs/burnedtower.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/burnedtower.ogg + +#begin GameModes/Kolben/Content/Songs/celadon.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/celadon.ogg + +#begin GameModes/Kolben/Content/Songs/center.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/center.ogg + +#begin GameModes/Kolben/Content/Songs/cerulean.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/cerulean.ogg + +#begin GameModes/Kolben/Content/Songs/cerulean_cave.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/cerulean_cave.ogg + +#begin GameModes/Kolben/Content/Songs/champion_defeat.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/champion_defeat.ogg + +#begin GameModes/Kolben/Content/Songs/cherrygrove.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/cherrygrove.ogg + +#begin GameModes/Kolben/Content/Songs/cinnabar.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/cinnabar.ogg + +#begin GameModes/Kolben/Content/Songs/credits.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/credits.ogg + +#begin GameModes/Kolben/Content/Songs/dark_cave.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/dark_cave.ogg + +#begin GameModes/Kolben/Content/Songs/diglettscave.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/diglettscave.ogg + +#begin GameModes/Kolben/Content/Songs/dragonsden.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/dragonsden.ogg + +#begin GameModes/Kolben/Content/Songs/ecruteak.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/ecruteak.ogg + +#begin GameModes/Kolben/Content/Songs/elite_defeat.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/elite_defeat.ogg + +#begin GameModes/Kolben/Content/Songs/elmslab.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/elmslab.ogg + +#begin GameModes/Kolben/Content/Songs/entei_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/entei_battle.ogg + +#begin GameModes/Kolben/Content/Songs/entei_battle_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/entei_battle_intro.ogg + +#begin GameModes/Kolben/Content/Songs/eusine_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/eusine_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/evolution.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/evolution.ogg + +#begin GameModes/Kolben/Content/Songs/frontier.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/frontier.ogg + +#begin GameModes/Kolben/Content/Songs/gamecorner.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/gamecorner.ogg + +#begin GameModes/Kolben/Content/Songs/Goldenrod.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/Goldenrod.ogg + +#begin GameModes/Kolben/Content/Songs/gts.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/gts.ogg + +#begin GameModes/Kolben/Content/Songs/gym.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/gym.ogg + +#begin GameModes/Kolben/Content/Songs/HallofFame.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/HallofFame.ogg + +#begin GameModes/Kolben/Content/Songs/ho-oh_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/ho-oh_battle.ogg + +#begin GameModes/Kolben/Content/Songs/ho-oh_battle_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/ho-oh_battle_intro.ogg + +#begin GameModes/Kolben/Content/Songs/IlexForest.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/IlexForest.ogg + +#begin GameModes/Kolben/Content/Songs/indigo.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/indigo.ogg + +#begin GameModes/Kolben/Content/Songs/johto_champion.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_champion.ogg + +#begin GameModes/Kolben/Content/Songs/Johto_champion_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/Johto_champion_intro.ogg + +#begin GameModes/Kolben/Content/Songs/johto_elite.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_elite.ogg + +#begin GameModes/Kolben/Content/Songs/johto_elite_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_elite_intro.ogg + +#begin GameModes/Kolben/Content/Songs/johto_leader.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_leader.ogg + +#begin GameModes/Kolben/Content/Songs/johto_leader_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_leader_intro.ogg + +#begin GameModes/Kolben/Content/Songs/johto_rival.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_rival.ogg + +#begin GameModes/Kolben/Content/Songs/johto_rivalintro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_rivalintro.ogg + +#begin GameModes/Kolben/Content/Songs/johto_rival_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_rival_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/johto_rocket.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_rocket.ogg + +#begin GameModes/Kolben/Content/Songs/johto_rocket_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_rocket_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/johto_rocket_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_rocket_intro.ogg + +#begin GameModes/Kolben/Content/Songs/johto_trainer.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_trainer.ogg + +#begin GameModes/Kolben/Content/Songs/johto_trainer_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_trainer_intro.ogg + +#begin GameModes/Kolben/Content/Songs/johto_wild.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_wild.ogg + +#begin GameModes/Kolben/Content/Songs/johto_wild_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/johto_wild_intro.ogg + +#begin GameModes/Kolben/Content/Songs/kanto_leader.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/kanto_leader.ogg + +#begin GameModes/Kolben/Content/Songs/kanto_leader_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/kanto_leader_intro.ogg + +#begin GameModes/Kolben/Content/Songs/kanto_trainer.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/kanto_trainer.ogg + +#begin GameModes/Kolben/Content/Songs/kanto_trainer_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/kanto_trainer_intro.ogg + +#begin GameModes/Kolben/Content/Songs/kanto_wild.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/kanto_wild.ogg + +#begin GameModes/Kolben/Content/Songs/kanto_wild_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/kanto_wild_intro.ogg + +#begin GameModes/Kolben/Content/Songs/kimono.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/kimono.ogg + +#begin GameModes/Kolben/Content/Songs/kvictoryroad.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/kvictoryroad.ogg + +#begin GameModes/Kolben/Content/Songs/lavender.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/lavender.ogg + +#begin GameModes/Kolben/Content/Songs/leader_defeat.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/leader_defeat.ogg + +#begin GameModes/Kolben/Content/Songs/lighthouse.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/lighthouse.ogg + +#begin GameModes/Kolben/Content/Songs/lobby.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/lobby.ogg + +#begin GameModes/Kolben/Content/Songs/Looker_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/Looker_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/lugia_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/lugia_battle.ogg + +#begin GameModes/Kolben/Content/Songs/lugia_battle_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/lugia_battle_intro.ogg + +#begin GameModes/Kolben/Content/Songs/mart.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/mart.ogg + +#begin GameModes/Kolben/Content/Songs/mary_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/mary_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/mtmoonsq.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/mtmoonsq.ogg + +#begin GameModes/Kolben/Content/Songs/nationalpark.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/nationalpark.ogg + +#begin GameModes/Kolben/Content/Songs/oakslab.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/oakslab.ogg + +#begin GameModes/Kolben/Content/Songs/oak_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/oak_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/pallet.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/pallet.ogg + +#begin GameModes/Kolben/Content/Songs/pokeflute.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/pokeflute.ogg + +#begin GameModes/Kolben/Content/Songs/pokemon_lullaby.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/pokemon_lullaby.ogg + +#begin GameModes/Kolben/Content/Songs/pokemon_march.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/pokemon_march.ogg + +#begin GameModes/Kolben/Content/Songs/pvp.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/pvp.ogg + +#begin GameModes/Kolben/Content/Songs/raikou_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/raikou_battle.ogg + +#begin GameModes/Kolben/Content/Songs/raikou_battle_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/raikou_battle_intro.ogg + +#begin GameModes/Kolben/Content/Songs/rHideout.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/rHideout.ogg + +#begin GameModes/Kolben/Content/Songs/ride.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/ride.ogg + +#begin GameModes/Kolben/Content/Songs/rocket_broadcast.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/rocket_broadcast.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic0.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic0.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic1.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic1.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic10.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic10.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic11.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic11.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic2.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic2.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic3.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic3.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic4.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic4.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic5.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic5.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic6.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic6.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic7.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic7.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic8.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic8.ogg + +#begin GameModes/Kolben/Content/Songs/RouteMusic9.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/RouteMusic9.ogg + +#begin GameModes/Kolben/Content/Songs/safari.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/safari.ogg + +#begin GameModes/Kolben/Content/Songs/safarigate.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/safarigate.ogg + +#begin GameModes/Kolben/Content/Songs/show_me_around.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/show_me_around.ogg + +#begin GameModes/Kolben/Content/Songs/space_legend_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/space_legend_battle.ogg + +#begin GameModes/Kolben/Content/Songs/space_legend_battle_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/space_legend_battle_intro.ogg + +#begin GameModes/Kolben/Content/Songs/sprout_tower.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/sprout_tower.ogg + +#begin GameModes/Kolben/Content/Songs/ssaqua.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/ssaqua.ogg + +#begin GameModes/Kolben/Content/Songs/startower.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/startower.ogg + +#begin GameModes/Kolben/Content/Songs/suicune_battle.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/suicune_battle.ogg + +#begin GameModes/Kolben/Content/Songs/suicune_battle_intro.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/suicune_battle_intro.ogg + +#begin GameModes/Kolben/Content/Songs/surf.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/surf.ogg + +#begin GameModes/Kolben/Content/Songs/tintower.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/tintower.ogg + +#begin GameModes/Kolben/Content/Songs/title.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/title.ogg + +#begin GameModes/Kolben/Content/Songs/trainer_defeat.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/trainer_defeat.ogg + +#begin GameModes/Kolben/Content/Songs/trainer_encounter.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/trainer_encounter.ogg + +#begin GameModes/Kolben/Content/Songs/unown_broadcast.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/unown_broadcast.ogg + +#begin GameModes/Kolben/Content/Songs/vermilion.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/vermilion.ogg + +#begin GameModes/Kolben/Content/Songs/violet.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/violet.ogg + +#begin GameModes/Kolben/Content/Songs/viridian_forest.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/viridian_forest.ogg + +#begin GameModes/Kolben/Content/Songs/wild_defeat.ogg +/importer:OggImporter +/processor:SongProcessor +/processorParam:Quality=Best +/build:GameModes/Kolben/Content/Songs/wild_defeat.ogg + +#begin GameModes/Kolben/Content/Sounds/Battle/Damage/normaldamage.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/Damage/normaldamage.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/Damage/not_effective.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/Damage/not_effective.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/Damage/super_effective.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/Damage/super_effective.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/Effects/effect_ember.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/Effects/effect_ember.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/Effects/effect_fly.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/Effects/effect_fly.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/Effects/effect_ice1.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/Effects/effect_ice1.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/Effects/effect_poison.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/Effects/effect_poison.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/Effects/effect_pound.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/Effects/effect_pound.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/Effects/effect_thunderbolt.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/Effects/effect_thunderbolt.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/Effects/effect_thundershock2.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/Effects/effect_thundershock2.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/ballshake.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/ballshake.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/exp_max.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/exp_max.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/pokeball_land.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/pokeball_land.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/running.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/running.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/shiny.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/shiny.mp3 + +#begin GameModes/Kolben/Content/Sounds/Battle/throw.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Battle/throw.mp3 + +#begin GameModes/Kolben/Content/Sounds/Contest/rankplace.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Contest/rankplace.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/1.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/1.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/10.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/10.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/100.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/100.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/101.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/101.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/102.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/102.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/103.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/103.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/104.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/104.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/105.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/105.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/106.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/106.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/107.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/107.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/108.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/108.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/109.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/109.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/11.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/11.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/110.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/110.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/111.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/111.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/112.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/112.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/113.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/113.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/114.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/114.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/115.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/115.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/116.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/116.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/117.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/117.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/118.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/118.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/119.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/119.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/12.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/12.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/120.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/120.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/121.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/121.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/122.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/122.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/123.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/123.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/124.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/124.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/125.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/125.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/126.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/126.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/127.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/127.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/128.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/128.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/129.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/129.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/13.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/13.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/130.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/130.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/131.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/131.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/132.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/132.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/133.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/133.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/134.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/134.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/135.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/135.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/136.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/136.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/137.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/137.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/138.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/138.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/139.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/139.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/14.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/14.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/140.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/140.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/141.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/141.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/142.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/142.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/143.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/143.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/144.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/144.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/145.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/145.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/146.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/146.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/147.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/147.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/148.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/148.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/149.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/149.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/15.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/15.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/150.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/150.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/151.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/151.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/152.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/152.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/153.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/153.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/154.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/154.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/155.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/155.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/156.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/156.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/157.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/157.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/158.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/158.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/159.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/159.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/16.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/16.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/160.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/160.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/161.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/161.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/162.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/162.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/163.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/163.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/164.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/164.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/165.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/165.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/166.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/166.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/167.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/167.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/168.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/168.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/169.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/169.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/17.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/17.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/170.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/170.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/171.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/171.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/172.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/172.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/173.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/173.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/174.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/174.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/175.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/175.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/176.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/176.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/177.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/177.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/178.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/178.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/179.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/179.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/18.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/18.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/180.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/180.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/181.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/181.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/182.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/182.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/183.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/183.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/184.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/184.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/185.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/185.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/186.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/186.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/187.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/187.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/188.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/188.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/189.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/189.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/19.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/19.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/190.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/190.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/191.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/191.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/192.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/192.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/193.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/193.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/194.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/194.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/195.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/195.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/196.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/196.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/197.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/197.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/198.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/198.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/199.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/199.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/2.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/2.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/20.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/20.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/200.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/200.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/201.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/201.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/202.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/202.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/203.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/203.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/204.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/204.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/205.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/205.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/206.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/206.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/207.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/207.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/208.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/208.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/209.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/209.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/21.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/21.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/210.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/210.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/211.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/211.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/212.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/212.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/213.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/213.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/214.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/214.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/215.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/215.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/216.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/216.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/217.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/217.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/218.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/218.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/219.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/219.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/22.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/22.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/220.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/220.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/221.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/221.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/222.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/222.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/223.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/223.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/224.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/224.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/225.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/225.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/226.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/226.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/227.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/227.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/228.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/228.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/229.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/229.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/23.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/23.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/230.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/230.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/231.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/231.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/232.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/232.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/233.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/233.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/234.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/234.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/235.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/235.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/236.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/236.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/237.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/237.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/238.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/238.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/239.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/239.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/24.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/24.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/240.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/240.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/241.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/241.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/242.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/242.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/243.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/243.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/244.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/244.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/245.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/245.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/246.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/246.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/247.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/247.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/248.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/248.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/249.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/249.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/25.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/25.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/250.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/250.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/251.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/251.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/252.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/252.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/253.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/253.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/254.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/254.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/255.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/255.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/256.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/256.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/257.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/257.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/258.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/258.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/259.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/259.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/26.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/26.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/260.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/260.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/261.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/261.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/262.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/262.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/263.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/263.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/264.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/264.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/265.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/265.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/266.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/266.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/267.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/267.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/268.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/268.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/269.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/269.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/27.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/27.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/270.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/270.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/271.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/271.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/272.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/272.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/273.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/273.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/274.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/274.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/275.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/275.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/276.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/276.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/277.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/277.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/278.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/278.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/279.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/279.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/28.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/28.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/280.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/280.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/281.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/281.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/282.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/282.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/283.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/283.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/284.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/284.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/285.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/285.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/286.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/286.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/287.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/287.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/288.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/288.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/289.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/289.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/29.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/29.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/290.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/290.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/291.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/291.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/292.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/292.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/293.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/293.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/294.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/294.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/295.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/295.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/296.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/296.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/297.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/297.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/298.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/298.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/299.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/299.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/3.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/3.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/30.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/30.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/300.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/300.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/301.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/301.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/302.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/302.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/303.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/303.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/304.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/304.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/305.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/305.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/306.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/306.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/307.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/307.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/308.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/308.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/309.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/309.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/31.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/31.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/310.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/310.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/311.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/311.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/312.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/312.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/313.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/313.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/314.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/314.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/315.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/315.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/316.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/316.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/317.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/317.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/318.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/318.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/319.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/319.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/32.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/32.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/320.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/320.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/321.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/321.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/322.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/322.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/323.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/323.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/324.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/324.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/325.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/325.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/326.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/326.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/327.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/327.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/328.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/328.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/329.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/329.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/33.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/33.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/330.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/330.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/331.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/331.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/332.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/332.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/333.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/333.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/334.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/334.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/335.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/335.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/336.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/336.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/337.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/337.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/338.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/338.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/339.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/339.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/34.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/34.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/340.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/340.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/341.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/341.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/342.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/342.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/343.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/343.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/344.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/344.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/345.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/345.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/346.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/346.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/347.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/347.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/348.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/348.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/349.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/349.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/35.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/35.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/350.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/350.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/351.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/351.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/352.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/352.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/353.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/353.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/354.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/354.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/355.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/355.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/356.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/356.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/357.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/357.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/358.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/358.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/359.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/359.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/36.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/36.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/360.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/360.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/361.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/361.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/362.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/362.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/363.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/363.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/364.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/364.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/365.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/365.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/366.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/366.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/367.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/367.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/368.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/368.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/369.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/369.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/37.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/37.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/370.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/370.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/371.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/371.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/372.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/372.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/373.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/373.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/374.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/374.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/375.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/375.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/376.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/376.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/377.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/377.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/378.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/378.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/379.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/379.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/38.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/38.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/380.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/380.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/381.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/381.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/382.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/382.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/383.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/383.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/384.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/384.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/385.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/385.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/386.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/386.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/387.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/387.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/388.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/388.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/389.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/389.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/39.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/39.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/390.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/390.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/391.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/391.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/392.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/392.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/393.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/393.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/394.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/394.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/395.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/395.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/396.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/396.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/397.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/397.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/398.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/398.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/399.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/399.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/4.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/4.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/40.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/40.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/400.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/400.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/401.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/401.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/402.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/402.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/403.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/403.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/404.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/404.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/405.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/405.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/406.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/406.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/407.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/407.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/408.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/408.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/409.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/409.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/41.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/41.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/410.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/410.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/411.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/411.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/412.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/412.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/413.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/413.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/414.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/414.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/415.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/415.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/416.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/416.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/417.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/417.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/418.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/418.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/419.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/419.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/42.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/42.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/420.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/420.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/421.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/421.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/422.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/422.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/423.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/423.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/424.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/424.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/425.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/425.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/426.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/426.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/427.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/427.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/428.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/428.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/429.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/429.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/43.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/43.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/430.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/430.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/431.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/431.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/432.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/432.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/433.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/433.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/434.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/434.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/435.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/435.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/436.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/436.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/437.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/437.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/438.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/438.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/439.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/439.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/44.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/44.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/440.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/440.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/441.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/441.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/442.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/442.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/443.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/443.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/444.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/444.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/445.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/445.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/446.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/446.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/447.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/447.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/448.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/448.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/449.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/449.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/45.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/45.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/450.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/450.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/451.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/451.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/452.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/452.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/453.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/453.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/454.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/454.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/455.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/455.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/456.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/456.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/457.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/457.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/458.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/458.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/459.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/459.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/46.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/46.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/460.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/460.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/461.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/461.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/462.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/462.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/463.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/463.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/464.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/464.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/465.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/465.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/466.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/466.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/467.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/467.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/468.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/468.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/469.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/469.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/47.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/47.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/470.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/470.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/471.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/471.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/472.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/472.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/473.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/473.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/474.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/474.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/475.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/475.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/476.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/476.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/477.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/477.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/478.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/478.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/479.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/479.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/48.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/48.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/480.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/480.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/481.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/481.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/482.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/482.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/483.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/483.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/484.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/484.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/485.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/485.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/486.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/486.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/487.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/487.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/488.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/488.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/489.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/489.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/49.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/49.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/490.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/490.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/491.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/491.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/492.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/492.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/492_sky.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/492_sky.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/493.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/493.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/494.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/494.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/495.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/495.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/496.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/496.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/497.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/497.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/498.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/498.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/499.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/499.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/5.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/5.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/50.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/50.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/500.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/500.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/501.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/501.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/502.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/502.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/503.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/503.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/504.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/504.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/505.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/505.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/506.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/506.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/507.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/507.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/508.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/508.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/509.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/509.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/51.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/51.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/510.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/510.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/511.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/511.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/512.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/512.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/513.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/513.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/514.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/514.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/515.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/515.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/516.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/516.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/517.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/517.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/518.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/518.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/519.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/519.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/52.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/52.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/520.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/520.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/521.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/521.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/522.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/522.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/523.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/523.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/524.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/524.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/525.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/525.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/526.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/526.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/527.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/527.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/528.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/528.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/529.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/529.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/53.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/53.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/530.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/530.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/531.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/531.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/532.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/532.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/533.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/533.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/534.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/534.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/535.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/535.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/536.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/536.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/537.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/537.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/538.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/538.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/539.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/539.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/54.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/54.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/540.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/540.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/541.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/541.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/542.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/542.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/543.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/543.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/544.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/544.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/545.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/545.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/546.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/546.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/547.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/547.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/548.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/548.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/549.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/549.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/55.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/55.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/550.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/550.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/551.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/551.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/552.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/552.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/553.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/553.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/554.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/554.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/555.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/555.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/556.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/556.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/557.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/557.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/558.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/558.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/559.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/559.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/56.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/56.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/560.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/560.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/561.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/561.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/562.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/562.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/563.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/563.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/564.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/564.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/565.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/565.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/566.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/566.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/567.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/567.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/568.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/568.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/569.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/569.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/57.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/57.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/570.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/570.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/571.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/571.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/572.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/572.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/573.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/573.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/574.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/574.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/575.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/575.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/576.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/576.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/577.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/577.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/578.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/578.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/579.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/579.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/58.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/58.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/580.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/580.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/581.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/581.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/582.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/582.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/583.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/583.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/584.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/584.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/585.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/585.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/586.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/586.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/587.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/587.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/588.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/588.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/589.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/589.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/59.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/59.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/590.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/590.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/591.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/591.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/592.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/592.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/593.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/593.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/594.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/594.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/595.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/595.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/596.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/596.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/597.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/597.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/598.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/598.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/599.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/599.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/6.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/6.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/60.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/60.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/600.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/600.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/601.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/601.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/602.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/602.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/603.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/603.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/604.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/604.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/605.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/605.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/606.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/606.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/607.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/607.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/608.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/608.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/609.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/609.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/61.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/61.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/610.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/610.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/611.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/611.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/612.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/612.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/613.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/613.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/614.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/614.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/615.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/615.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/616.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/616.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/617.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/617.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/618.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/618.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/619.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/619.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/62.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/62.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/620.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/620.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/621.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/621.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/622.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/622.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/623.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/623.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/624.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/624.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/625.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/625.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/626.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/626.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/627.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/627.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/628.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/628.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/629.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/629.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/63.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/63.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/630.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/630.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/631.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/631.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/632.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/632.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/633.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/633.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/634.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/634.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/635.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/635.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/636.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/636.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/637.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/637.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/638.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/638.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/639.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/639.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/64.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/64.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/640.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/640.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/641.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/641.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/642.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/642.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/643.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/643.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/644.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/644.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/645.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/645.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/646.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/646.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/647.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/647.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/648.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/648.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/649.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/649.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/65.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/65.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/650.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/650.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/651.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/651.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/652.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/652.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/653.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/653.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/654.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/654.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/655.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/655.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/656.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/656.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/657.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/657.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/658.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/658.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/659.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/659.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/66.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/66.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/660.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/660.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/661.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/661.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/662.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/662.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/663.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/663.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/664.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/664.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/665.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/665.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/666.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/666.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/667.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/667.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/668.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/668.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/669.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/669.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/67.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/67.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/670.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/670.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/671.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/671.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/672.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/672.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/673.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/673.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/674.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/674.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/675.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/675.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/676.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/676.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/677.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/677.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/678.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/678.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/679.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/679.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/68.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/68.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/680.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/680.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/681.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/681.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/682.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/682.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/683.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/683.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/684.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/684.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/685.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/685.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/686.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/686.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/687.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/687.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/688.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/688.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/689.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/689.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/69.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/69.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/690.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/690.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/691.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/691.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/692.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/692.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/693.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/693.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/694.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/694.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/695.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/695.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/696.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/696.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/697.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/697.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/698.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/698.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/699.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/699.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/7.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/7.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/70.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/70.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/700.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/700.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/701.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/701.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/702.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/702.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/703.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/703.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/704.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/704.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/705.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/705.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/706.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/706.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/707.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/707.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/708.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/708.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/709.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/709.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/71.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/71.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/710 - Pumpkaboo (Super Size).mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/710 - Pumpkaboo (Super Size).mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/710.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/710.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/711 - Gourgeist (Super Size).mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/711 - Gourgeist (Super Size).mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/711.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/711.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/712.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/712.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/713.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/713.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/714.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/714.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/715.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/715.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/716.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/716.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/717.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/717.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/718.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/718.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/72.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/72.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/721.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/721.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/73.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/73.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/74.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/74.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/75.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/75.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/76.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/76.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/77.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/77.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/78.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/78.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/79.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/79.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/8.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/8.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/80.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/80.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/81.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/81.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/82.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/82.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/83.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/83.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/84.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/84.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/85.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/85.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/86.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/86.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/87.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/87.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/88.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/88.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/89.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/89.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/9.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/9.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/90.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/90.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/91.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/91.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/92.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/92.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/93.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/93.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/94.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/94.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/95.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/95.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/96.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/96.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/97.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/97.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/98.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/98.mp3 + +#begin GameModes/Kolben/Content/Sounds/Cries/99.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Cries/99.mp3 + +#begin GameModes/Kolben/Content/Sounds/PC/pc_logon.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/PC/pc_logon.mp3 + +#begin GameModes/Kolben/Content/Sounds/PC/pc_off.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/PC/pc_off.mp3 + +#begin GameModes/Kolben/Content/Sounds/PC/pc_turnon.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/PC/pc_turnon.mp3 + +#begin GameModes/Kolben/Content/Sounds/Pokegear/pokegear_off.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Pokegear/pokegear_off.mp3 + +#begin GameModes/Kolben/Content/Sounds/Pokegear/pokegear_on.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Pokegear/pokegear_on.mp3 + +#begin GameModes/Kolben/Content/Sounds/badge_acquired.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/badge_acquired.mp3 + +#begin GameModes/Kolben/Content/Sounds/bump.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/bump.mp3 + +#begin GameModes/Kolben/Content/Sounds/buy2.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/buy2.mp3 + +#begin GameModes/Kolben/Content/Sounds/destroy.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/destroy.mp3 + +#begin GameModes/Kolben/Content/Sounds/egg_hatch.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/egg_hatch.mp3 + +#begin GameModes/Kolben/Content/Sounds/enter.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/enter.mp3 + +#begin GameModes/Kolben/Content/Sounds/ice_break.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/ice_break.mp3 + +#begin GameModes/Kolben/Content/Sounds/ice_crack.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/ice_crack.mp3 + +#begin GameModes/Kolben/Content/Sounds/itemfinder.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/itemfinder.mp3 + +#begin GameModes/Kolben/Content/Sounds/item_found.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/item_found.mp3 + +#begin GameModes/Kolben/Content/Sounds/jump_ledge.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/jump_ledge.mp3 + +#begin GameModes/Kolben/Content/Sounds/magnettrain.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/magnettrain.mp3 + +#begin GameModes/Kolben/Content/Sounds/menu_open.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/menu_open.mp3 + +#begin GameModes/Kolben/Content/Sounds/pickup.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/pickup.mp3 + +#begin GameModes/Kolben/Content/Sounds/PokeballOpen.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/PokeballOpen.mp3 + +#begin GameModes/Kolben/Content/Sounds/pokeball_set.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/pokeball_set.mp3 + +#begin GameModes/Kolben/Content/Sounds/pokemon_heal.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/pokemon_heal.mp3 + +#begin GameModes/Kolben/Content/Sounds/repel_use.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/repel_use.mp3 + +#begin GameModes/Kolben/Content/Sounds/Save.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/Save.mp3 + +#begin GameModes/Kolben/Content/Sounds/select.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/select.mp3 + +#begin GameModes/Kolben/Content/Sounds/shutter.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/shutter.mp3 + +#begin GameModes/Kolben/Content/Sounds/single_heal.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/single_heal.mp3 + +#begin GameModes/Kolben/Content/Sounds/success.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/success.mp3 + +#begin GameModes/Kolben/Content/Sounds/success_small.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/success_small.mp3 + +#begin GameModes/Kolben/Content/Sounds/teleport.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/teleport.mp3 + +#begin GameModes/Kolben/Content/Sounds/TossPokeball.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/TossPokeball.mp3 + +#begin GameModes/Kolben/Content/Sounds/trhq_alarm.mp3 +/importer:Mp3Importer +/processor:SoundEffectProcessor +/processorParam:Quality=Medium +/build:GameModes/Kolben/Content/Sounds/trhq_alarm.mp3 + diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/Goldenrod.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/Goldenrod.ogg new file mode 100644 index 000000000..6637335a7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/Goldenrod.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/HallofFame.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/HallofFame.ogg new file mode 100644 index 000000000..0ad135f86 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/HallofFame.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/IlexForest.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/IlexForest.ogg new file mode 100644 index 000000000..27cb8182d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/IlexForest.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/Johto_champion_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/Johto_champion_intro.ogg new file mode 100644 index 000000000..9e5a1743a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/Johto_champion_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/Looker_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/Looker_encounter.ogg new file mode 100644 index 000000000..e6b252a94 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/Looker_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic0.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic0.ogg new file mode 100644 index 000000000..3b4dd44bd Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic0.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic1.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic1.ogg new file mode 100644 index 000000000..5051ddf7a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic1.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic10.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic10.ogg new file mode 100644 index 000000000..0dab7c1be Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic10.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic11.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic11.ogg new file mode 100644 index 000000000..cc180b9c5 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic11.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic2.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic2.ogg new file mode 100644 index 000000000..a73a56f66 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic2.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic3.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic3.ogg new file mode 100644 index 000000000..b352c34d8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic3.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic4.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic4.ogg new file mode 100644 index 000000000..f25a6b463 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic4.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic5.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic5.ogg new file mode 100644 index 000000000..699e93b39 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic5.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic6.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic6.ogg new file mode 100644 index 000000000..43135cd51 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic6.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic7.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic7.ogg new file mode 100644 index 000000000..9a2b8daec Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic7.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic8.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic8.ogg new file mode 100644 index 000000000..f3bdd9fa3 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic8.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic9.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic9.ogg new file mode 100644 index 000000000..b53394a8e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/RouteMusic9.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/alph.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/alph.ogg new file mode 100644 index 000000000..98fb280c9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/alph.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ancient_ruins.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ancient_ruins.ogg new file mode 100644 index 000000000..ccc187846 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ancient_ruins.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/azalea.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/azalea.ogg new file mode 100644 index 000000000..eac6c7f84 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/azalea.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/barktown.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/barktown.ogg new file mode 100644 index 000000000..040967abb Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/barktown.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/champion.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/champion.mp3 deleted file mode 100644 index 60bc608a2..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/champion.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/elite.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/elite.mp3 deleted file mode 100644 index 60bc608a2..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/elite.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/leader.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/leader.mp3 deleted file mode 100644 index f0c7d2ee7..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/leader.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/trainer.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/trainer.mp3 deleted file mode 100644 index 5c439a5dc..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/trainer.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/wild.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/wild.mp3 deleted file mode 100644 index 5ce8f8fc9..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/defeat/wild.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/brain.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/brain.mp3 deleted file mode 100644 index 56ac580bc..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/brain.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/champion.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/champion.mp3 deleted file mode 100644 index 5a3eaf435..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/champion.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/elite.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/elite.mp3 deleted file mode 100644 index 2065298ff..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/elite.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/leader.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/leader.mp3 deleted file mode 100644 index 8573a7c35..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/leader.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/rival.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/rival.mp3 deleted file mode 100644 index 0cb49980d..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/rival.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/rocket.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/rocket.mp3 deleted file mode 100644 index 44987b93d..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/rocket.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/trainer.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/trainer.mp3 deleted file mode 100644 index cb4c941c4..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/trainer.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/wild.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/wild.mp3 deleted file mode 100644 index 51c17def3..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/johto/wild.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/kanto/leader.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/kanto/leader.mp3 deleted file mode 100644 index 183be902a..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/kanto/leader.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/kanto/trainer.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/kanto/trainer.mp3 deleted file mode 100644 index c8809a5d4..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/kanto/trainer.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/kanto/wild.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/kanto/wild.mp3 deleted file mode 100644 index c7bcdb8ed..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/kanto/wild.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/entei.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/entei.mp3 deleted file mode 100644 index 9f0819348..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/entei.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/ho-oh.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/ho-oh.mp3 deleted file mode 100644 index 8ab478d5c..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/ho-oh.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/lugia.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/lugia.mp3 deleted file mode 100644 index 7fe0c2b64..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/lugia.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/raikou.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/raikou.mp3 deleted file mode 100644 index 9f0819348..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/raikou.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/space.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/space.mp3 deleted file mode 100644 index abe0d2bc8..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/space.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/suicune.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/suicune.mp3 deleted file mode 100644 index 9f0819348..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/intro/legend/suicune.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/brain.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/brain.mp3 deleted file mode 100644 index d33acf313..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/brain.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/champion.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/champion.mp3 deleted file mode 100644 index 83d374170..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/champion.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/elite.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/elite.mp3 deleted file mode 100644 index cd91eacca..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/elite.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/leader.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/leader.mp3 deleted file mode 100644 index f5f3c73be..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/leader.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/rival.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/rival.mp3 deleted file mode 100644 index 8724c23e5..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/rival.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/rocket.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/rocket.mp3 deleted file mode 100644 index 53d7c01ca..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/rocket.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/trainer.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/trainer.mp3 deleted file mode 100644 index 7c7a98ed7..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/trainer.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/wild.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/wild.mp3 deleted file mode 100644 index b81fada30..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/johto/wild.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/kanto/leader.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/kanto/leader.mp3 deleted file mode 100644 index c66d8ad34..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/kanto/leader.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/kanto/trainer.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/kanto/trainer.mp3 deleted file mode 100644 index 918dbad6d..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/kanto/trainer.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/kanto/wild.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/kanto/wild.mp3 deleted file mode 100644 index 3759e6f18..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/kanto/wild.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/entei.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/entei.mp3 deleted file mode 100644 index 0a55dd711..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/entei.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/ho-oh.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/ho-oh.mp3 deleted file mode 100644 index 2a6f17a9c..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/ho-oh.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/lugia.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/lugia.mp3 deleted file mode 100644 index f09469ed6..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/lugia.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/raikou.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/raikou.mp3 deleted file mode 100644 index 0a55dd711..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/raikou.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/space.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/space.mp3 deleted file mode 100644 index fda5be1c3..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/space.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/suicune.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/suicune.mp3 deleted file mode 100644 index 0a55dd711..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battle/main/legend/suicune.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battlefactory.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battlefactory.ogg new file mode 100644 index 000000000..a62ae9b38 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battlefactory.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battletower.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battletower.ogg new file mode 100644 index 000000000..5a46fd138 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/battletower.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/brain_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/brain_battle.ogg new file mode 100644 index 000000000..cd5eba274 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/brain_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/brain_battle_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/brain_battle_intro.ogg new file mode 100644 index 000000000..1228df230 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/brain_battle_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/bugcontest.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/bugcontest.ogg new file mode 100644 index 000000000..57600316a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/bugcontest.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/center.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/center.mp3 deleted file mode 100644 index 6381d8722..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/center.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/elmslab.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/elmslab.mp3 deleted file mode 100644 index 2f0935ec8..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/elmslab.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/frontier/factory.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/frontier/factory.mp3 deleted file mode 100644 index 50125b1d0..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/frontier/factory.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/frontier/tower.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/frontier/tower.mp3 deleted file mode 100644 index b4fdffd45..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/frontier/tower.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/gamecorner.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/gamecorner.mp3 deleted file mode 100644 index 137ab0a8d..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/gamecorner.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/gym.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/gym.mp3 deleted file mode 100644 index d07bfc703..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/gym.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/mart.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/mart.mp3 deleted file mode 100644 index f4c59a02e..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/mart.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/oakslab.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/oakslab.mp3 deleted file mode 100644 index 933485449..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/oakslab.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/ssaqua.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/ssaqua.mp3 deleted file mode 100644 index 94b7af0f1..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/building/ssaqua.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/burnedtower.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/burnedtower.ogg new file mode 100644 index 000000000..3681948da Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/burnedtower.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/celadon.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/celadon.ogg new file mode 100644 index 000000000..c0bc0356a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/celadon.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/center.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/center.ogg new file mode 100644 index 000000000..aa5d0664d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/center.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cerulean.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cerulean.ogg new file mode 100644 index 000000000..8cf244303 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cerulean.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cerulean_cave.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cerulean_cave.ogg new file mode 100644 index 000000000..2ec42e667 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cerulean_cave.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/champion_defeat.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/champion_defeat.ogg new file mode 100644 index 000000000..5e2cf0f06 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/champion_defeat.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cherrygrove.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cherrygrove.ogg new file mode 100644 index 000000000..78d6d79fe Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cherrygrove.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cinnabar.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cinnabar.ogg new file mode 100644 index 000000000..92a5ece53 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/cinnabar.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/credits.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/credits.ogg new file mode 100644 index 000000000..a3b5c0897 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/credits.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dark_cave.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dark_cave.ogg new file mode 100644 index 000000000..adee602bc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dark_cave.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/diglettscave.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/diglettscave.ogg new file mode 100644 index 000000000..7d1a85b6e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/diglettscave.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dragonsden.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dragonsden.ogg new file mode 100644 index 000000000..0597f9b99 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dragonsden.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/alph.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/alph.mp3 deleted file mode 100644 index 50c7b750a..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/alph.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/ancientruins.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/ancientruins.mp3 deleted file mode 100644 index 7001f14c7..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/ancientruins.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/cerulean.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/cerulean.mp3 deleted file mode 100644 index 1c50e35f7..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/cerulean.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/dark.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/dark.mp3 deleted file mode 100644 index 2db159629..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/dark.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/digletts.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/digletts.mp3 deleted file mode 100644 index 72bdbfdac..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/digletts.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/dragonsden.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/dragonsden.mp3 deleted file mode 100644 index 240ef14f3..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/dragonsden.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/mtmoonsq.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/mtmoonsq.mp3 deleted file mode 100644 index 6ced17097..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/mtmoonsq.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/rocketbase.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/rocketbase.mp3 deleted file mode 100644 index 1e86d2c74..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/rocketbase.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/victoryroad.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/victoryroad.mp3 deleted file mode 100644 index 55b081b63..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/cave/victoryroad.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/forest/ilex.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/forest/ilex.mp3 deleted file mode 100644 index b09964ba7..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/forest/ilex.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/forest/nationalpark.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/forest/nationalpark.mp3 deleted file mode 100644 index f296d514e..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/forest/nationalpark.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/forest/viridian.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/forest/viridian.mp3 deleted file mode 100644 index a5db0ba15..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/forest/viridian.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/burned.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/burned.mp3 deleted file mode 100644 index fb7ed56b2..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/burned.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/lighthouse.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/lighthouse.mp3 deleted file mode 100644 index 91ef58c19..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/lighthouse.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/sprout.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/sprout.mp3 deleted file mode 100644 index bbe9f9fa2..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/sprout.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/star.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/star.mp3 deleted file mode 100644 index b231c2814..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/star.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/tin.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/tin.mp3 deleted file mode 100644 index 2a02db986..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/dungeon/tower/tin.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ecruteak.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ecruteak.ogg new file mode 100644 index 000000000..f1408e555 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ecruteak.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/elite_defeat.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/elite_defeat.ogg new file mode 100644 index 000000000..b09b284f2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/elite_defeat.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/elmslab.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/elmslab.ogg new file mode 100644 index 000000000..201cf5f55 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/elmslab.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/eusine.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/eusine.mp3 deleted file mode 100644 index 8b8d8237e..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/eusine.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/kimono.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/kimono.mp3 deleted file mode 100644 index 4f7afda6d..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/kimono.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/looker.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/looker.mp3 deleted file mode 100644 index 4d9443f7d..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/looker.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/mary.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/mary.mp3 deleted file mode 100644 index 6053f7da1..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/mary.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/oak.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/oak.mp3 deleted file mode 100644 index 10410111b..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/oak.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/rival.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/rival.mp3 deleted file mode 100644 index f3e7e3820..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/rival.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/rocket.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/rocket.mp3 deleted file mode 100644 index b17326378..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/rocket.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/trainer.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/trainer.mp3 deleted file mode 100644 index 0273a05a5..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/encounter/trainer.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/entei_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/entei_battle.ogg new file mode 100644 index 000000000..a7764346c Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/entei_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/entei_battle_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/entei_battle_intro.ogg new file mode 100644 index 000000000..8dcf6c3f9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/entei_battle_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/eusine_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/eusine_encounter.ogg new file mode 100644 index 000000000..16e994d76 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/eusine_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/bugcontest.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/bugcontest.mp3 deleted file mode 100644 index ec91f4af5..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/bugcontest.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/halloffame.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/halloffame.mp3 deleted file mode 100644 index e5a8e034e..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/halloffame.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/safari.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/safari.mp3 deleted file mode 100644 index 0c6f5399d..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/safari.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/showmearound.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/showmearound.mp3 deleted file mode 100644 index 426244639..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/event/showmearound.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/evolution.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/evolution.ogg new file mode 100644 index 000000000..a970a94b2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/evolution.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/frontier.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/frontier.ogg new file mode 100644 index 000000000..19d757295 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/frontier.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/gamecorner.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/gamecorner.ogg new file mode 100644 index 000000000..26b72ce23 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/gamecorner.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/gts.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/gts.ogg new file mode 100644 index 000000000..1c854e8b4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/gts.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/gym.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/gym.ogg new file mode 100644 index 000000000..ac14f48fc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/gym.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ho-oh_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ho-oh_battle.ogg new file mode 100644 index 000000000..a9242a01d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ho-oh_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ho-oh_battle_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ho-oh_battle_intro.ogg new file mode 100644 index 000000000..37a0df39f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ho-oh_battle_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/indigo.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/indigo.ogg new file mode 100644 index 000000000..12dca7ba7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/indigo.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/Goldenrod.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/Goldenrod.ogg new file mode 100644 index 000000000..4bc2d4e42 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/Goldenrod.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/IlexForest.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/IlexForest.ogg new file mode 100644 index 000000000..327a30643 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/IlexForest.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic1.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic1.ogg new file mode 100644 index 000000000..bb9a596b7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic1.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic10.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic10.ogg new file mode 100644 index 000000000..16a2d7a77 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic10.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic11.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic11.ogg new file mode 100644 index 000000000..e716d7653 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic11.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic2.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic2.ogg new file mode 100644 index 000000000..3d6a4beed Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic2.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic3.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic3.ogg new file mode 100644 index 000000000..d4b6a72c6 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic3.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic4.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic4.ogg new file mode 100644 index 000000000..5f7e3827d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic4.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic5.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic5.ogg new file mode 100644 index 000000000..38e642af2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic5.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic6.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic6.ogg new file mode 100644 index 000000000..ec8148ad0 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic6.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic7.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic7.ogg new file mode 100644 index 000000000..fbc790d77 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic7.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic8.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic8.ogg new file mode 100644 index 000000000..257c2b3f5 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/RouteMusic8.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/azalea.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/azalea.ogg new file mode 100644 index 000000000..0108630b9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/azalea.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/barktown.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/barktown.ogg new file mode 100644 index 000000000..bd50d9a98 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/barktown.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/johto/trainer.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/johto/trainer.mp3 deleted file mode 100644 index 7debedf2f..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/johto/trainer.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/johto/wild.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/johto/wild.mp3 deleted file mode 100644 index 946c48a3a..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/johto/wild.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/kanto/leader.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/kanto/leader.mp3 deleted file mode 100644 index 9c3c26d8e..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/kanto/leader.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/kanto/trainer.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/kanto/trainer.mp3 deleted file mode 100644 index 04390463c..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/kanto/trainer.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/entei.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/entei.mp3 deleted file mode 100644 index 28f486a4a..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/entei.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/ho-oh.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/ho-oh.mp3 deleted file mode 100644 index 44b334743..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/ho-oh.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/lugia.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/lugia.mp3 deleted file mode 100644 index 4abf18371..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/lugia.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/raikou.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/raikou.mp3 deleted file mode 100644 index 28f486a4a..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/raikou.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/space.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/space.mp3 deleted file mode 100644 index d6859cb18..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/space.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/suicune.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/suicune.mp3 deleted file mode 100644 index 28f486a4a..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battle/main/legend/suicune.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battlefactory.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battlefactory.ogg new file mode 100644 index 000000000..108fdf930 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/battlefactory.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/bugcontest.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/bugcontest.ogg new file mode 100644 index 000000000..0b84ddebf Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/bugcontest.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/elmslab.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/elmslab.mp3 deleted file mode 100644 index ea33faa30..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/elmslab.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/frontier/factory.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/frontier/factory.mp3 deleted file mode 100644 index cc45b4242..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/frontier/factory.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/gamecorner.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/gamecorner.mp3 deleted file mode 100644 index 64a179e10..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/gamecorner.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/mart.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/mart.mp3 deleted file mode 100644 index 600dd3e68..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/mart.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/oakslab.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/oakslab.mp3 deleted file mode 100644 index c05b89935..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/oakslab.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/ssaqua.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/ssaqua.mp3 deleted file mode 100644 index e8a182125..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/building/ssaqua.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/burnedtower.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/burnedtower.ogg new file mode 100644 index 000000000..8cf6e5a81 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/burnedtower.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/celadon.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/celadon.ogg new file mode 100644 index 000000000..fe10747df Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/celadon.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/cerulean.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/cerulean.ogg new file mode 100644 index 000000000..b64f72e34 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/cerulean.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/cerulean_cave.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/cerulean_cave.ogg new file mode 100644 index 000000000..acfa12b47 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/cerulean_cave.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/champion_defeat.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/champion_defeat.ogg new file mode 100644 index 000000000..8d9322d26 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/champion_defeat.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/cherrygrove.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/cherrygrove.ogg new file mode 100644 index 000000000..6636396af Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/cherrygrove.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/diglettscave.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/diglettscave.ogg new file mode 100644 index 000000000..1b43b9654 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/diglettscave.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/cave/cerulean.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/cave/cerulean.mp3 deleted file mode 100644 index ed00fe972..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/cave/cerulean.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/cave/digletts.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/cave/digletts.mp3 deleted file mode 100644 index 42dc85173..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/cave/digletts.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/tower/burned.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/tower/burned.mp3 deleted file mode 100644 index 6f2da8133..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/tower/burned.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/tower/star.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/tower/star.mp3 deleted file mode 100644 index d774c0329..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/dungeon/tower/star.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/elite_defeat.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/elite_defeat.ogg new file mode 100644 index 000000000..233994d6a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/elite_defeat.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/elmslab.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/elmslab.ogg new file mode 100644 index 000000000..671f17876 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/elmslab.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/mary.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/mary.mp3 deleted file mode 100644 index 217189c75..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/mary.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/oak.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/oak.mp3 deleted file mode 100644 index 4713d516f..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/oak.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/rival.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/rival.mp3 deleted file mode 100644 index 9a1549dab..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/rival.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/trainer.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/trainer.mp3 deleted file mode 100644 index 6fa734fbf..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/encounter/trainer.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/entei_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/entei_battle.ogg new file mode 100644 index 000000000..c8726160d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/entei_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/event/bugcontest.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/event/bugcontest.mp3 deleted file mode 100644 index fedd331ab..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/event/bugcontest.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/event/showmearound.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/event/showmearound.mp3 deleted file mode 100644 index 1023b253f..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/event/showmearound.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/evolution.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/evolution.ogg new file mode 100644 index 000000000..4b4fa9465 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/evolution.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/frontier.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/frontier.ogg new file mode 100644 index 000000000..b4ef16de6 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/frontier.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/gamecorner.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/gamecorner.ogg new file mode 100644 index 000000000..422ccc5c8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/gamecorner.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/gts.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/gts.ogg new file mode 100644 index 000000000..f2f7a3b0b Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/gts.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/ho-oh_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/ho-oh_battle.ogg new file mode 100644 index 000000000..4848f480b Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/ho-oh_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_elite.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_elite.ogg new file mode 100644 index 000000000..d1ed825dc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_elite.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_leader.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_leader.ogg new file mode 100644 index 000000000..98f3f5aae Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_leader.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_rival_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_rival_encounter.ogg new file mode 100644 index 000000000..8b212a8e2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_rival_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_rocket.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_rocket.ogg new file mode 100644 index 000000000..140854909 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_rocket.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_trainer.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_trainer.ogg new file mode 100644 index 000000000..c7c66b5f9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_trainer.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_wild.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_wild.ogg new file mode 100644 index 000000000..08a6ff2f9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/johto_wild.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/kanto_leader.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/kanto_leader.ogg new file mode 100644 index 000000000..cdc37eaf2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/kanto_leader.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/kanto_trainer.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/kanto_trainer.ogg new file mode 100644 index 000000000..abcec4f46 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/kanto_trainer.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/lavender.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/lavender.ogg new file mode 100644 index 000000000..3b6032401 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/lavender.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/leader_defeat.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/leader_defeat.ogg new file mode 100644 index 000000000..ea036cccf Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/leader_defeat.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/lobby.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/lobby.ogg new file mode 100644 index 000000000..0a6d322e1 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/lobby.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/lugia_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/lugia_battle.ogg new file mode 100644 index 000000000..7bbebb71e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/lugia_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/mart.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/mart.ogg new file mode 100644 index 000000000..06f9dad5a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/mart.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/mary_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/mary_encounter.ogg new file mode 100644 index 000000000..c7553a1dc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/mary_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/oak_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/oak_encounter.ogg new file mode 100644 index 000000000..973f07206 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/oak_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/oakslab.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/oakslab.ogg new file mode 100644 index 000000000..ca26297ef Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/oakslab.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pokeflute.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pokeflute.ogg new file mode 100644 index 000000000..89f9c7035 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pokeflute.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pokemon_lullaby.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pokemon_lullaby.ogg new file mode 100644 index 000000000..22bd101be Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pokemon_lullaby.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pokemon_march.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pokemon_march.ogg new file mode 100644 index 000000000..a831ff9c5 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pokemon_march.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pvp.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pvp.ogg new file mode 100644 index 000000000..4ee94505e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/pvp.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/radio/lullaby.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/radio/lullaby.mp3 deleted file mode 100644 index b4926059e..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/radio/lullaby.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/radio/march.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/radio/march.mp3 deleted file mode 100644 index 13a0df58f..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/radio/march.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/radio/pokeflute.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/radio/pokeflute.mp3 deleted file mode 100644 index 931956b78..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/radio/pokeflute.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/raikou_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/raikou_battle.ogg new file mode 100644 index 000000000..d9d598d32 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/raikou_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/ride.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/ride.ogg new file mode 100644 index 000000000..0479c228f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/ride.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/1.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/1.mp3 deleted file mode 100644 index 490db9d26..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/1.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/10.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/10.mp3 deleted file mode 100644 index 7ec817515..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/10.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/11.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/11.mp3 deleted file mode 100644 index c4f119bfb..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/11.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/2.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/2.mp3 deleted file mode 100644 index 3facaa3f7..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/2.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/3.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/3.mp3 deleted file mode 100644 index 881fb1497..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/3.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/4.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/4.mp3 deleted file mode 100644 index 4671c95fd..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/4.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/5.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/5.mp3 deleted file mode 100644 index ba7237eb7..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/5.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/6.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/6.mp3 deleted file mode 100644 index 89042bc92..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/6.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/7.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/7.mp3 deleted file mode 100644 index 66f12350c..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/7.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/8.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/8.mp3 deleted file mode 100644 index 5cff81323..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/route/8.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/safari.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/safari.ogg new file mode 100644 index 000000000..1f442e728 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/safari.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/show_me_around.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/show_me_around.ogg new file mode 100644 index 000000000..6b921fadd Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/show_me_around.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/space_legend_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/space_legend_battle.ogg new file mode 100644 index 000000000..86e495b38 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/space_legend_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/sprout_tower.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/sprout_tower.ogg new file mode 100644 index 000000000..adb6d9ada Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/sprout_tower.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/ssaqua.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/ssaqua.ogg new file mode 100644 index 000000000..2d47173c3 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/ssaqua.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/startower.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/startower.ogg new file mode 100644 index 000000000..b6bb81773 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/startower.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/suicune_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/suicune_battle.ogg new file mode 100644 index 000000000..5ce89714a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/suicune_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/evolution.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/evolution.mp3 deleted file mode 100644 index 67a337b7e..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/evolution.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/gts.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/gts.mp3 deleted file mode 100644 index 592911db3..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/gts.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/lobby.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/lobby.mp3 deleted file mode 100644 index f25057145..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/lobby.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/pvp.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/pvp.mp3 deleted file mode 100644 index 5880ac929..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/pvp.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/ride.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/ride.mp3 deleted file mode 100644 index 901745b7f..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/system/ride.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/azalea.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/azalea.mp3 deleted file mode 100644 index fdd43e930..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/azalea.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/celadon.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/celadon.mp3 deleted file mode 100644 index b60544f39..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/celadon.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/cerulean.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/cerulean.mp3 deleted file mode 100644 index f273e8193..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/cerulean.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/cherrygrove.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/cherrygrove.mp3 deleted file mode 100644 index 5b5730ce1..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/cherrygrove.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/frontier.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/frontier.mp3 deleted file mode 100644 index ab0ee341c..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/frontier.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/goldenrod.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/goldenrod.mp3 deleted file mode 100644 index 1fb53a4ac..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/goldenrod.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/lavender.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/lavender.mp3 deleted file mode 100644 index 483140387..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/lavender.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/newbark.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/newbark.mp3 deleted file mode 100644 index 2e5a9e38d..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/newbark.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/safari.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/safari.mp3 deleted file mode 100644 index 66070ee87..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/safari.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/vermilion.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/vermilion.mp3 deleted file mode 100644 index 2cc1d6d9d..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/vermilion.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/violet.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/violet.mp3 deleted file mode 100644 index a1553cb11..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/town/violet.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/trainer_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/trainer_encounter.ogg new file mode 100644 index 000000000..df8bcf8cb Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/trainer_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/vermilion.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/vermilion.ogg new file mode 100644 index 000000000..1e69c8feb Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/vermilion.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/violet.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/violet.ogg new file mode 100644 index 000000000..58836e849 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/intro/violet.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_champion.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_champion.ogg new file mode 100644 index 000000000..a82ec2f84 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_champion.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_elite.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_elite.ogg new file mode 100644 index 000000000..40381134b Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_elite.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_elite_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_elite_intro.ogg new file mode 100644 index 000000000..818aab608 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_elite_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_leader.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_leader.ogg new file mode 100644 index 000000000..3cc5a4a7f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_leader.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_leader_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_leader_intro.ogg new file mode 100644 index 000000000..8df135117 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_leader_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rival.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rival.ogg new file mode 100644 index 000000000..e09d1dfbc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rival.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rival_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rival_encounter.ogg new file mode 100644 index 000000000..daaa51c5e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rival_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rivalintro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rivalintro.ogg new file mode 100644 index 000000000..ae399e343 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rivalintro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rocket.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rocket.ogg new file mode 100644 index 000000000..146c4309a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rocket.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rocket_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rocket_encounter.ogg new file mode 100644 index 000000000..ca5f1578d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rocket_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rocket_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rocket_intro.ogg new file mode 100644 index 000000000..a60bbc0dc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_rocket_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_trainer.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_trainer.ogg new file mode 100644 index 000000000..d3b34d74b Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_trainer.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_trainer_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_trainer_intro.ogg new file mode 100644 index 000000000..1b6d1c52f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_trainer_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_wild.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_wild.ogg new file mode 100644 index 000000000..cf0d1eabd Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_wild.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_wild_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_wild_intro.ogg new file mode 100644 index 000000000..93bb8f95e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/johto_wild_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_leader.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_leader.ogg new file mode 100644 index 000000000..815a026f5 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_leader.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_leader_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_leader_intro.ogg new file mode 100644 index 000000000..4e540190b Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_leader_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_trainer.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_trainer.ogg new file mode 100644 index 000000000..2f8d1639e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_trainer.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_trainer_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_trainer_intro.ogg new file mode 100644 index 000000000..3a33666cd Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_trainer_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_wild.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_wild.ogg new file mode 100644 index 000000000..ee59c1fd8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_wild.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_wild_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_wild_intro.ogg new file mode 100644 index 000000000..ed0339810 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kanto_wild_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kimono.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kimono.ogg new file mode 100644 index 000000000..d46cb3b5d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kimono.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kvictoryroad.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kvictoryroad.ogg new file mode 100644 index 000000000..865d112de Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/kvictoryroad.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lavender.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lavender.ogg new file mode 100644 index 000000000..eaac7d8c4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lavender.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/leader_defeat.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/leader_defeat.ogg new file mode 100644 index 000000000..85e4bbd0e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/leader_defeat.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lighthouse.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lighthouse.ogg new file mode 100644 index 000000000..104a33114 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lighthouse.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lobby.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lobby.ogg new file mode 100644 index 000000000..83270e4b8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lobby.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lugia_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lugia_battle.ogg new file mode 100644 index 000000000..223b3a02b Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lugia_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lugia_battle_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lugia_battle_intro.ogg new file mode 100644 index 000000000..65bfd12b5 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/lugia_battle_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/mart.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/mart.ogg new file mode 100644 index 000000000..0acfcae81 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/mart.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/mary_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/mary_encounter.ogg new file mode 100644 index 000000000..20919f2d8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/mary_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/mtmoonsq.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/mtmoonsq.ogg new file mode 100644 index 000000000..938a55721 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/mtmoonsq.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/nationalpark.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/nationalpark.ogg new file mode 100644 index 000000000..e7bf5bc9e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/nationalpark.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/oak_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/oak_encounter.ogg new file mode 100644 index 000000000..dbcd69df4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/oak_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/oakslab.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/oakslab.ogg new file mode 100644 index 000000000..5dafd121a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/oakslab.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pallet.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pallet.ogg new file mode 100644 index 000000000..ecbffefd0 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pallet.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pokeflute.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pokeflute.ogg new file mode 100644 index 000000000..fd02e0eba Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pokeflute.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pokemon_lullaby.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pokemon_lullaby.ogg new file mode 100644 index 000000000..af251c4ad Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pokemon_lullaby.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pokemon_march.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pokemon_march.ogg new file mode 100644 index 000000000..5bb97d647 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pokemon_march.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pvp.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pvp.ogg new file mode 100644 index 000000000..8c954748d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/pvp.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/rHideout.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/rHideout.ogg new file mode 100644 index 000000000..0047ebacf Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/rHideout.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/lullaby.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/lullaby.mp3 deleted file mode 100644 index af91ff44d..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/lullaby.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/march.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/march.mp3 deleted file mode 100644 index 7153d37be..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/march.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/pokeflute.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/pokeflute.mp3 deleted file mode 100644 index 50044834e..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/pokeflute.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/rocket.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/rocket.mp3 deleted file mode 100644 index 1ad7f3a22..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/rocket.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/unown.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/unown.mp3 deleted file mode 100644 index 8d6dd8734..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/radio/unown.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/raikou_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/raikou_battle.ogg new file mode 100644 index 000000000..272b4e187 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/raikou_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/raikou_battle_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/raikou_battle_intro.ogg new file mode 100644 index 000000000..0c6da7f60 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/raikou_battle_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ride.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ride.ogg new file mode 100644 index 000000000..068b3da0d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ride.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/rocket_broadcast.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/rocket_broadcast.ogg new file mode 100644 index 000000000..69392aa3d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/rocket_broadcast.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/0.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/0.mp3 deleted file mode 100644 index e53b46920..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/0.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/1.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/1.mp3 deleted file mode 100644 index 7de601ded..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/1.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/10.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/10.mp3 deleted file mode 100644 index 917c39637..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/10.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/11.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/11.mp3 deleted file mode 100644 index 4b432f8a2..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/11.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/2.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/2.mp3 deleted file mode 100644 index 949281189..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/2.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/3.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/3.mp3 deleted file mode 100644 index 392593d48..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/3.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/4.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/4.mp3 deleted file mode 100644 index 288e657a3..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/4.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/5.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/5.mp3 deleted file mode 100644 index 102223a8b..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/5.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/6.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/6.mp3 deleted file mode 100644 index 6acd7e001..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/6.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/7.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/7.mp3 deleted file mode 100644 index d553527bd..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/7.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/8.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/8.mp3 deleted file mode 100644 index c7c125223..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/8.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/9.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/9.mp3 deleted file mode 100644 index 5540b18dd..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/route/9.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/safari.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/safari.ogg new file mode 100644 index 000000000..e2eebfe38 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/safari.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/safarigate.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/safarigate.ogg new file mode 100644 index 000000000..ff95153ab Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/safarigate.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/show_me_around.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/show_me_around.ogg new file mode 100644 index 000000000..2e73e8362 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/show_me_around.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/space_legend_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/space_legend_battle.ogg new file mode 100644 index 000000000..211e2577d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/space_legend_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/space_legend_battle_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/space_legend_battle_intro.ogg new file mode 100644 index 000000000..791d14603 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/space_legend_battle_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/sprout_tower.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/sprout_tower.ogg new file mode 100644 index 000000000..8105bf4a5 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/sprout_tower.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ssaqua.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ssaqua.ogg new file mode 100644 index 000000000..aa14a51e9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/ssaqua.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/startower.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/startower.ogg new file mode 100644 index 000000000..6672f27aa Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/startower.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/suicune_battle.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/suicune_battle.ogg new file mode 100644 index 000000000..35c7dd2b0 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/suicune_battle.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/suicune_battle_intro.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/suicune_battle_intro.ogg new file mode 100644 index 000000000..fef189b88 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/suicune_battle_intro.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/surf.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/surf.ogg new file mode 100644 index 000000000..3b1c23cf8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/surf.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/credits.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/credits.mp3 deleted file mode 100644 index 79ee8f0ef..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/credits.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/evolution.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/evolution.mp3 deleted file mode 100644 index 6268848da..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/evolution.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/gameintro.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/gameintro.mp3 deleted file mode 100644 index b18d6a78a..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/gameintro.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/gts.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/gts.mp3 deleted file mode 100644 index 0c34aa640..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/gts.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/lobby.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/lobby.mp3 deleted file mode 100644 index c88e6bdbe..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/lobby.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/pvp.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/pvp.mp3 deleted file mode 100644 index 65393ccbe..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/pvp.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/ride.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/ride.mp3 deleted file mode 100644 index a6c333013..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/ride.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/surf.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/surf.mp3 deleted file mode 100644 index af4a48973..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/surf.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/title.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/title.mp3 deleted file mode 100644 index ec5741106..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/system/title.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/tintower.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/tintower.ogg new file mode 100644 index 000000000..d577e6dbd Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/tintower.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/title.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/title.ogg new file mode 100644 index 000000000..d31280b2a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/title.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/azalea.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/azalea.mp3 deleted file mode 100644 index 3f1303214..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/azalea.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/celadon.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/celadon.mp3 deleted file mode 100644 index 59349074b..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/celadon.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/cerulean.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/cerulean.mp3 deleted file mode 100644 index 89e86095f..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/cerulean.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/cherrygrove.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/cherrygrove.mp3 deleted file mode 100644 index 5bf338877..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/cherrygrove.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/cinnabar.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/cinnabar.mp3 deleted file mode 100644 index fb754e3e4..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/cinnabar.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/ecruteak.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/ecruteak.mp3 deleted file mode 100644 index 5b7400ef9..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/ecruteak.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/frontier.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/frontier.mp3 deleted file mode 100644 index b9fc8c533..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/frontier.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/goldenrod.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/goldenrod.mp3 deleted file mode 100644 index 9bb2c6c72..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/goldenrod.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/indigo.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/indigo.mp3 deleted file mode 100644 index 2be10d7d2..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/indigo.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/lavender.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/lavender.mp3 deleted file mode 100644 index 9f714b5b5..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/lavender.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/newbark.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/newbark.mp3 deleted file mode 100644 index 25a9786c3..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/newbark.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/pallet.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/pallet.mp3 deleted file mode 100644 index ab05927dc..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/pallet.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/safarigate.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/safarigate.mp3 deleted file mode 100644 index 5579d67b2..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/safarigate.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/vermilion.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/vermilion.mp3 deleted file mode 100644 index 31bcfc47c..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/vermilion.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/violet.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/violet.mp3 deleted file mode 100644 index ad590895e..000000000 Binary files a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/town/violet.mp3 and /dev/null differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/trainer_defeat.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/trainer_defeat.ogg new file mode 100644 index 000000000..54bcd0b2c Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/trainer_defeat.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/trainer_encounter.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/trainer_encounter.ogg new file mode 100644 index 000000000..15628f3de Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/trainer_encounter.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/unown_broadcast.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/unown_broadcast.ogg new file mode 100644 index 000000000..4834726cf Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/unown_broadcast.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/vermilion.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/vermilion.ogg new file mode 100644 index 000000000..aa26d87ce Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/vermilion.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/violet.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/violet.ogg new file mode 100644 index 000000000..4022c6ef2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/violet.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/viridian_forest.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/viridian_forest.ogg new file mode 100644 index 000000000..0ee67fd25 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/viridian_forest.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/wild_defeat.ogg b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/wild_defeat.ogg new file mode 100644 index 000000000..816e3ec32 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Songs/wild_defeat.ogg differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/650.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/650.mp3 new file mode 100644 index 000000000..268e30bf5 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/650.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/651.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/651.mp3 new file mode 100644 index 000000000..f0a25c563 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/651.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/652.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/652.mp3 new file mode 100644 index 000000000..a356e8808 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/652.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/653.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/653.mp3 new file mode 100644 index 000000000..93beff3db Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/653.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/654.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/654.mp3 new file mode 100644 index 000000000..dfca519dc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/654.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/655.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/655.mp3 new file mode 100644 index 000000000..c3b4c6d6d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/655.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/656.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/656.mp3 new file mode 100644 index 000000000..d4e6ddaac Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/656.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/657.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/657.mp3 new file mode 100644 index 000000000..f8bf1aa08 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/657.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/658.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/658.mp3 new file mode 100644 index 000000000..12875bd2a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/658.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/659.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/659.mp3 new file mode 100644 index 000000000..f5b41b6b3 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/659.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/660.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/660.mp3 new file mode 100644 index 000000000..299d5e6b6 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/660.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/664.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/664.mp3 new file mode 100644 index 000000000..dee9bebac Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/664.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/665.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/665.mp3 new file mode 100644 index 000000000..8957e5433 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/665.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/666.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/666.mp3 new file mode 100644 index 000000000..af144edc2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/666.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/667.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/667.mp3 new file mode 100644 index 000000000..238a43fc7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/667.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/668.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/668.mp3 new file mode 100644 index 000000000..ed4469841 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/668.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/669.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/669.mp3 new file mode 100644 index 000000000..7e9445fb2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/669.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/670.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/670.mp3 new file mode 100644 index 000000000..f1eabdfff Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/670.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/671.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/671.mp3 new file mode 100644 index 000000000..3eb517774 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/671.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/672.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/672.mp3 new file mode 100644 index 000000000..d94153cfd Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/672.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/673.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/673.mp3 new file mode 100644 index 000000000..c2c09f544 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/673.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/676.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/676.mp3 new file mode 100644 index 000000000..b005e9a52 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/676.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/677.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/677.mp3 new file mode 100644 index 000000000..9b11f60e9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/677.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/678.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/678.mp3 new file mode 100644 index 000000000..48465d910 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/678.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/682.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/682.mp3 new file mode 100644 index 000000000..becd55211 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/682.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/683.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/683.mp3 new file mode 100644 index 000000000..c7704a9ba Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/683.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/684.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/684.mp3 new file mode 100644 index 000000000..ce46db761 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/684.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/685.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/685.mp3 new file mode 100644 index 000000000..32a2879b6 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/685.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/686.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/686.mp3 new file mode 100644 index 000000000..738cb0c4e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/686.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/687.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/687.mp3 new file mode 100644 index 000000000..482dca086 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/687.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/688.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/688.mp3 new file mode 100644 index 000000000..a1ae2e6e9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/688.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/689.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/689.mp3 new file mode 100644 index 000000000..497065203 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/689.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/690.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/690.mp3 new file mode 100644 index 000000000..4526e6e89 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/690.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/691.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/691.mp3 new file mode 100644 index 000000000..b5deb091d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/691.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/692.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/692.mp3 new file mode 100644 index 000000000..626c8a478 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/692.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/693.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/693.mp3 new file mode 100644 index 000000000..34cd24526 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/693.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/694.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/694.mp3 new file mode 100644 index 000000000..1123b1848 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/694.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/695.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/695.mp3 new file mode 100644 index 000000000..860ef6daa Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/695.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/701.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/701.mp3 new file mode 100644 index 000000000..d279f0213 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/701.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/702.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/702.mp3 new file mode 100644 index 000000000..15238eb1f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/702.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/704.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/704.mp3 new file mode 100644 index 000000000..b3ec15004 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/704.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/705.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/705.mp3 new file mode 100644 index 000000000..4cc9fd39d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/705.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/706.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/706.mp3 new file mode 100644 index 000000000..6bfcae278 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/706.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/710 - Pumpkaboo (Super Size).mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/710 - Pumpkaboo (Super Size).mp3 new file mode 100644 index 000000000..926e58670 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/710 - Pumpkaboo (Super Size).mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/710.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/710.mp3 new file mode 100644 index 000000000..3f3b5e8bf Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/710.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/711 - Gourgeist (Super Size).mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/711 - Gourgeist (Super Size).mp3 new file mode 100644 index 000000000..d7988a6d4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/711 - Gourgeist (Super Size).mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/711.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/711.mp3 new file mode 100644 index 000000000..9fb8798cc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/711.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/712.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/712.mp3 new file mode 100644 index 000000000..a127ffe9c Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/712.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/713.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/713.mp3 new file mode 100644 index 000000000..27e5fc0a5 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/713.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/716.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/716.mp3 new file mode 100644 index 000000000..b975e6386 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/716.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/717.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/717.mp3 new file mode 100644 index 000000000..5c26c49a7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/717.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/718.mp3 b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/718.mp3 new file mode 100644 index 000000000..8f6cc4c34 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Content/Sounds/Cries/718.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/1.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/1.dat index cc2dc44d9..033fb95c8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/1.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/1.dat @@ -1 +1,52 @@ -{"Name":"Bulbasaur","Number":1,"ExperienceType":"MediumSlow","BaseExperience":64,"Type1":"Grass","Type2":"Poison","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":1,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":34,"EggMoves":[133,204,174,203,202,320,275,437,345,267,80,438,130,124,580],"Machines":[29,174,92,249,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,188,111,197,156,213,210,14,34,36,99,72,102,117,164,331,113,219,263,290,412,416,445,363,447,474,496,497,267,590,15,70,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":49,"Def":49,"SpAtk":65,"SpDef":65,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The seed on its back is filled with nutrients. The seed grows steadily larger as its body grows.","Species":"Seed Pokémon","Height":0.7,"Weight":6.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":3,"ID":45},{"Level":7,"ID":73},{"Level":9,"ID":22},{"Level":13,"ID":77},{"Level":14,"ID":79},{"Level":15,"ID":36},{"Level":19,"ID":75},{"Level":21,"ID":230},{"Level":25,"ID":74},{"Level":27,"ID":38},{"Level":31,"ID":1},{"Level":33,"ID":235},{"Level":37,"ID":402}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":2,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Bulbasaur +Number|1 +ExperienceType|2 +BaseExperience|64 +Type1|Grass +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|1 +Devolution|0 +IsGenderLess|0 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|34 +EggMoves|133,204,174,203,202,320,275,437,345,267,80,438,130,124,580 +Machines|29,174,92,249,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,188,111,197,156,213,210,14,34,36,99,72,102,117,164,331,113,219,263,290,412,416,445,363,447,474,496,497,267,590,15,70,148 +BaseHP|45 +BaseAttack|49 +BaseDefense|49 +BaseSpAttack|65 +BaseSpDefense|65 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The seed on its back is filled with nutrients. The seed grows steadily larger as its body grows.\Seed Pokémon\6.9\0.7\0,148,0 +Scale|0.88 +Move|1,33 +Move|3,45 +Move|7,73 +Move|9,22 +Move|13,77 +Move|13,79 +Move|15,36 +Move|19,75 +Move|21,230 +Move|25,74 +Move|27,38 +Move|31,388 +Move|33,235 +Move|37,402 +EvolutionCondition|2,Level,16,Level +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/10.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/10.dat index 245604843..d65ff6d52 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/10.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/10.dat @@ -1 +1,39 @@ -{"Name":"Caterpie","Number":10,"ExperienceType":"MediumFast","BaseExperience":39,"Type1":"Bug","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":10,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[19],"HiddenAbility":50,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":30,"Def":35,"SpAtk":20,"SpDef":20,"Speed":45},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"For protection, it releases a horrible stench from the antennae on its head to drive away enemies.","Species":"Worm Pokémon","Height":0.3,"Weight":2.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":5,"Moves":[{"Level":1,"ID":81},{"Level":2,"ID":33},{"Level":15,"ID":450}],"EvolutionConditions":[{"Condition":"7","ConditionType":"Level","Evolution":11,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Caterpie +Number|10 +ExperienceType|1 +BaseExperience|39 +Type1|Bug +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|10 +IsGenderLess|0 +IsMale|50 +Ability1|19 +Ability2|Nothing +HiddenAbility|50 +Machines| +BaseHP|45 +BaseAttack|30 +BaseDefense|35 +BaseSpAttack|20 +BaseSpDefense|20 +BaseSpeed|45 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|For protection, it releases a horrible stench from the antennae on its head to drive away enemies.\Worm Pokémon\2.9\0.3\0,148,0 +Scale|0.7 +Move|1,81 +Move|1,33 +Move|15,450 +EvolutionCondition|11,Level,7,Level +TradeValue|5 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/100.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/100.dat index f827f00d5..034660a82 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/100.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/100.dat @@ -1 +1,54 @@ -{"Name":"Voltorb","Number":100,"ExperienceType":"MediumFast","BaseExperience":66,"Type1":"Electric","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":100,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[43,9],"HiddenAbility":106,"EggMoves":[],"Machines":[29,174,205,92,192,237,173,63,182,240,203,218,87,216,104,207,214,129,197,156,213,168,34,36,38,99,85,100,102,117,120,86,153,164,269,113,351,259,263,290,451,416,360,445,363,496,521,528,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":30,"Def":50,"SpAtk":55,"SpDef":55,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It rolls to move. If the ground is uneven, a sudden jolt from hitting a bump can cause it to explode.","Species":"Ball Pokémon","Height":0.5,"Weight":10.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":268},{"Level":5,"ID":33},{"Level":8,"ID":49},{"Level":10,"ID":598},{"Level":12,"ID":209},{"Level":15,"ID":205},{"Level":19,"ID":103},{"Level":22,"ID":451},{"Level":26,"ID":113},{"Level":29,"ID":486},{"Level":33,"ID":120},{"Level":36,"ID":129},{"Level":40,"ID":1},{"Level":43,"ID":360},{"Level":47,"ID":153},{"Level":50,"ID":243}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":101,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Voltorb +Number|100 +ExperienceType|1 +BaseExperience|66 +Type1|Electric +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|100 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|43 +Ability2|9 +HiddenAbility|106 +Machines|29,174,205,92,192,237,173,63,182,240,203,218,87,216,104,207,214,129,197,156,213,168,34,36,38,99,85,100,102,117,120,86,153,164,269,113,351,259,263,290,451,416,360,445,363,496,521,528,590,148 +BaseHP|40 +BaseAttack|30 +BaseDefense|50 +BaseSpAttack|55 +BaseSpDefense|55 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It rolls to move. If the ground is uneven, a sudden jolt from hitting a bump can cause it to explode.\Ball Pokémon\10.4\0.5\0,148,0 +Scale|0.7 +Move|1,268 +Move|5,33 +Move|8,49 +Move|10,598 +Move|12,209 +Move|15,205 +Move|19,103 +Move|22,451 +Move|26,113 +Move|29,486 +Move|33,120 +Move|36,129 +Move|40,393 +Move|43,360 +Move|47,153 +Move|50,243 +TradeValue|10 +EvolutionCondition|101,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/101.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/101.dat index 6d6664369..5a44829ec 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/101.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/101.dat @@ -1 +1,56 @@ -{"Name":"Electrode","Number":101,"ExperienceType":"MediumFast","BaseExperience":168,"Type1":"Electric","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":100,"Devolution":100,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[43,9],"HiddenAbility":106,"EggMoves":[],"Machines":[29,174,205,92,192,237,173,63,182,240,203,218,87,216,104,207,214,129,197,156,213,168,36,38,99,85,100,102,117,120,130,86,153,164,269,113,351,259,263,290,451,416,360,445,363,496,521,528,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":50,"Def":70,"SpAtk":80,"SpDef":80,"Speed":140},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is dangerous. If it has too much electricity and has nothing to do, it amuses itself by exploding.","Species":"Ball Pokémon","Height":1.2,"Weight":66.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":20,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":268},{"Level":3,"ID":33},{"Level":4,"ID":49},{"Level":5,"ID":209},{"Level":6,"ID":33},{"Level":8,"ID":598},{"Level":12,"ID":209},{"Level":15,"ID":205},{"Level":19,"ID":103},{"Level":22,"ID":451},{"Level":26,"ID":113},{"Level":29,"ID":486},{"Level":35,"ID":120},{"Level":40,"ID":129},{"Level":46,"ID":1},{"Level":51,"ID":360},{"Level":57,"ID":153},{"Level":62,"ID":243}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Electrode +Number|101 +ExperienceType|1 +BaseExperience|168 +Type1|Electric +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|100 +IsGenderLess|1 +CanBreed|1 +Devolution|100 +IsMale|0.0 +Ability1|43 +Ability2|9 +HiddenAbility|106 +Machines|29,174,205,92,192,237,173,63,182,240,203,218,87,216,104,207,214,129,197,156,213,168,36,38,99,85,100,102,117,120,130,86,153,164,269,113,351,259,263,290,451,416,360,445,363,496,521,528,590,148 +BaseHP|60 +BaseAttack|50 +BaseDefense|70 +BaseSpAttack|80 +BaseSpDefense|80 +BaseSpeed|140 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It is dangerous. If it has too much electricity and has nothing to do, it amuses itself by exploding.\Ball Pokémon\66.6\1.2\0,148,0 +Scale|1.08 +Move|1,602 +Move|1,268 +Move|1,33 +Move|1,49 +Move|1,209 +Move|5,33 +Move|8,598 +Move|12,209 +Move|15,205 +Move|19,103 +Move|22,451 +Move|26,113 +Move|29,486 +Move|35,120 +Move|40,129 +Move|46,393 +Move|51,360 +Move|57,153 +Move|62,243 +TradeValue|20 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/102.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/102.dat index 852e68a5a..90e96a446 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/102.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/102.dat @@ -1 +1,54 @@ -{"Name":"Exeggcute","Number":102,"ExperienceType":"Slow","BaseExperience":65,"Type1":"Grass","Type2":"Psychic","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":102,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34],"HiddenAbility":139,"EggMoves":[246,335,174,202,580,275,437,381,236,363,267,384,285,235,244,115,72],"Machines":[174,205,92,244,237,241,173,63,182,202,203,218,76,216,94,104,207,214,188,138,197,156,213,168,171,36,99,100,102,115,117,120,121,149,153,164,331,113,263,290,285,412,416,445,363,447,433,496,611,267,590,70,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":40,"Def":80,"SpAtk":60,"SpDef":45,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Their shells are very durable. Even if they crack, they can survive without spilling their contents.","Species":"Egg Pokémon","Height":0.4,"Weight":2.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":140},{"Level":2,"ID":253},{"Level":3,"ID":95},{"Level":7,"ID":115},{"Level":11,"ID":73},{"Level":17,"ID":331},{"Level":19,"ID":78},{"Level":21,"ID":77},{"Level":23,"ID":79},{"Level":27,"ID":93},{"Level":33,"ID":1},{"Level":37,"ID":363},{"Level":43,"ID":76},{"Level":47,"ID":326},{"Level":50,"ID":1}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Item","Evolution":103,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Exeggcute +Number|102 +ExperienceType|3 +BaseExperience|65 +Type1|Grass +Type2|Psychic +CatchRate|90 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|102 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|34 +Ability2|Nothing +HiddenAbility|139 +EggMoves|246,335,174,202,580,275,437,381,236,363,267,384,285,235,244,115,72 +Machines|174,205,92,244,237,241,173,63,182,202,203,218,76,216,94,104,207,214,188,138,197,156,213,168,171,36,99,100,102,115,117,120,121,149,153,164,331,113,263,290,285,412,416,445,363,447,433,496,611,267,590,70,148 +BaseHP|60 +BaseAttack|40 +BaseDefense|80 +BaseSpAttack|60 +BaseSpDefense|45 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Their shells are very durable. Even if they crack, they can survive without spilling their contents.\Egg Pokémon\2.5\0.4\0,148,0 +Scale|0.7 +Move|1,140 +Move|1,253 +Move|1,95 +Move|7,115 +Move|11,73 +Move|17,331 +Move|19,78 +Move|21,77 +Move|23,79 +Move|27,93 +Move|33,388 +Move|37,363 +Move|43,76 +Move|47,326 +Move|50,516 +TradeValue|20 +EvolutionCondition|103,item,34,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/103.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/103.dat index c2c91b2b5..279d89e00 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/103.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/103.dat @@ -1 +1,47 @@ -{"Name":"Exeggutor","Number":103,"ExperienceType":"Slow","BaseExperience":182,"Type1":"Grass","Type2":"Psychic","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":102,"Devolution":102,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34],"HiddenAbility":139,"EggMoves":[246,335,174,202,580,275,437,381,236,363,267,384,285,235,244,115,72],"Machines":[29,174,205,92,244,237,241,173,63,182,202,203,218,76,216,94,104,207,214,188,138,197,156,213,168,171,25,36,38,99,72,100,102,115,117,120,121,149,153,164,331,113,263,290,285,412,416,445,363,447,433,473,496,611,267,590,70,148],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":95,"Def":85,"SpAtk":125,"SpDef":65,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its three heads think independently. However, they are friendly and never appear to squabble.","Species":"Coconut Pokémon","Height":2,"Weight":120,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":45,"Moves":[{"Level":1,"ID":23},{"Level":2,"ID":93},{"Level":3,"ID":95},{"Level":4,"ID":140},{"Level":5,"ID":402},{"Level":17,"ID":473},{"Level":27,"ID":121},{"Level":37,"ID":452},{"Level":47,"ID":437}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Exeggutor +Number|103 +ExperienceType|3 +BaseExperience|182 +Type1|Grass +Type2|Psychic +CatchRate|45 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|102 +IsGenderLess|0 +CanBreed|1 +Devolution|102 +IsMale|50 +Ability1|34 +Ability2|Nothing +HiddenAbility|139 +EggMoves|246,335,174,202,580,275,437,381,236,363,267,384,285,235,244,115,72 +Machines|29,174,205,92,244,237,241,173,63,182,202,203,218,76,216,94,104,207,214,188,138,197,156,213,168,171,25,36,38,99,72,100,102,115,117,120,121,149,153,164,331,113,263,290,285,412,416,445,363,447,433,473,496,611,267,590,70,148 +BaseHP|95 +BaseAttack|95 +BaseDefense|85 +BaseSpAttack|125 +BaseSpDefense|65 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its three heads think independently. However, they are friendly and never appear to squabble.\Coconut Pokémon\120\2\0,148,0 +Scale|1.4 +Move|1,23 +Move|1,93 +Move|1,95 +Move|27,121 +Move|1,140 +Move|1,402 +Move|47,437 +Move|37,452 +Move|17,473 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/104.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/104.dat index 1e0c1991f..aa4ea4323 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/104.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/104.dat @@ -1 +1,55 @@ -{"Name":"Cubone","Number":104,"ExperienceType":"MediumFast","BaseExperience":64,"Type1":"Ground","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":104,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[69,31],"HiddenAbility":4,"EggMoves":[246,187,498,197,24,203,442,195,103,130,157,14],"Machines":[223,29,174,92,249,237,241,173,59,63,196,182,203,218,231,89,216,91,189,104,207,214,201,126,9,197,156,213,168,7,5,14,34,36,66,68,69,99,90,102,117,130,157,164,264,280,53,317,332,263,290,206,374,416,446,445,363,479,496,497,510,514,523,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":50,"Def":95,"SpAtk":40,"SpDef":50,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it is sad or lonely, the skull it wears shakes, and emits a plaintive and mournful sound.","Species":"Lonely Pokémon","Height":0.4,"Weight":6.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":45},{"Level":3,"ID":39},{"Level":7,"ID":125},{"Level":11,"ID":29},{"Level":13,"ID":43},{"Level":17,"ID":116},{"Level":21,"ID":155},{"Level":23,"ID":99},{"Level":27,"ID":206},{"Level":31,"ID":37},{"Level":33,"ID":374},{"Level":37,"ID":198},{"Level":41,"ID":283},{"Level":43,"ID":38},{"Level":47,"ID":1}],"EvolutionConditions":[{"Condition":"28","ConditionType":"Level","Evolution":105,"Trigger":"LevelUp"}],"Items":[{"Id":118,"Chance":5}]} \ No newline at end of file +Name|Cubone +Number|104 +ExperienceType|1 +BaseExperience|64 +Type1|Ground +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|104 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|69 +Ability2|31 +HiddenAbility|4 +EggMoves|246,187,498,197,24,203,442,195,103,130,157,14 +Machines|223,29,174,92,249,237,241,173,59,63,196,182,203,218,231,89,216,91,189,104,207,214,201,126,9,197,156,213,168,7,5,14,34,36,66,68,69,99,90,102,117,130,157,164,264,280,53,317,332,263,290,206,374,416,446,445,363,479,496,497,510,514,523,612,590,70,431 +BaseHP|50 +BaseAttack|50 +BaseDefense|95 +BaseSpAttack|40 +BaseSpDefense|50 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it is sad or lonely, the skull it wears shakes, and emits a plaintive and mournful sound.\Lonely Pokémon\6.5\0.4\0,148,0 +Scale|0.7 +Move|1,45 +Move|3,39 +Move|7,125 +Move|11,29 +Move|13,43 +Move|17,116 +Move|21,155 +Move|23,99 +Move|27,206 +Move|31,37 +Move|33,374 +Move|37,198 +Move|41,283 +Move|43,38 +Move|47,514 +TradeValue|35 +Item|5,118 +EvolutionCondition|105,Level,28,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/105.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/105.dat index dd72fabb5..a1d31144e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/105.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/105.dat @@ -1 +1,57 @@ -{"Name":"Marowak","Number":105,"ExperienceType":"MediumFast","BaseExperience":149,"Type1":"Ground","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":104,"Devolution":104,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[69,31],"HiddenAbility":4,"EggMoves":[246,187,498,197,24,203,442,195,103,130,157,14],"Machines":[223,29,174,92,249,237,241,173,59,63,196,182,203,218,231,89,216,91,189,104,207,214,201,126,9,197,156,213,168,7,5,14,25,34,36,38,66,68,69,99,90,102,117,157,164,264,280,53,317,332,263,290,411,206,374,416,444,446,445,363,479,496,497,510,514,523,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":80,"Def":110,"SpAtk":50,"SpDef":80,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has been seen pounding boulders with the bone it carries in order to tap out messages to others.","Species":"Bone Keeper Pokémon","Height":1,"Weight":45,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":40,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":39},{"Level":3,"ID":125},{"Level":4,"ID":29},{"Level":5,"ID":39},{"Level":7,"ID":125},{"Level":11,"ID":29},{"Level":13,"ID":43},{"Level":17,"ID":116},{"Level":21,"ID":155},{"Level":23,"ID":99},{"Level":27,"ID":206},{"Level":33,"ID":37},{"Level":37,"ID":374},{"Level":43,"ID":198},{"Level":49,"ID":283},{"Level":53,"ID":38},{"Level":59,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":118,"Chance":5}]} \ No newline at end of file +Name|Marowak +Number|105 +ExperienceType|1 +BaseExperience|149 +Type1|Ground +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|104 +IsGenderLess|0 +CanBreed|1 +Devolution|104 +IsMale|50 +Ability1|69 +Ability2|31 +HiddenAbility|4 +EggMoves|246,187,498,197,24,203,442,195,103,130,157,14 +Machines|223,29,174,92,249,237,241,173,59,63,196,182,203,218,231,89,216,91,189,104,207,214,201,126,9,197,156,213,168,7,5,14,25,34,36,38,66,68,69,99,90,102,117,157,164,264,280,53,317,332,263,290,411,206,374,416,444,446,445,363,479,496,497,510,514,523,612,590,70,431 +BaseHP|60 +BaseAttack|80 +BaseDefense|110 +BaseSpAttack|50 +BaseSpDefense|80 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has been seen pounding boulders with the bone it carries in order to tap out messages to others.\Bone Keeper Pokémon\45\1\0,148,0 +Scale|1 +Move|1,45 +Move|1,39 +Move|1,125 +Move|1,29 +Move|3,39 +Move|7,125 +Move|11,29 +Move|13,43 +Move|17,116 +Move|21,155 +Move|23,99 +Move|27,206 +Move|33,37 +Move|37,374 +Move|43,198 +Move|49,283 +Move|53,38 +Move|59,514 +TradeValue|40 +Item|5,118 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/106.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/106.dat index 5c149ef68..6e3a9eb3d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/106.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/106.dat @@ -1 +1,58 @@ -{"Name":"Hitmonlee","Number":106,"ExperienceType":"MediumFast","BaseExperience":159,"Type1":"Fighting","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":236,"Devolution":236,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[7,120],"HiddenAbility":84,"EggMoves":[418,68,203,364,270,136,183,170,228,229,410],"Machines":[223,29,174,92,249,237,241,173,63,182,240,203,218,216,189,104,207,214,129,197,156,213,5,25,34,36,38,66,68,69,99,102,117,118,130,164,264,339,263,290,411,416,445,363,490,496,514,523,526,612,590,431],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":120,"Def":53,"SpAtk":35,"SpDef":110,"Speed":87},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This amazing Pokémon has an awesome sense of balance. It can kick in succession from any position.","Species":"Kicking Pokémon","Height":1.5,"Weight":49.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":50,"Moves":[{"Level":1,"ID":179},{"Level":2,"ID":370},{"Level":3,"ID":25},{"Level":4,"ID":279},{"Level":5,"ID":24},{"Level":6,"ID":96},{"Level":9,"ID":27},{"Level":13,"ID":26},{"Level":17,"ID":280},{"Level":21,"ID":116},{"Level":25,"ID":364},{"Level":29,"ID":136},{"Level":33,"ID":170},{"Level":37,"ID":193},{"Level":41,"ID":1},{"Level":45,"ID":299},{"Level":49,"ID":203},{"Level":53,"ID":25},{"Level":57,"ID":370},{"Level":61,"ID":179}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Hitmonlee +Number|106 +ExperienceType|1 +BaseExperience|159 +Type1|Fighting +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|236 +IsGenderLess|0 +CanBreed|1 +Devolution|236 +IsMale|100 +Ability1|7 +Ability2|120 +HiddenAbility|84 +EggMoves|418,68,203,364,270,136,183,170,228,229,410 +Machines|223,29,174,92,249,237,241,173,63,182,240,203,218,216,189,104,207,214,129,197,156,213,5,25,34,36,38,66,68,69,99,102,117,118,130,164,264,339,263,290,411,416,445,363,490,496,514,523,526,612,590,431 +BaseHP|50 +BaseAttack|120 +BaseDefense|53 +BaseSpAttack|35 +BaseSpDefense|110 +BaseSpeed|87 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This amazing Pokémon has an awesome sense of balance. It can kick in succession from any position.\Kicking Pokémon\49.8\1.5\0,148,0 +Scale|1.2 +Move|1,179 +Move|1,370 +Move|1,25 +Move|1,279 +Move|1,24 +Move|5,96 +Move|9,27 +Move|13,26 +Move|17,280 +Move|21,116 +Move|25,364 +Move|29,136 +Move|33,170 +Move|37,193 +Move|41,469 +Move|45,299 +Move|49,203 +Move|53,25 +Move|57,370 +Move|61,179 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/107.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/107.dat index 171d0ab47..8f8404938 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/107.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/107.dat @@ -1 +1,59 @@ -{"Name":"Hitmonchan","Number":107,"ExperienceType":"MediumFast","BaseExperience":159,"Type1":"Fighting","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":236,"Devolution":236,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[51,89],"HiddenAbility":39,"EggMoves":[418,68,203,364,270,136,183,170,228,229,410],"Machines":[223,29,174,92,249,237,241,173,63,182,240,203,218,216,189,104,8,207,214,129,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,118,130,164,264,339,263,290,411,409,416,445,363,490,496,514,523,526,612,590,431],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":105,"Def":79,"SpAtk":35,"SpDef":110,"Speed":76},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its punches slice the air. However it seems to need a short break after fighting for three minutes.","Species":"Punching Pokémon","Height":1.4,"Weight":50.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":50,"Moves":[{"Level":1,"ID":370},{"Level":2,"ID":68},{"Level":3,"ID":264},{"Level":4,"ID":279},{"Level":5,"ID":4},{"Level":6,"ID":97},{"Level":11,"ID":228},{"Level":16,"ID":183},{"Level":17,"ID":418},{"Level":21,"ID":364},{"Level":26,"ID":410},{"Level":31,"ID":1},{"Level":36,"ID":9},{"Level":37,"ID":8},{"Level":38,"ID":7},{"Level":41,"ID":327},{"Level":46,"ID":5},{"Level":50,"ID":197},{"Level":56,"ID":264},{"Level":61,"ID":68},{"Level":66,"ID":370}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Hitmonchan +Number|107 +ExperienceType|1 +BaseExperience|159 +Type1|Fighting +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|236 +IsGenderLess|0 +CanBreed|1 +Devolution|236 +IsMale|100 +Ability1|51 +Ability2|89 +HiddenAbility|39 +EggMoves|418,68,203,364,270,136,183,170,228,229,410 +Machines|223,29,174,92,249,237,241,173,63,182,240,203,218,216,189,104,8,207,214,129,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,118,130,164,264,339,263,290,411,409,416,445,363,490,496,514,523,526,612,590,431 +BaseHP|50 +BaseAttack|105 +BaseDefense|79 +BaseSpAttack|35 +BaseSpDefense|110 +BaseSpeed|76 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its punches slice the air. However it seems to need a short break after fighting for three minutes.\Punching Pokémon\50.2\1.4\0,148,0 +Scale|1.16 +Move|1,370 +Move|1,68 +Move|1,264 +Move|1,279 +Move|1,4 +Move|6,97 +Move|11,228 +Move|16,183 +Move|16,418 +Move|21,364 +Move|26,410 +Move|31,501 +Move|36,9 +Move|36,8 +Move|36,7 +Move|41,327 +Move|46,5 +Move|50,197 +Move|56,264 +Move|61,68 +Move|66,370 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/108.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/108.dat index cea684424..38dcc5b94 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/108.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/108.dat @@ -1 +1,54 @@ -{"Name":"Lickitung","Number":108,"ExperienceType":"MediumFast","BaseExperience":77,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":108,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[20,12],"HiddenAbility":13,"EggMoves":[562,187,34,174,359,222,330,214,265,173,428,133,164],"Machines":[223,29,174,205,92,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,91,247,189,104,8,207,214,201,126,111,9,138,197,156,213,168,7,171,5,14,34,36,38,61,55,58,66,68,69,99,85,90,102,117,130,157,164,264,352,280,351,53,317,263,290,374,416,445,363,496,510,514,523,525,612,590,57,70,250,431],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":55,"Def":75,"SpAtk":60,"SpDef":75,"Speed":30},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its tongue has well-developed nerves that run to the very tip, so it can be deftly manipulated.","Species":"Licking Pokémon","Height":1.2,"Weight":65.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":60,"Moves":[{"Level":1,"ID":122},{"Level":5,"ID":48},{"Level":9,"ID":111},{"Level":13,"ID":282},{"Level":17,"ID":35},{"Level":21,"ID":23},{"Level":25,"ID":1},{"Level":29,"ID":21},{"Level":33,"ID":205},{"Level":37,"ID":498},{"Level":41,"ID":1},{"Level":45,"ID":287},{"Level":49,"ID":103},{"Level":53,"ID":438},{"Level":57,"ID":378}],"EvolutionConditions":[{"Condition":"205","ConditionType":"Move","Evolution":463,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Lickitung +Number|108 +ExperienceType|1 +BaseExperience|77 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|108 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|20 +Ability2|12 +HiddenAbility|13 +EggMoves|562,187,34,174,359,222,330,214,265,173,428,133,164 +Machines|223,29,174,205,92,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,91,247,189,104,8,207,214,201,126,111,9,138,197,156,213,168,7,171,5,14,34,36,38,61,55,58,66,68,69,99,85,90,102,117,130,157,164,264,352,280,351,53,317,263,290,374,416,445,363,496,510,514,523,525,612,590,57,70,250,431 +BaseHP|90 +BaseAttack|55 +BaseDefense|75 +BaseSpAttack|60 +BaseSpDefense|75 +BaseSpeed|30 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its tongue has well-developed nerves that run to the very tip, so it can be deftly manipulated.\Licking Pokémon\65.5\1.2\0,148,0 +Scale|1.08 +Move|1,122 +Move|5,48 +Move|9,111 +Move|13,282 +Move|17,35 +Move|21,23 +Move|25,50 +Move|29,21 +Move|33,205 +Move|37,498 +Move|41,382 +Move|45,287 +Move|49,103 +Move|53,438 +Move|57,378 +TradeValue|60 +EvolutionCondition|463,move,205,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/109.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/109.dat index 4eec9b4fe..e56d96836 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/109.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/109.dat @@ -1 +1,55 @@ -{"Name":"Koffing","Number":109,"ExperienceType":"MediumFast","BaseExperience":68,"Type1":"Poison","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":109,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[174,194,288,220,60,149,103,180,255,254,256,390,261],"Machines":[174,205,92,192,237,241,173,63,182,240,203,218,87,216,247,104,207,214,188,126,197,156,213,168,7,36,99,85,102,117,120,153,164,269,351,53,259,263,290,261,371,416,360,445,399,363,474,496,510,611,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":65,"Def":95,"SpAtk":60,"SpDef":45,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"Its thin with gases that cause constant sniffles, coughs and teary eyes.","Species":"Poison Gas Pokémon","Height":0.6,"Weight":1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":20,"Moves":[{"Level":1,"ID":139},{"Level":2,"ID":33},{"Level":4,"ID":123},{"Level":7,"ID":108},{"Level":12,"ID":372},{"Level":15,"ID":499},{"Level":18,"ID":124},{"Level":23,"ID":120},{"Level":26,"ID":114},{"Level":29,"ID":360},{"Level":34,"ID":188},{"Level":37,"ID":153},{"Level":40,"ID":194},{"Level":42,"ID":1},{"Level":45,"ID":262}],"EvolutionConditions":[{"Condition":"35","ConditionType":"Level","Evolution":110,"Trigger":"LevelUp"}],"Items":[{"Id":106,"Chance":5}]} \ No newline at end of file +Name|Koffing +Number|109 +ExperienceType|1 +BaseExperience|68 +Type1|Poison +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|109 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|174,194,288,220,60,149,103,180,255,254,256,390,261 +Machines|174,205,92,192,237,241,173,63,182,240,203,218,87,216,247,104,207,214,188,126,197,156,213,168,7,36,99,85,102,117,120,153,164,269,351,53,259,263,290,261,371,416,360,445,399,363,474,496,510,611,590,148 +BaseHP|40 +BaseAttack|65 +BaseDefense|95 +BaseSpAttack|60 +BaseSpDefense|45 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|Its thin with gases that cause constant sniffles, coughs and teary eyes.\Poison Gas Pokémon\1\0.6\0,148,0 +Scale|0.84 +Move|1,139 +Move|1,33 +Move|4,123 +Move|7,108 +Move|12,372 +Move|15,499 +Move|18,124 +Move|23,120 +Move|26,114 +Move|29,360 +Move|34,188 +Move|37,153 +Move|40,194 +Move|42,562 +Move|45,262 +TradeValue|20 +Item|5,106 +EvolutionCondition|110,Level,35,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/11.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/11.dat index 9efabf573..df579d621 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/11.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/11.dat @@ -1 +1,38 @@ -{"Name":"Metapod","Number":11,"ExperienceType":"MediumFast","BaseExperience":72,"Type1":"Bug","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":10,"Devolution":10,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61],"HiddenAbility":-1,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":20,"Def":55,"SpAtk":25,"SpDef":25,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Inside the shell, it is soft and weak as it prepares to evolve. It stays motionless in the shell.","Species":"Cocoon Pokémon","Height":0.7,"Weight":9.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":5,"Moves":[{"Level":1,"ID":106},{"Level":7,"ID":106}],"EvolutionConditions":[{"Condition":"10","ConditionType":"Level","Evolution":12,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Metapod +Number|11 +ExperienceType|1 +BaseExperience|72 +Type1|Bug +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|10 +IsGenderLess|0 +IsMale|50 +Ability1|61 +Ability2|Nothing +HiddenAbility|Nothing +Machines| +BaseHP|50 +BaseAttack|20 +BaseDefense|55 +BaseSpAttack|25 +BaseSpDefense|25 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Inside the shell, it is soft and weak as it prepares to evolve. It stays motionless in the shell.\Cocoon Pokémon\9.9\0.7\0,148,0 +Scale|0.88 +Move|1,106 +Move|7,106 +EvolutionCondition|12,Level,10,Level +TradeValue|5 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/110.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/110.dat index e03d2e66f..26caccec1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/110.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/110.dat @@ -1 +1,56 @@ -{"Name":"Weezing","Number":110,"ExperienceType":"MediumFast","BaseExperience":172,"Type1":"Poison","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":109,"Devolution":109,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[174,194,288,220,60,149,103,180,255,254,256,390,261],"Machines":[174,205,92,192,237,241,173,63,182,240,203,218,87,216,247,104,207,214,188,126,197,156,213,168,36,99,85,102,117,120,153,164,269,351,53,259,263,290,261,371,416,360,445,399,363,474,496,510,611,590,148,560],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":90,"Def":120,"SpAtk":85,"SpDef":70,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"If one of the twin KOFFING inflates the other one deflates. It constantly mixes its poisonous gases.","Species":"Poison Gas Pokémon","Height":1.2,"Weight":9.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":25,"Moves":[{"Level":1,"ID":139},{"Level":2,"ID":33},{"Level":3,"ID":123},{"Level":4,"ID":108},{"Level":5,"ID":123},{"Level":7,"ID":108},{"Level":12,"ID":372},{"Level":15,"ID":499},{"Level":18,"ID":124},{"Level":23,"ID":120},{"Level":26,"ID":114},{"Level":29,"ID":458},{"Level":34,"ID":188},{"Level":40,"ID":153},{"Level":46,"ID":194},{"Level":50,"ID":1},{"Level":54,"ID":262}],"EvolutionConditions":[],"Items":[{"Id":106,"Chance":5}]} \ No newline at end of file +Name|Weezing +Number|110 +ExperienceType|1 +BaseExperience|172 +Type1|Poison +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|109 +IsGenderLess|0 +CanBreed|1 +Devolution|109 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|174,194,288,220,60,149,103,180,255,254,256,390,261 +Machines|174,205,92,192,237,241,173,63,182,240,203,218,87,216,247,104,207,214,188,126,197,156,213,168,36,99,85,102,117,120,153,164,269,351,53,259,263,290,261,371,416,360,445,399,363,474,496,510,611,590,148,560 +BaseHP|65 +BaseAttack|90 +BaseDefense|120 +BaseSpAttack|85 +BaseSpDefense|70 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|If one of the twin KOFFING inflates the other one deflates. It constantly mixes its poisonous gases.\Poison Gas Pokémon\9.5\1.2\0,148,0 +Scale|1.08 +Move|1,139 +Move|1,33 +Move|1,123 +Move|1,108 +Move|4,123 +Move|7,108 +Move|12,372 +Move|15,499 +Move|18,124 +Move|23,120 +Move|26,114 +Move|29,458 +Move|34,188 +Move|40,153 +Move|46,194 +Move|50,562 +Move|54,262 +TradeValue|25 +Item|5,106 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/111.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/111.dat index 480560204..6eb99c4ad 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/111.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/111.dat @@ -1 +1,53 @@ -{"Name":"Rhyhorn","Number":111,"ExperienceType":"Slow","BaseExperience":69,"Type1":"Ground","Type2":"Rock","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":111,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[31,69],"HiddenAbility":120,"EggMoves":[68,242,306,174,407,424,470,423,231,222,368,563,179,431,130,422,157,14,228,37],"Machines":[29,174,205,46,92,192,249,237,241,173,59,63,196,182,203,218,231,87,89,216,91,189,104,207,214,201,126,197,156,213,168,14,25,32,36,38,58,68,99,85,90,102,117,130,157,164,351,53,317,263,290,406,371,416,397,444,446,445,363,398,496,510,523,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":85,"Def":95,"SpAtk":30,"SpDef":30,"Speed":25},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is inept at turning because of its four short legs. It can only charge and run in one direction.","Species":"Spikes Pokémon","Height":1,"Weight":115,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":60,"Moves":[{"Level":1,"ID":30},{"Level":2,"ID":39},{"Level":8,"ID":23},{"Level":12,"ID":31},{"Level":19,"ID":184},{"Level":23,"ID":350},{"Level":30,"ID":523},{"Level":34,"ID":498},{"Level":41,"ID":36},{"Level":45,"ID":529},{"Level":52,"ID":444},{"Level":56,"ID":89},{"Level":63,"ID":32},{"Level":67,"ID":224}],"EvolutionConditions":[{"Condition":"42","ConditionType":"Level","Evolution":112,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Rhyhorn +Number|111 +ExperienceType|3 +BaseExperience|69 +Type1|Ground +Type2|Rock +CatchRate|120 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|111 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|31 +Ability2|69 +HiddenAbility|120 +EggMoves|68,242,306,174,407,424,470,423,231,222,368,563,179,431,130,422,157,14,228,37 +Machines|29,174,205,46,92,192,249,237,241,173,59,63,196,182,203,218,231,87,89,216,91,189,104,207,214,201,126,197,156,213,168,14,25,32,36,38,58,68,99,85,90,102,117,130,157,164,351,53,317,263,290,406,371,416,397,444,446,445,363,398,496,510,523,590,70,431,560 +BaseHP|80 +BaseAttack|85 +BaseDefense|95 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|25 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is inept at turning because of its four short legs. It can only charge and run in one direction.\Spikes Pokémon\115\1\0,148,0 +Scale|1 +Move|1,30 +Move|1,39 +Move|8,23 +Move|12,31 +Move|19,184 +Move|23,350 +Move|30,523 +Move|34,498 +Move|41,36 +Move|45,529 +Move|52,444 +Move|56,89 +Move|63,32 +Move|67,224 +TradeValue|60 +EvolutionCondition|112,Level,42,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/112.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/112.dat index 35e7c9278..f082cac83 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/112.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/112.dat @@ -1 +1,58 @@ -{"Name":"Rhydon","Number":112,"ExperienceType":"Slow","BaseExperience":170,"Type1":"Ground","Type2":"Rock","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":111,"Devolution":111,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[31,69],"HiddenAbility":120,"EggMoves":[68,242,306,174,407,424,470,423,231,222,368,563,179,431,130,422,157,14,228,37],"Machines":[223,29,174,205,46,92,192,249,237,241,173,59,63,196,182,203,218,231,87,89,216,91,189,104,207,214,201,126,9,197,156,213,168,7,210,5,14,25,32,34,36,38,61,55,58,6,68,99,85,90,102,117,130,157,164,264,280,351,53,317,263,290,411,374,406,421,371,416,397,444,419,446,445,363,398,479,496,510,523,525,612,590,15,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":105,"Atk":130,"Def":120,"SpAtk":45,"SpDef":45,"Speed":40},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its rugged hide protects it from even the heat of lava. However, the hide also makes it insensitive.","Species":"Drill Pokémon","Height":1.9,"Weight":120,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":70,"Moves":[{"Level":1,"ID":224},{"Level":2,"ID":32},{"Level":3,"ID":30},{"Level":4,"ID":39},{"Level":5,"ID":23},{"Level":6,"ID":31},{"Level":9,"ID":23},{"Level":12,"ID":31},{"Level":19,"ID":184},{"Level":23,"ID":350},{"Level":30,"ID":523},{"Level":34,"ID":498},{"Level":41,"ID":36},{"Level":42,"ID":359},{"Level":47,"ID":529},{"Level":56,"ID":444},{"Level":62,"ID":89},{"Level":71,"ID":32},{"Level":77,"ID":224}],"EvolutionConditions":[{"Condition":"141","ConditionType":"HoldItem","Evolution":464,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Rhydon +Number|112 +ExperienceType|3 +BaseExperience|170 +Type1|Ground +Type2|Rock +CatchRate|60 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|111 +IsGenderLess|0 +CanBreed|1 +Devolution|111 +IsMale|50 +Ability1|31 +Ability2|69 +HiddenAbility|120 +EggMoves|68,242,306,174,407,424,470,423,231,222,368,563,179,431,130,422,157,14,228,37 +Machines|223,29,174,205,46,92,192,249,237,241,173,59,63,196,182,203,218,231,87,89,216,91,189,104,207,214,201,126,9,197,156,213,168,7,210,5,14,25,32,34,36,38,61,55,58,6,68,99,85,90,102,117,130,157,164,264,280,351,53,317,263,290,411,374,406,421,371,416,397,444,419,446,445,363,398,479,496,510,523,525,612,590,15,57,70,250,431,560 +BaseHP|105 +BaseAttack|130 +BaseDefense|120 +BaseSpAttack|45 +BaseSpDefense|45 +BaseSpeed|40 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its rugged hide protects it from even the heat of lava. However, the hide also makes it insensitive.\Drill Pokémon\120\1.9\0,148,0 +Scale|1.36 +Move|1,224 +Move|1,32 +Move|1,30 +Move|1,39 +Move|1,23 +Move|1,31 +Move|9,23 +Move|12,31 +Move|19,184 +Move|23,350 +Move|30,523 +Move|34,498 +Move|41,36 +Move|42,359 +Move|47,529 +Move|56,444 +Move|62,89 +Move|71,32 +Move|77,224 +TradeValue|70 +EvolutionCondition|464,holditem,141,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/113.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/113.dat index adc930113..9d64bc731 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/113.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/113.dat @@ -1 +1,59 @@ -{"Name":"Chansey","Number":113,"ExperienceType":"Fast","BaseExperience":395,"Type1":"Normal","Type2":"Blank","CatchRate":30,"BaseFriendship":140,"EggGroup1":"Fairy","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":440,"Devolution":440,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[30,32],"HiddenAbility":131,"EggMoves":[312,68,203,356,215,270,387,118,426,363,217,69,164],"Machines":[223,29,174,205,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,94,247,189,104,207,214,201,126,111,138,197,156,213,5,34,36,38,61,55,58,68,99,85,100,102,117,118,121,130,135,86,149,157,161,164,264,352,347,258,113,219,280,351,53,317,263,290,285,289,374,451,409,278,416,446,445,363,447,496,497,510,514,523,526,528,612,605,590,70,148,431],"TutorMoves":[],"BaseStats":{"HP":250,"Atk":5,"Def":5,"SpAtk":35,"SpDef":105,"Speed":50},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It walks carefully to prevent its egg from breaking. However, it is extremely fast at running away.","Species":"Egg Pokémon","Height":1.1,"Weight":34.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":90,"Moves":[{"Level":1,"ID":38},{"Level":2,"ID":111},{"Level":3,"ID":1},{"Level":4,"ID":45},{"Level":5,"ID":39},{"Level":9,"ID":287},{"Level":12,"ID":3},{"Level":16,"ID":135},{"Level":20,"ID":1},{"Level":23,"ID":107},{"Level":27,"ID":36},{"Level":31,"ID":47},{"Level":34,"ID":374},{"Level":38,"ID":505},{"Level":42,"ID":121},{"Level":46,"ID":113},{"Level":50,"ID":361},{"Level":54,"ID":38}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":242,"Trigger":"LevelUp"}],"Items":[{"Id":126,"Chance":5},{"Id":30,"Chance":50}]} \ No newline at end of file +Name|Chansey +Number|113 +ExperienceType|0 +BaseExperience|395 +Type1|Normal +Type2| +CatchRate|30 +BaseFriendship|140 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|440 +IsGenderLess|0 +CanBreed|1 +Devolution|440 +IsMale|0 +Ability1|30 +Ability2|32 +HiddenAbility|131 +EggMoves|312,68,203,356,215,270,387,118,426,363,217,69,164 +Machines|223,29,174,205,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,94,247,189,104,207,214,201,126,111,138,197,156,213,5,34,36,38,61,55,58,68,99,85,100,102,117,118,121,130,135,86,149,157,161,164,264,352,347,258,113,219,280,351,53,317,263,290,285,289,374,451,409,278,416,446,445,363,447,496,497,510,514,523,526,528,612,605,590,70,148,431 +BaseHP|250 +BaseAttack|5 +BaseDefense|5 +BaseSpAttack|35 +BaseSpDefense|105 +BaseSpeed|50 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It walks carefully to prevent its egg from breaking. However, it is extremely fast at running away.\Egg Pokémon\34.6\1.1\0,148,0 +Scale|1.04 +Move|1,38 +Move|1,111 +Move|1,1 +Move|1,45 +Move|5,39 +Move|9,287 +Move|12,3 +Move|16,135 +Move|20,516 +Move|23,107 +Move|27,36 +Move|31,47 +Move|34,374 +Move|38,505 +Move|42,121 +Move|46,113 +Move|50,361 +Move|54,38 +TradeValue|90 +Item|5,126 +Item|50,30 +EvolutionCondition|242,friendship,220,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/114.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/114.dat index 14fe5af1f..9e42f7964 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/114.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/114.dat @@ -1 +1,58 @@ -{"Name":"Tangela","Number":114,"ExperienceType":"MediumFast","BaseExperience":87,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":114,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,102],"HiddenAbility":144,"EggMoves":[133,93,283,175,202,437,73,72,363,267,384,476,115],"Machines":[29,174,92,249,244,237,241,230,173,63,182,202,203,218,76,216,104,207,214,197,156,213,34,36,99,72,102,117,130,164,331,263,290,412,416,445,363,447,496,611,590,70,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":55,"Def":115,"SpAtk":100,"SpDef":40,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The vines that cloak its entire body are always jiggling. They effectively unnerve its foes.","Species":"Vine Pokémon","Height":1,"Weight":35,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":35,"Moves":[{"Level":1,"ID":275},{"Level":2,"ID":132},{"Level":4,"ID":79},{"Level":7,"ID":22},{"Level":10,"ID":71},{"Level":14,"ID":77},{"Level":17,"ID":20},{"Level":20,"ID":74},{"Level":23,"ID":72},{"Level":27,"ID":282},{"Level":30,"ID":78},{"Level":33,"ID":363},{"Level":36,"ID":202},{"Level":38,"ID":246},{"Level":41,"ID":21},{"Level":44,"ID":321},{"Level":46,"ID":378},{"Level":48,"ID":1},{"Level":50,"ID":438}],"EvolutionConditions":[{"Condition":"246","ConditionType":"Move","Evolution":465,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Tangela +Number|114 +ExperienceType|1 +BaseExperience|87 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|114 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|34 +Ability2|102 +HiddenAbility|144 +EggMoves|133,93,283,175,202,437,73,72,363,267,384,476,115 +Machines|29,174,92,249,244,237,241,230,173,63,182,202,203,218,76,216,104,207,214,197,156,213,34,36,99,72,102,117,130,164,331,263,290,412,416,445,363,447,496,611,590,70,148 +BaseHP|65 +BaseAttack|55 +BaseDefense|115 +BaseSpAttack|100 +BaseSpDefense|40 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The vines that cloak its entire body are always jiggling. They effectively unnerve its foes.\Vine Pokémon\35\1\0,148,0 +Scale|1 +Move|1,275 +Move|1,132 +Move|4,79 +Move|7,22 +Move|10,71 +Move|14,77 +Move|17,20 +Move|20,74 +Move|23,72 +Move|27,282 +Move|30,78 +Move|33,363 +Move|36,202 +Move|38,246 +Move|41,21 +Move|44,321 +Move|46,378 +Move|48,580 +Move|50,438 +TradeValue|35 +EvolutionCondition|465,move,246,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/115.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/115.dat index 47ca123f2..125e6bf3a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/115.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/115.dat @@ -1 +1,53 @@ -{"Name":"Kangaskhan","Number":115,"ExperienceType":"MediumFast","BaseExperience":172,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":115,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[48,113],"HiddenAbility":39,"EggMoves":[509,68,306,50,38,283,116,264,193,359,23,376,219,164],"Machines":[223,29,174,46,92,192,249,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,91,247,189,104,8,207,214,201,126,9,197,156,213,168,7,210,5,25,34,36,38,61,55,58,66,68,69,99,85,90,102,117,130,157,164,264,352,258,219,280,351,53,317,332,263,290,411,374,409,421,416,419,445,363,496,510,514,523,526,612,590,15,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":105,"Atk":95,"Def":80,"SpAtk":40,"SpDef":80,"Speed":90},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it is safe the belly pouch to play. The adult keeps a close eye on the youngster.","Species":"Parent Pokémon","Height":2.2,"Weight":80,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.48,"Y":1.48,"Z":1.48},"TradeValue":85,"Moves":[{"Level":1,"ID":4},{"Level":2,"ID":43},{"Level":7,"ID":252},{"Level":10,"ID":39},{"Level":13,"ID":44},{"Level":19,"ID":458},{"Level":22,"ID":99},{"Level":25,"ID":5},{"Level":31,"ID":498},{"Level":34,"ID":146},{"Level":37,"ID":242},{"Level":43,"ID":203},{"Level":46,"ID":200},{"Level":49,"ID":389},{"Level":50,"ID":179}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Kangaskhan +Number|115 +ExperienceType|1 +BaseExperience|172 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|115 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|0 +Ability1|48 +Ability2|113 +HiddenAbility|39 +EggMoves|509,68,306,50,38,283,116,264,193,359,23,376,219,164 +Machines|223,29,174,46,92,192,249,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,91,247,189,104,8,207,214,201,126,9,197,156,213,168,7,210,5,25,34,36,38,61,55,58,66,68,69,99,85,90,102,117,130,157,164,264,352,258,219,280,351,53,317,332,263,290,411,374,409,421,416,419,445,363,496,510,514,523,526,612,590,15,57,70,250,431,560 +BaseHP|105 +BaseAttack|95 +BaseDefense|80 +BaseSpAttack|40 +BaseSpDefense|80 +BaseSpeed|90 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it is safe the belly pouch to play. The adult keeps a close eye on the youngster.\Parent Pokémon\80\2.2\0,148,0 +Scale|1.48 +Move|1,4 +Move|1,43 +Move|7,252 +Move|10,39 +Move|13,44 +Move|19,458 +Move|22,99 +Move|25,5 +Move|31,498 +Move|34,146 +Move|37,242 +Move|43,203 +Move|46,200 +Move|49,389 +Move|50,179 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/115_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/115_mega.dat new file mode 100644 index 000000000..d728c8c5e --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/115_mega.dat @@ -0,0 +1,53 @@ +Name|Mega Kangaskhan +Number|115 +ExperienceType|1 +BaseExperience|172 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|115 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|0 +Ability1|185 +Ability2|Nothing +HiddenAbility|185 +EggMoves|509,68,306,50,38,283,116,264,193,359,23,376,219,164 +Machines|223,29,174,46,92,192,249,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,91,247,189,104,8,207,214,201,126,9,197,156,213,168,7,210,5,25,34,36,38,61,55,58,66,68,69,99,85,90,102,117,130,157,164,264,352,258,219,280,351,53,317,332,263,290,411,374,409,421,416,419,445,363,496,510,514,523,526,612,590,15,57,70,250,431,560 +BaseHP|105 +BaseAttack|125 +BaseDefense|100 +BaseSpAttack|60 +BaseSpDefense|100 +BaseSpeed|100 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it is safe the belly pouch to play. The adult keeps a close eye on the youngster.\Parent Pokémon\100\2.2\0,148,0 +Scale|1.48 +Move|1,4 +Move|1,43 +Move|7,252 +Move|10,39 +Move|13,44 +Move|19,458 +Move|22,99 +Move|25,5 +Move|31,498 +Move|34,146 +Move|37,242 +Move|43,203 +Move|46,200 +Move|49,389 +Move|50,179 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/116.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/116.dat index 540533ac1..a26d7ac02 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/116.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/116.dat @@ -1 +1,52 @@ -{"Name":"Horsea","Number":116,"ExperienceType":"MediumFast","BaseExperience":59,"Type1":"Water","Type2":"Blank","CatchRate":225,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":116,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,97],"HiddenAbility":6,"EggMoves":[62,499,50,225,82,175,330,190,200,13,324,150,352],"Machines":[29,174,92,237,173,59,63,196,182,240,203,218,225,216,104,207,214,129,197,156,213,36,61,55,58,99,102,117,130,164,352,258,263,290,362,406,416,445,363,430,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":40,"Def":70,"SpAtk":70,"SpDef":25,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"If attacked by a larger enemy it quickly swims to safety by adeptly controlling its well-developed dorsal fin.","Species":"Dragon Pokémon","Height":0.4,"Weight":8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":55},{"Level":4,"ID":108},{"Level":8,"ID":43},{"Level":11,"ID":145},{"Level":14,"ID":116},{"Level":18,"ID":61},{"Level":23,"ID":97},{"Level":26,"ID":239},{"Level":30,"ID":362},{"Level":35,"ID":56},{"Level":38,"ID":349},{"Level":42,"ID":406}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":117,"Trigger":"LevelUp"}],"Items":[{"Id":151,"Chance":5}]} \ No newline at end of file +Name|Horsea +Number|116 +ExperienceType|1 +BaseExperience|59 +Type1|Water +Type2| +CatchRate|225 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|116 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|33 +Ability2|97 +HiddenAbility|6 +EggMoves|62,499,50,225,82,175,330,190,200,13,324,150,352 +Machines|29,174,92,237,173,59,63,196,182,240,203,218,225,216,104,207,214,129,197,156,213,36,61,55,58,99,102,117,130,164,352,258,263,290,362,406,416,445,363,430,496,503,590,57,250,127,291 +BaseHP|30 +BaseAttack|40 +BaseDefense|70 +BaseSpAttack|70 +BaseSpDefense|25 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|If attacked by a larger enemy it quickly swims to safety by adeptly controlling its well-developed dorsal fin.\Dragon Pokémon\8\0.4\0,148,0 +Scale|0.7 +Move|1,55 +Move|4,108 +Move|8,43 +Move|11,145 +Move|14,116 +Move|18,61 +Move|23,97 +Move|26,239 +Move|30,362 +Move|35,56 +Move|38,349 +Move|42,406 +TradeValue|25 +Item|5,151 +EvolutionCondition|117,Level,32,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/117.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/117.dat index 6a5354528..061c50fcc 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/117.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/117.dat @@ -1 +1,55 @@ -{"Name":"Seadra","Number":117,"ExperienceType":"MediumFast","BaseExperience":154,"Type1":"Water","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":116,"Devolution":116,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[38,97],"HiddenAbility":6,"EggMoves":[62,499,50,225,82,175,330,190,200,13,324,150,352],"Machines":[29,174,92,237,173,59,63,196,182,240,203,218,225,216,104,207,214,129,197,156,213,36,61,55,58,99,102,117,130,164,352,258,263,290,362,406,416,445,363,430,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":65,"Def":95,"SpAtk":95,"SpDef":45,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"An examination of its cells revealed the presence of a gene not found in HORSEA. It became a hot topic.","Species":"Dragon Pokémon","Height":1.2,"Weight":25,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":30,"Moves":[{"Level":1,"ID":55},{"Level":2,"ID":108},{"Level":3,"ID":43},{"Level":4,"ID":145},{"Level":5,"ID":108},{"Level":8,"ID":43},{"Level":11,"ID":145},{"Level":14,"ID":116},{"Level":18,"ID":61},{"Level":23,"ID":97},{"Level":26,"ID":239},{"Level":30,"ID":362},{"Level":40,"ID":56},{"Level":48,"ID":349},{"Level":57,"ID":406}],"EvolutionConditions":[{"Condition":"151","ConditionType":"HoldItem","Evolution":230,"Trigger":"Trading"}],"Items":[{"Id":151,"Chance":5}]} \ No newline at end of file +Name|Seadra +Number|117 +ExperienceType|1 +BaseExperience|154 +Type1|Water +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|116 +IsGenderLess|0 +CanBreed|1 +Devolution|116 +IsMale|50 +Ability1|38 +Ability2|97 +HiddenAbility|6 +EggMoves|62,499,50,225,82,175,330,190,200,13,324,150,352 +Machines|29,174,92,237,173,59,63,196,182,240,203,218,225,216,104,207,214,129,197,156,213,36,61,55,58,99,102,117,130,164,352,258,263,290,362,406,416,445,363,430,496,503,590,57,250,127,291 +BaseHP|55 +BaseAttack|65 +BaseDefense|95 +BaseSpAttack|95 +BaseSpDefense|45 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|An examination of its cells revealed the presence of a gene not found in HORSEA. It became a hot topic.\Dragon Pokémon\25\1.2\0,148,0 +Scale|1.08 +Move|1,55 +Move|1,108 +Move|1,43 +Move|1,145 +Move|4,108 +Move|8,43 +Move|11,145 +Move|14,116 +Move|18,61 +Move|23,97 +Move|26,239 +Move|30,362 +Move|40,56 +Move|48,349 +Move|57,406 +TradeValue|30 +Item|5,151 +EvolutionCondition|230,holditem,151,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/118.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/118.dat index d7cf6dc69..3375fb24b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/118.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/118.dat @@ -1 +1,53 @@ -{"Name":"Goldeen","Number":118,"ExperienceType":"MediumFast","BaseExperience":64,"Type1":"Water","Type2":"Blank","CatchRate":225,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":118,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,41],"HiddenAbility":31,"EggMoves":[401,34,114,56,341,189,300,60,324,130,214],"Machines":[174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,32,36,61,55,58,99,102,117,130,164,352,258,263,290,416,445,363,398,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":67,"Def":60,"SpAtk":35,"SpDef":50,"Speed":63},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"Its dorsal, pectoral and tail fins wave elegantly in water. That is why it is known as the water dancer.","Species":"Goldfish Pokémon","Height":0.6,"Weight":15,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":20,"Moves":[{"Level":1,"ID":64},{"Level":2,"ID":39},{"Level":3,"ID":346},{"Level":7,"ID":48},{"Level":11,"ID":30},{"Level":17,"ID":352},{"Level":21,"ID":175},{"Level":27,"ID":392},{"Level":31,"ID":31},{"Level":37,"ID":127},{"Level":41,"ID":32},{"Level":47,"ID":97},{"Level":51,"ID":1},{"Level":57,"ID":224}],"EvolutionConditions":[{"Condition":"33","ConditionType":"Level","Evolution":119,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Goldeen +Number|118 +ExperienceType|1 +BaseExperience|64 +Type1|Water +Type2| +CatchRate|225 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|118 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|33 +Ability2|41 +HiddenAbility|31 +EggMoves|401,34,114,56,341,189,300,60,324,130,214 +Machines|174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,32,36,61,55,58,99,102,117,130,164,352,258,263,290,416,445,363,398,496,503,590,57,250,127,291 +BaseHP|45 +BaseAttack|67 +BaseDefense|60 +BaseSpAttack|35 +BaseSpDefense|50 +BaseSpeed|63 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|Its dorsal, pectoral and tail fins wave elegantly in water. That is why it is known as the water dancer.\Goldfish Pokémon\15\0.6\0,148,0 +Scale|0.84 +Move|1,64 +Move|1,39 +Move|1,346 +Move|7,48 +Move|11,30 +Move|17,352 +Move|21,175 +Move|27,392 +Move|31,31 +Move|37,127 +Move|41,32 +Move|47,97 +Move|51,487 +Move|57,224 +TradeValue|20 +EvolutionCondition|119,Level,33,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/119.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/119.dat index 6688af3ad..0d9d090a5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/119.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/119.dat @@ -1 +1,55 @@ -{"Name":"Seaking","Number":119,"ExperienceType":"MediumFast","BaseExperience":158,"Type1":"Water","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":118,"Devolution":118,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,41],"HiddenAbility":31,"EggMoves":[401,34,114,56,341,189,300,60,324,130,214],"Machines":[174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,32,36,38,61,55,58,99,102,117,130,164,352,258,263,290,416,445,363,398,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":92,"Def":65,"SpAtk":65,"SpDef":80,"Speed":68},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"During spawning season, Seaking gather from all over, coloring the rivers a brilliant red.","Species":"Goldfish Pokémon","Height":1.3,"Weight":39,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":30,"Moves":[{"Level":1,"ID":224},{"Level":2,"ID":398},{"Level":3,"ID":64},{"Level":4,"ID":39},{"Level":5,"ID":346},{"Level":6,"ID":48},{"Level":7,"ID":48},{"Level":11,"ID":30},{"Level":17,"ID":352},{"Level":21,"ID":175},{"Level":27,"ID":392},{"Level":31,"ID":31},{"Level":40,"ID":127},{"Level":47,"ID":32},{"Level":56,"ID":97},{"Level":63,"ID":1},{"Level":72,"ID":224}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Seaking +Number|119 +ExperienceType|1 +BaseExperience|158 +Type1|Water +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|118 +IsGenderLess|0 +CanBreed|1 +Devolution|118 +IsMale|50 +Ability1|33 +Ability2|41 +HiddenAbility|31 +EggMoves|401,34,114,56,341,189,300,60,324,130,214 +Machines|174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,32,36,38,61,55,58,99,102,117,130,164,352,258,263,290,416,445,363,398,496,503,590,57,250,127,291 +BaseHP|80 +BaseAttack|92 +BaseDefense|65 +BaseSpAttack|65 +BaseSpDefense|80 +BaseSpeed|68 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|During spawning season, Seaking gather from all over, coloring the rivers a brilliant red.\Goldfish Pokémon\39\1.3\0,148,0 +Scale|1.12 +Move|1,224 +Move|1,398 +Move|1,64 +Move|1,39 +Move|1,346 +Move|1,48 +Move|7,48 +Move|11,30 +Move|17,352 +Move|21,175 +Move|27,392 +Move|31,31 +Move|40,127 +Move|47,32 +Move|56,97 +Move|63,487 +Move|72,224 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/12.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/12.dat index 6ced9092a..7a8e13824 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/12.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/12.dat @@ -1 +1,51 @@ -{"Name":"Butterfree","Number":12,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Bug","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":10,"Devolution":11,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[14],"HiddenAbility":110,"EggMoves":[],"Machines":[174,92,244,237,241,230,173,63,182,240,202,203,218,76,216,94,247,104,207,214,129,138,197,156,213,168,171,13,18,36,99,72,100,102,117,149,164,219,332,263,290,285,355,412,318,416,432,445,363,369,474,496,512,522,611,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":45,"Def":50,"SpAtk":90,"SpDef":80,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":1,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"It collects honey every day. It rubs honey onto the hairs on its legs to carry it back to its nest.","Species":"Butterfly Pokémon","Height":1.1,"Weight":32,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":15,"Moves":[{"Level":1,"ID":93},{"Level":10,"ID":93},{"Level":12,"ID":77},{"Level":13,"ID":79},{"Level":14,"ID":78},{"Level":16,"ID":16},{"Level":18,"ID":48},{"Level":22,"ID":18},{"Level":24,"ID":60},{"Level":28,"ID":318},{"Level":30,"ID":366},{"Level":34,"ID":1},{"Level":36,"ID":219},{"Level":40,"ID":445},{"Level":42,"ID":405},{"Level":46,"ID":483}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Butterfree +Number|12 +ExperienceType|1 +BaseExperience|173 +Type1|Bug +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|10 +IsGenderLess|0 +IsMale|50 +Ability1|14 +Ability2|Nothing +HiddenAbility|110 +Machines|174,92,244,237,241,230,173,63,182,240,202,203,218,76,216,94,247,104,207,214,129,138,197,156,213,168,171,13,18,36,99,72,100,102,117,149,164,219,332,263,290,285,355,412,318,416,432,445,363,369,474,496,512,522,611,590,148 +BaseHP|60 +BaseAttack|45 +BaseDefense|50 +BaseSpAttack|90 +BaseSpDefense|80 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|1 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|It collects honey every day. It rubs honey onto the hairs on its legs to carry it back to its nest.\Butterfly Pokémon\32\1.1\0,148,0 +Scale|1.04 +Move|1,93 +Move|10,93 +Move|12,77 +Move|12,79 +Move|12,78 +Move|16,16 +Move|18,48 +Move|22,18 +Move|24,60 +Move|28,318 +Move|30,366 +Move|34,476 +Move|36,219 +Move|40,445 +Move|42,405 +Move|46,483 +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/120.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/120.dat index e4ed80d04..d2d4ea041 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/120.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/120.dat @@ -1 +1,56 @@ -{"Name":"Staryu","Number":120,"ExperienceType":"Slow","BaseExperience":68,"Type1":"Water","Type2":"Blank","CatchRate":225,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":120,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[35,30],"HiddenAbility":148,"EggMoves":[],"Machines":[174,92,192,244,237,173,59,63,196,182,240,203,218,87,216,94,104,207,214,129,197,156,213,36,38,61,55,58,99,85,100,102,115,117,130,86,149,161,164,352,258,113,263,290,362,278,416,360,445,363,430,496,503,605,590,57,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":45,"Def":55,"SpAtk":70,"SpDef":55,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"At night slowly flickers with the same rhythm as a human heartbeat.","Species":"Star Shape Pokémon","Height":0.8,"Weight":34.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":20,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":106},{"Level":6,"ID":55},{"Level":10,"ID":229},{"Level":12,"ID":105},{"Level":15,"ID":1},{"Level":18,"ID":129},{"Level":22,"ID":61},{"Level":25,"ID":107},{"Level":30,"ID":360},{"Level":33,"ID":113},{"Level":36,"ID":362},{"Level":40,"ID":1},{"Level":43,"ID":408},{"Level":48,"ID":322},{"Level":52,"ID":56}],"EvolutionConditions":[{"Condition":"24","ConditionType":"Item","Evolution":121,"Trigger":"ItemUse"}],"Items":[{"Id":132,"Chance":5},{"Id":131,"Chance":50}]} \ No newline at end of file +Name|Staryu +Number|120 +ExperienceType|3 +BaseExperience|68 +Type1|Water +Type2| +CatchRate|225 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|120 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|35 +Ability2|30 +HiddenAbility|148 +Machines|174,92,192,244,237,173,59,63,196,182,240,203,218,87,216,94,104,207,214,129,197,156,213,36,38,61,55,58,99,85,100,102,115,117,130,86,149,161,164,352,258,113,263,290,362,278,416,360,445,363,430,496,503,605,590,57,148,250,127,291 +BaseHP|30 +BaseAttack|45 +BaseDefense|55 +BaseSpAttack|70 +BaseSpDefense|55 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|1 +Pokedex|At night slowly flickers with the same rhythm as a human heartbeat.\Star Shape Pokémon\34.5\0.8\0,148,0 +Scale|0.92 +Move|1,33 +Move|1,106 +Move|6,55 +Move|10,229 +Move|12,105 +Move|15,293 +Move|18,129 +Move|22,61 +Move|25,107 +Move|30,360 +Move|33,113 +Move|36,362 +Move|40,513 +Move|43,408 +Move|48,322 +Move|52,56 +TradeValue|20 +Item|5,132 +Item|50,131 +EvolutionCondition|121,item,24,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/121.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/121.dat index 25d3f565d..87aa946fe 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/121.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/121.dat @@ -1 +1,44 @@ -{"Name":"Starmie","Number":121,"ExperienceType":"Slow","BaseExperience":182,"Type1":"Water","Type2":"Psychic","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":120,"Devolution":120,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[35,30],"HiddenAbility":148,"EggMoves":[],"Machines":[174,92,192,244,237,173,63,196,182,240,203,218,87,216,94,104,207,214,129,138,197,156,213,171,36,38,61,55,58,99,85,100,102,115,117,130,86,149,161,164,352,258,113,263,290,285,362,278,416,360,445,363,447,430,433,473,496,503,605,590,57,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":75,"Def":85,"SpAtk":100,"SpDef":85,"Speed":115},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The middle section of its body is called the core. It glows in a different color each time it is seen.","Species":"Mysterious Pokémon","Height":1.1,"Weight":80,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":40,"Moves":[{"Level":1,"ID":55},{"Level":2,"ID":229},{"Level":3,"ID":105},{"Level":4,"ID":129},{"Level":22,"ID":109}],"EvolutionConditions":[],"Items":[{"Id":132,"Chance":5},{"Id":131,"Chance":50}]} \ No newline at end of file +Name|Starmie +Number|121 +ExperienceType|3 +BaseExperience|182 +Type1|Water +Type2|Psychic +CatchRate|60 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|120 +IsGenderLess|1 +CanBreed|1 +Devolution|120 +IsMale|0.0 +Ability1|35 +Ability2|30 +HiddenAbility|148 +Machines|174,92,192,244,237,173,63,196,182,240,203,218,87,216,94,104,207,214,129,138,197,156,213,171,36,38,61,55,58,99,85,100,102,115,117,130,86,149,161,164,352,258,113,263,290,285,362,278,416,360,445,363,447,430,433,473,496,503,605,590,57,148,250,127,291 +BaseHP|60 +BaseAttack|75 +BaseDefense|85 +BaseSpAttack|100 +BaseSpDefense|85 +BaseSpeed|115 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|The middle section of its body is called the core. It glows in a different color each time it is seen.\Mysterious Pokémon\80\1.1\0,148,0 +Scale|1.04 +Move|1,55 +Move|1,229 +Move|1,105 +Move|1,129 +Move|22,109 +TradeValue|40 +Item|5,132 +Item|50,131 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/122.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/122.dat index 0910bf1d7..37b0efe59 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/122.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/122.dat @@ -1 +1,63 @@ -{"Name":"Mr. Mime","Number":122,"ExperienceType":"MediumFast","BaseExperience":161,"Type1":"Psychic","Type2":"Fairy","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":439,"Devolution":439,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[43,111],"HiddenAbility":101,"EggMoves":[204,109,252,248,361,95,196,478,102,417,471,298,271,358,244],"Machines":[223,29,174,92,192,244,237,241,173,63,182,240,203,218,76,87,216,94,247,189,104,8,207,214,9,138,197,156,213,168,7,171,5,25,34,36,38,58,66,68,69,99,85,100,102,115,117,118,130,86,149,164,264,347,269,113,219,280,351,332,259,263,290,285,289,411,412,374,451,409,371,278,416,445,363,447,433,473,477,496,611,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":45,"Def":65,"SpAtk":100,"SpDef":120,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A skilled mime from birth, it gains the ability to create invisible objects as it matures.","Species":"Barrier Pokémon","Height":1.3,"Weight":54.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":70,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":345},{"Level":3,"ID":1},{"Level":4,"ID":1},{"Level":5,"ID":384},{"Level":6,"ID":385},{"Level":7,"ID":112},{"Level":8,"ID":93},{"Level":9,"ID":1},{"Level":10,"ID":96},{"Level":11,"ID":3},{"Level":15,"ID":102},{"Level":16,"ID":149},{"Level":18,"ID":227},{"Level":22,"ID":113},{"Level":23,"ID":115},{"Level":25,"ID":60},{"Level":29,"ID":164},{"Level":32,"ID":278},{"Level":36,"ID":271},{"Level":39,"ID":94},{"Level":43,"ID":272},{"Level":46,"ID":226},{"Level":50,"ID":219}],"EvolutionConditions":[],"Items":[{"Id":2005,"Chance":5}]} \ No newline at end of file +Name|Mr. Mime +Number|122 +ExperienceType|1 +BaseExperience|161 +Type1|Psychic +Type2|Fairy +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|439 +IsGenderLess|0 +CanBreed|1 +Devolution|439 +IsMale|50 +Ability1|43 +Ability2|111 +HiddenAbility|101 +EggMoves|204,109,252,248,361,95,196,478,102,417,471,298,271,358,244 +Machines|223,29,174,92,192,244,237,241,173,63,182,240,203,218,76,87,216,94,247,189,104,8,207,214,9,138,197,156,213,168,7,171,5,25,34,36,38,58,66,68,69,99,85,100,102,115,117,118,130,86,149,164,264,347,269,113,219,280,351,332,259,263,290,285,289,411,412,374,451,409,371,278,416,445,363,447,433,473,477,496,611,612,605,590,148 +BaseHP|40 +BaseAttack|45 +BaseDefense|65 +BaseSpAttack|100 +BaseSpDefense|120 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A skilled mime from birth, it gains the ability to create invisible objects as it matures.\Barrier Pokémon\54.5\1.3\0,148,0 +Scale|1.12 +Move|1,581 +Move|1,345 +Move|1,501 +Move|1,469 +Move|1,384 +Move|1,385 +Move|1,112 +Move|1,93 +Move|4,383 +Move|8,96 +Move|11,3 +Move|15,102 +Move|15,149 +Move|18,227 +Move|22,113 +Move|22,115 +Move|25,60 +Move|29,164 +Move|32,278 +Move|36,271 +Move|39,94 +Move|43,272 +Move|46,226 +Move|50,219 +TradeValue|70 +Item|5,2005 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/123.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/123.dat index 30d95b17d..1cb4f747f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/123.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/123.dat @@ -1 +1,57 @@ -{"Name":"Scyther","Number":123,"ExperienceType":"MediumFast","BaseExperience":100,"Type1":"Bug","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":123,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,101],"HiddenAbility":80,"EggMoves":[226,405,68,432,203,400,501,13,179,318,211,113,219],"Machines":[29,174,92,249,237,241,173,63,182,240,203,218,216,104,207,214,129,197,156,213,168,211,210,14,36,38,99,102,117,130,164,113,219,280,332,263,290,355,206,318,416,432,445,404,363,369,496,522,590,15],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":110,"Def":80,"SpAtk":55,"SpDef":80,"Speed":105},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It slashes through grass with its sharp scythes, moving too fast for the human eye to track.","Species":"Mantis Pokémon","Height":1.5,"Weight":56,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":80,"Moves":[{"Level":1,"ID":410},{"Level":2,"ID":98},{"Level":3,"ID":43},{"Level":5,"ID":116},{"Level":9,"ID":228},{"Level":13,"ID":206},{"Level":17,"ID":97},{"Level":21,"ID":17},{"Level":25,"ID":210},{"Level":29,"ID":163},{"Level":33,"ID":13},{"Level":37,"ID":104},{"Level":41,"ID":404},{"Level":45,"ID":400},{"Level":49,"ID":458},{"Level":50,"ID":403},{"Level":57,"ID":14},{"Level":61,"ID":364}],"EvolutionConditions":[{"Condition":"143","ConditionType":"HoldItem","Evolution":212,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Scyther +Number|123 +ExperienceType|1 +BaseExperience|100 +Type1|Bug +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|123 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|68 +Ability2|101 +HiddenAbility|80 +EggMoves|226,405,68,432,203,400,501,13,179,318,211,113,219 +Machines|29,174,92,249,237,241,173,63,182,240,203,218,216,104,207,214,129,197,156,213,168,211,210,14,36,38,99,102,117,130,164,113,219,280,332,263,290,355,206,318,416,432,445,404,363,369,496,522,590,15 +BaseHP|70 +BaseAttack|110 +BaseDefense|80 +BaseSpAttack|55 +BaseSpDefense|80 +BaseSpeed|105 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It slashes through grass with its sharp scythes, moving too fast for the human eye to track.\Mantis Pokémon\56\1.5\0,148,0 +Scale|1.2 +Move|1,410 +Move|1,98 +Move|1,43 +Move|5,116 +Move|9,228 +Move|13,206 +Move|17,97 +Move|21,17 +Move|25,210 +Move|29,163 +Move|33,13 +Move|37,104 +Move|41,404 +Move|45,400 +Move|49,458 +Move|50,403 +Move|57,14 +Move|61,364 +TradeValue|80 +EvolutionCondition|212,holditem,143,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/124.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/124.dat index 927f036c8..6533ea445 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/124.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/124.dat @@ -1 +1,59 @@ -{"Name":"Jynx","Number":124,"ExperienceType":"MediumFast","BaseExperience":159,"Type1":"Ice","Type2":"Psychic","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":238,"Devolution":238,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[12,108],"HiddenAbility":87,"EggMoves":[445,252,8,96,357,417,358,273,244,142],"Machines":[223,29,174,92,244,237,230,173,59,63,196,182,240,203,218,216,94,247,189,104,8,207,214,138,197,156,213,168,171,5,34,36,38,61,55,58,66,68,69,99,100,102,115,117,118,130,149,164,264,352,347,258,269,113,280,259,263,290,285,411,412,374,409,371,278,416,419,445,363,447,433,473,477,496,497,524,612,590,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":50,"Def":35,"SpAtk":115,"SpDef":95,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It rocks its body rhythmically. It appears to alter the rhythm depending on how it is feeling.","Species":"Human Shape Pokémon","Height":1.4,"Weight":40.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":80,"Moves":[{"Level":1,"ID":577},{"Level":2,"ID":195},{"Level":3,"ID":1},{"Level":4,"ID":122},{"Level":5,"ID":142},{"Level":6,"ID":181},{"Level":7,"ID":122},{"Level":8,"ID":142},{"Level":11,"ID":181},{"Level":15,"ID":3},{"Level":18,"ID":8},{"Level":21,"ID":531},{"Level":25,"ID":212},{"Level":28,"ID":313},{"Level":33,"ID":358},{"Level":39,"ID":1},{"Level":44,"ID":34},{"Level":49,"ID":378},{"Level":55,"ID":195},{"Level":60,"ID":59}],"EvolutionConditions":[],"Items":[{"Id":2004,"Chance":100}]} \ No newline at end of file +Name|Jynx +Number|124 +ExperienceType|1 +BaseExperience|159 +Type1|Ice +Type2|Psychic +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|238 +IsGenderLess|0 +CanBreed|1 +Devolution|238 +IsMale|0 +Ability1|12 +Ability2|108 +HiddenAbility|87 +EggMoves|445,252,8,96,357,417,358,273,244,142 +Machines|223,29,174,92,244,237,230,173,59,63,196,182,240,203,218,216,94,247,189,104,8,207,214,138,197,156,213,168,171,5,34,36,38,61,55,58,66,68,69,99,100,102,115,117,118,130,149,164,264,352,347,258,269,113,280,259,263,290,285,411,412,374,409,371,278,416,419,445,363,447,433,473,477,496,497,524,612,590,148 +BaseHP|65 +BaseAttack|50 +BaseDefense|35 +BaseSpAttack|115 +BaseSpDefense|95 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It rocks its body rhythmically. It appears to alter the rhythm depending on how it is feeling.\Human Shape Pokémon\40.6\1.4\0,148,0 +Scale|1.16 +Move|1,577 +Move|1,195 +Move|1,1 +Move|1,122 +Move|1,142 +Move|1,181 +Move|5,122 +Move|8,142 +Move|11,181 +Move|15,3 +Move|18,8 +Move|21,531 +Move|25,212 +Move|28,313 +Move|33,358 +Move|39,419 +Move|44,34 +Move|49,378 +Move|55,195 +Move|60,59 +TradeValue|80 +Item|100,2004 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/125.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/125.dat index 40acf943f..3ada3a9b3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/125.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/125.dat @@ -1 +1,54 @@ -{"Name":"Electabuzz","Number":125,"ExperienceType":"MediumFast","BaseExperience":172,"Type1":"Electric","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":239,"Devolution":239,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[9],"HiddenAbility":72,"EggMoves":[112,238,223,364,7,264,359,8,2,96,27],"Machines":[223,29,174,92,192,249,237,173,63,182,240,203,218,231,87,216,189,104,8,207,214,129,9,197,156,213,7,5,25,34,36,38,66,68,69,99,100,102,117,118,130,86,149,164,264,351,263,290,416,445,363,490,496,528,612,590,148,431],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":83,"Def":57,"SpAtk":95,"SpDef":85,"Speed":105},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Electricity runs across the surface of its body. In darkness, its entire body glows a whitish-blue.","Species":"Electric Pokémon","Height":1.1,"Weight":30,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":70,"Moves":[{"Level":1,"ID":98},{"Level":2,"ID":43},{"Level":3,"ID":84},{"Level":5,"ID":84},{"Level":8,"ID":67},{"Level":12,"ID":129},{"Level":15,"ID":351},{"Level":19,"ID":86},{"Level":22,"ID":486},{"Level":26,"ID":113},{"Level":29,"ID":9},{"Level":36,"ID":435},{"Level":42,"ID":103},{"Level":49,"ID":85},{"Level":55,"ID":87}],"EvolutionConditions":[{"Condition":"120","ConditionType":"HoldItem","Evolution":466,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Electabuzz +Number|125 +ExperienceType|1 +BaseExperience|172 +Type1|Electric +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|239 +IsGenderLess|0 +CanBreed|1 +Devolution|239 +IsMale|75 +Ability1|9 +Ability2|Nothing +HiddenAbility|72 +EggMoves|112,238,223,364,7,264,359,8,2,96,27 +Machines|223,29,174,92,192,249,237,173,63,182,240,203,218,231,87,216,189,104,8,207,214,129,9,197,156,213,7,5,25,34,36,38,66,68,69,99,100,102,117,118,130,86,149,164,264,351,263,290,416,445,363,490,496,528,612,590,148,431 +BaseHP|65 +BaseAttack|83 +BaseDefense|57 +BaseSpAttack|95 +BaseSpDefense|85 +BaseSpeed|105 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Electricity runs across the surface of its body. In darkness, its entire body glows a whitish-blue.\Electric Pokémon\30\1.1\0,148,0 +Scale|1.04 +Move|1,98 +Move|1,43 +Move|1,84 +Move|5,84 +Move|8,67 +Move|12,129 +Move|15,351 +Move|19,86 +Move|22,486 +Move|26,113 +Move|29,9 +Move|36,435 +Move|42,103 +Move|49,85 +Move|55,87 +TradeValue|70 +EvolutionCondition|466,holditem,120,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/126.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/126.dat index 9088b4f8b..c1ad5bd51 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/126.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/126.dat @@ -1 +1,54 @@ -{"Name":"Magmar","Number":126,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":240,"Devolution":240,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[49],"HiddenAbility":72,"EggMoves":[112,562,187,238,223,394,116,231,2,183,5,384,103,9],"Machines":[223,29,174,92,249,237,241,173,63,182,203,218,231,216,94,189,104,207,214,126,9,197,156,213,168,7,5,25,34,36,38,66,68,69,99,100,102,117,118,130,149,164,264,53,263,290,374,261,416,445,363,488,490,496,510,612,590,431],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":95,"Def":57,"SpAtk":100,"SpDef":85,"Speed":93},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It dislikes cold places, so it blows scorching flames to make the environment suitable for itself.","Species":"Spitfire Pokémon","Height":1.3,"Weight":44.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":65,"Moves":[{"Level":1,"ID":123},{"Level":2,"ID":43},{"Level":3,"ID":52},{"Level":5,"ID":52},{"Level":8,"ID":108},{"Level":12,"ID":185},{"Level":15,"ID":83},{"Level":19,"ID":499},{"Level":22,"ID":481},{"Level":26,"ID":109},{"Level":29,"ID":7},{"Level":36,"ID":436},{"Level":42,"ID":241},{"Level":49,"ID":53},{"Level":55,"ID":126}],"EvolutionConditions":[{"Condition":"100","ConditionType":"HoldItem","Evolution":467,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Magmar +Number|126 +ExperienceType|1 +BaseExperience|173 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|240 +IsGenderLess|0 +CanBreed|1 +Devolution|240 +IsMale|75 +Ability1|49 +Ability2|Nothing +HiddenAbility|72 +EggMoves|112,562,187,238,223,394,116,231,2,183,5,384,103,9 +Machines|223,29,174,92,249,237,241,173,63,182,203,218,231,216,94,189,104,207,214,126,9,197,156,213,168,7,5,25,34,36,38,66,68,69,99,100,102,117,118,130,149,164,264,53,263,290,374,261,416,445,363,488,490,496,510,612,590,431 +BaseHP|65 +BaseAttack|95 +BaseDefense|57 +BaseSpAttack|100 +BaseSpDefense|85 +BaseSpeed|93 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It dislikes cold places, so it blows scorching flames to make the environment suitable for itself.\Spitfire Pokémon\44.5\1.3\0,148,0 +Scale|1.12 +Move|1,123 +Move|1,43 +Move|1,52 +Move|5,52 +Move|8,108 +Move|12,185 +Move|15,83 +Move|19,499 +Move|22,481 +Move|26,109 +Move|29,7 +Move|36,436 +Move|42,241 +Move|49,53 +Move|55,126 +TradeValue|65 +EvolutionCondition|467,holditem,100,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/127.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/127.dat index c7fbffc63..9fdf9aee5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/127.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/127.dat @@ -1 +1,53 @@ -{"Name":"Pinsir","Number":127,"ExperienceType":"Slow","BaseExperience":175,"Type1":"Bug","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":127,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[52,104],"HiddenAbility":153,"EggMoves":[450,370,185,364,175,31,382,98,276,206],"Machines":[29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,207,214,197,156,213,168,210,14,34,36,38,66,69,99,102,117,157,164,264,339,280,317,263,290,411,206,374,416,444,446,445,404,363,479,496,522,523,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":125,"Def":100,"SpAtk":55,"SpDef":70,"Speed":85},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"With its horns, it digs burrows to sleep in at night. In the morning, damp soil clings to its body.","Species":"Stag Beetle Pokémon","Height":1.5,"Weight":55,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":80,"Moves":[{"Level":1,"ID":11},{"Level":2,"ID":116},{"Level":4,"ID":20},{"Level":8,"ID":69},{"Level":11,"ID":106},{"Level":15,"ID":279},{"Level":18,"ID":280},{"Level":22,"ID":233},{"Level":26,"ID":66},{"Level":29,"ID":404},{"Level":33,"ID":1},{"Level":36,"ID":37},{"Level":40,"ID":14},{"Level":43,"ID":276},{"Level":47,"ID":12}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Pinsir +Number|127 +ExperienceType|3 +BaseExperience|175 +Type1|Bug +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|127 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|52 +Ability2|104 +HiddenAbility|153 +EggMoves|450,370,185,364,175,31,382,98,276,206 +Machines|29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,207,214,197,156,213,168,210,14,34,36,38,66,69,99,102,117,157,164,264,339,280,317,263,290,411,206,374,416,444,446,445,404,363,479,496,522,523,590,15,70,431 +BaseHP|65 +BaseAttack|125 +BaseDefense|100 +BaseSpAttack|55 +BaseSpDefense|70 +BaseSpeed|85 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|With its horns, it digs burrows to sleep in at night. In the morning, damp soil clings to its body.\Stag Beetle Pokémon\55\1.5\0,148,0 +Scale|1.2 +Move|1,11 +Move|1,116 +Move|4,20 +Move|8,69 +Move|11,106 +Move|15,279 +Move|18,280 +Move|22,233 +Move|26,66 +Move|29,404 +Move|33,480 +Move|36,37 +Move|40,14 +Move|43,276 +Move|47,12 +TradeValue|80 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/127_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/127_mega.dat new file mode 100644 index 000000000..51e82f6bc --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/127_mega.dat @@ -0,0 +1,53 @@ +Name|Mega Pinsir +Number|127 +ExperienceType|3 +BaseExperience|175 +Type1|Bug +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|127 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|184 +Ability2|Nothing +HiddenAbility|184 +EggMoves|450,370,185,364,175,31,382,98,276,206 +Machines|29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,207,214,197,156,213,168,210,14,34,36,38,66,69,99,102,117,157,164,264,339,280,317,263,290,411,206,374,416,444,446,445,404,363,479,496,522,523,590,15,70,431 +BaseHP|65 +BaseAttack|155 +BaseDefense|120 +BaseSpAttack|65 +BaseSpDefense|90 +BaseSpeed|105 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|With its horns, it digs burrows to sleep in at night. In the morning, damp soil clings to its body.\Stag Beetle Pokémon\59\1.7\0,148,0 +Scale|1.2 +Move|1,11 +Move|1,116 +Move|4,20 +Move|8,69 +Move|11,106 +Move|15,279 +Move|18,280 +Move|22,233 +Move|26,66 +Move|29,404 +Move|33,480 +Move|36,37 +Move|40,14 +Move|43,276 +Move|47,12 +TradeValue|80 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/128.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/128.dat index 70fa14564..354a1db29 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/128.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/128.dat @@ -1 +1,51 @@ -{"Name":"Tauros","Number":128,"ExperienceType":"Slow","BaseExperience":172,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":128,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[22,83],"HiddenAbility":125,"EggMoves":[],"Machines":[29,174,92,192,249,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,104,207,214,201,126,197,156,213,25,32,34,36,38,61,55,58,99,85,90,102,117,130,157,164,352,351,53,317,263,290,371,416,444,445,363,496,510,514,523,526,528,590,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":100,"Def":95,"SpAtk":40,"SpDef":70,"Speed":110},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They fight each other by locking horns. The herd's protector takes pride in its battle-scarred horns.","Species":"Wild Bull Pokémon","Height":1.4,"Weight":88.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":85,"Moves":[{"Level":1,"ID":33},{"Level":3,"ID":39},{"Level":5,"ID":99},{"Level":8,"ID":30},{"Level":11,"ID":184},{"Level":15,"ID":228},{"Level":19,"ID":156},{"Level":24,"ID":371},{"Level":29,"ID":526},{"Level":35,"ID":428},{"Level":41,"ID":36},{"Level":48,"ID":207},{"Level":55,"ID":37},{"Level":63,"ID":416}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Tauros +Number|128 +ExperienceType|3 +BaseExperience|172 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|128 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|100 +Ability1|22 +Ability2|83 +HiddenAbility|125 +Machines|29,174,92,192,249,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,104,207,214,201,126,197,156,213,25,32,34,36,38,61,55,58,99,85,90,102,117,130,157,164,352,351,53,317,263,290,371,416,444,445,363,496,510,514,523,526,528,590,57,70,250,431,560 +BaseHP|75 +BaseAttack|100 +BaseDefense|95 +BaseSpAttack|40 +BaseSpDefense|70 +BaseSpeed|110 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|They fight each other by locking horns. The herd's protector takes pride in its battle-scarred horns.\Wild Bull Pokémon\88.4\1.4\0,148,0 +Scale|1.16 +Move|1,33 +Move|3,39 +Move|5,99 +Move|8,30 +Move|11,184 +Move|15,228 +Move|19,156 +Move|24,371 +Move|29,526 +Move|35,428 +Move|41,36 +Move|48,207 +Move|55,37 +Move|63,416 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/129.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/129.dat index a95c8778b..be1bd4960 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/129.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/129.dat @@ -1 +1,41 @@ -{"Name":"Magikarp","Number":129,"ExperienceType":"Slow","BaseExperience":40,"Type1":"Water","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"Dragon","BaseEggSteps":1530,"EggPokemon":129,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33],"HiddenAbility":155,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":20,"Atk":10,"Def":55,"SpAtk":15,"SpDef":20,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"An underpowered, pathetic Pokémon. It may jump high on rare occasions, but usually not more than seven feet.","Species":"Fish Pokémon","Height":0.9,"Weight":10,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":5,"Moves":[{"Level":1,"ID":150},{"Level":15,"ID":33},{"Level":30,"ID":175}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":130,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Magikarp +Number|129 +ExperienceType|3 +BaseExperience|40 +Type1|Water +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|Dragon +BaseEggSteps|1530 +EggPokemon|129 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|33 +Ability2|Nothing +HiddenAbility|155 +Machines| +BaseHP|20 +BaseAttack|10 +BaseDefense|55 +BaseSpAttack|15 +BaseSpDefense|20 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|1 +Pokedex|An underpowered, pathetic Pokémon. It may jump high on rare occasions, but usually not more than seven feet.\Fish Pokémon\10\0.9\0,148,0 +Scale|0.96 +Move|1,150 +Move|15,33 +Move|30,175 +TradeValue|5 +EvolutionCondition|130,Level,20,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/13.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/13.dat index 11df3c586..16dbaeb5e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/13.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/13.dat @@ -1 +1,39 @@ -{"Name":"Weedle","Number":13,"ExperienceType":"MediumFast","BaseExperience":39,"Type1":"Bug","Type2":"Poison","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":13,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[19],"HiddenAbility":50,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":35,"Def":30,"SpAtk":20,"SpDef":20,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its poison stinger is very powerful. Its bright-colored body is intended to warn off its enemies.","Species":"Hairy Bug Pokémon","Height":0.3,"Weight":3.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":5,"Moves":[{"Level":1,"ID":40},{"Level":2,"ID":81},{"Level":15,"ID":450}],"EvolutionConditions":[{"Condition":"7","ConditionType":"Level","Evolution":14,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Weedle +Number|13 +ExperienceType|1 +BaseExperience|39 +Type1|Bug +Type2|Poison +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|13 +IsGenderLess|0 +IsMale|50 +Ability1|19 +Ability2|Nothing +HiddenAbility|50 +Machines| +BaseHP|40 +BaseAttack|35 +BaseDefense|30 +BaseSpAttack|20 +BaseSpDefense|20 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Its poison stinger is very powerful. Its bright-colored body is intended to warn off its enemies.\Hairy Bug Pokémon\3.2\0.3\0,148,0 +Scale|0.7 +Move|1,40 +Move|1,81 +Move|15,450 +EvolutionCondition|14,Level,7,Level +TradeValue|5 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/130.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/130.dat index 3baf02ee3..3e4f41a73 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/130.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/130.dat @@ -1 +1,49 @@ -{"Name":"Gyarados","Number":130,"ExperienceType":"Slow","BaseExperience":189,"Type1":"Water","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"Dragon","BaseEggSteps":1530,"EggPokemon":129,"Devolution":129,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22],"HiddenAbility":153,"EggMoves":[],"Machines":[29,174,46,92,192,249,237,173,59,63,196,182,240,203,218,225,87,89,216,104,207,214,201,197,156,213,34,36,38,61,55,58,99,82,85,102,117,130,86,164,352,258,269,53,259,263,290,362,406,371,416,444,419,445,399,363,496,503,510,523,525,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":125,"Def":79,"SpAtk":60,"SpDef":100,"Speed":81},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They say that during past strife GYARADOS would appear and leave blazing ruins in its wake.","Species":"Atrocious Pokémon","Height":6.5,"Weight":235,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":35,"Moves":[{"Level":1,"ID":37},{"Level":20,"ID":44},{"Level":23,"ID":82},{"Level":26,"ID":43},{"Level":29,"ID":239},{"Level":32,"ID":423},{"Level":35,"ID":401},{"Level":38,"ID":240},{"Level":41,"ID":56},{"Level":44,"ID":349},{"Level":47,"ID":63}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Gyarados +Number|130 +ExperienceType|3 +BaseExperience|189 +Type1|Water +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|Dragon +BaseEggSteps|1530 +EggPokemon|129 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|22 +Ability2|Nothing +HiddenAbility|153 +Machines|29,174,46,92,192,249,237,173,59,63,196,182,240,203,218,225,87,89,216,104,207,214,201,197,156,213,34,36,38,61,55,58,99,82,85,102,117,130,86,164,352,258,269,53,259,263,290,362,406,371,416,444,419,445,399,363,496,503,510,523,525,590,57,70,250,127,291 +TutorMoves|340 +BaseHP|95 +BaseAttack|125 +BaseDefense|79 +BaseSpAttack|60 +BaseSpDefense|100 +BaseSpeed|81 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They say that during past strife GYARADOS would appear and leave blazing ruins in its wake.\Atrocious Pokémon\235\6.5\0,148,0 +Scale|2 +Move|1,37 +Move|20,44 +Move|23,82 +Move|26,43 +Move|29,239 +Move|32,423 +Move|35,401 +Move|38,240 +Move|41,56 +Move|44,349 +Move|47,63 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/130_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/130_mega.dat new file mode 100644 index 000000000..cfaa1452f --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/130_mega.dat @@ -0,0 +1,49 @@ +Name|Mega Gyarados +Number|130 +ExperienceType|3 +BaseExperience|189 +Type1|Water +Type2|Dark +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|Dragon +BaseEggSteps|1530 +EggPokemon|129 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|104 +Ability2|Nothing +HiddenAbility|104 +Machines|29,174,46,92,192,249,237,173,59,63,196,182,240,203,218,225,87,89,216,104,207,214,201,197,156,213,34,36,38,61,55,58,99,82,85,102,117,130,86,164,352,258,269,53,259,263,290,362,406,371,416,444,419,445,399,363,496,503,510,523,525,590,57,70,250,127,291 +TutorMoves|340 +BaseHP|95 +BaseAttack|155 +BaseDefense|109 +BaseSpAttack|70 +BaseSpDefense|130 +BaseSpeed|81 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They say that during past strife GYARADOS would appear and leave blazing ruins in its wake.\Atrocious Pokémon\305\6.5\0,148,0 +Scale|2 +Move|1,37 +Move|20,44 +Move|23,82 +Move|26,43 +Move|29,239 +Move|32,423 +Move|35,401 +Move|38,240 +Move|41,56 +Move|44,349 +Move|47,63 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/131.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/131.dat index da684b6bf..41399bade 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/131.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/131.dat @@ -1 +1,53 @@ -{"Name":"Lapras","Number":131,"ExperienceType":"Slow","BaseExperience":187,"Type1":"Water","Type2":"Ice","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":10455,"EggPokemon":131,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[11,75],"HiddenAbility":93,"EggMoves":[246,419,174,349,406,90,193,573,248,32,287,214,321,250,164,62],"Machines":[29,174,92,192,249,237,173,59,63,196,182,240,203,218,231,225,87,216,94,104,207,214,138,197,156,213,171,32,34,36,38,61,55,58,99,82,85,102,117,130,149,164,352,258,219,351,263,290,362,406,416,419,445,363,496,497,523,524,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":130,"Atk":85,"Def":80,"SpAtk":85,"SpDef":95,"Speed":60},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"They have gentle hearts. Because they rarely fight, many have been caught. Their number has dwindled.","Species":"Transport Pokémon","Height":2.5,"Weight":220,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.6,"Y":1.6,"Z":1.6},"TradeValue":45,"Moves":[{"Level":1,"ID":47},{"Level":2,"ID":45},{"Level":3,"ID":55},{"Level":4,"ID":54},{"Level":7,"ID":109},{"Level":10,"ID":420},{"Level":14,"ID":352},{"Level":18,"ID":34},{"Level":22,"ID":240},{"Level":27,"ID":195},{"Level":32,"ID":58},{"Level":37,"ID":362},{"Level":43,"ID":219},{"Level":47,"ID":56},{"Level":50,"ID":329}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Lapras +Number|131 +ExperienceType|3 +BaseExperience|187 +Type1|Water +Type2|Ice +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|10455 +EggPokemon|131 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|11 +Ability2|75 +HiddenAbility|93 +EggMoves|246,419,174,349,406,90,193,573,248,32,287,214,321,250,164,62 +Machines|29,174,92,192,249,237,173,59,63,196,182,240,203,218,231,225,87,216,94,104,207,214,138,197,156,213,171,32,34,36,38,61,55,58,99,82,85,102,117,130,149,164,352,258,219,351,263,290,362,406,416,419,445,363,496,497,523,524,590,57,70,250,127,291 +BaseHP|130 +BaseAttack|85 +BaseDefense|80 +BaseSpAttack|85 +BaseSpDefense|95 +BaseSpeed|60 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|They have gentle hearts. Because they rarely fight, many have been caught. Their number has dwindled.\Transport Pokémon\220\2.5\0,148,0 +Scale|1.6 +Move|1,47 +Move|1,45 +Move|1,55 +Move|4,54 +Move|7,109 +Move|10,420 +Move|14,352 +Move|18,34 +Move|22,240 +Move|27,195 +Move|32,58 +Move|37,362 +Move|43,219 +Move|47,56 +Move|50,329 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/132.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/132.dat index b9b9acc62..c920e7aa9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/132.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/132.dat @@ -1 +1,40 @@ -{"Name":"Ditto","Number":132,"ExperienceType":"MediumFast","BaseExperience":101,"Type1":"Normal","Type2":"Blank","CatchRate":35,"BaseFriendship":70,"EggGroup1":"Ditto","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":132,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[7],"HiddenAbility":150,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":48,"Atk":48,"Def":48,"SpAtk":48,"SpDef":48,"Speed":48},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can transform into anything. When it sleeps, it changes into a stone to avoid being attacked.","Species":"Transform Pokémon","Height":0.3,"Weight":4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":144}],"EvolutionConditions":[],"Items":[{"Id":155,"Chance":50},{"Id":35,"Chance":5}]} \ No newline at end of file +Name|Ditto +Number|132 +ExperienceType|1 +BaseExperience|101 +Type1|Normal +Type2| +CatchRate|35 +BaseFriendship|70 +EggGroup1|Ditto +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|132 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|7 +Ability2|Nothing +HiddenAbility|150 +Machines| +BaseHP|48 +BaseAttack|48 +BaseDefense|48 +BaseSpAttack|48 +BaseSpDefense|48 +BaseSpeed|48 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can transform into anything. When it sleeps, it changes into a stone to avoid being attacked.\Transform Pokémon\4\0.3\0,148,0 +Scale|0.7 +Move|1,144 +TradeValue|15 +Item|50,155 +Item|5,35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/133.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/133.dat index e09b0e6de..94b47958a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/133.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/133.dat @@ -1 +1,64 @@ -{"Name":"Eevee","Number":133,"ExperienceType":"MediumFast","BaseExperience":65,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":133,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[50,91],"HiddenAbility":107,"EggMoves":[445,204,343,174,197,203,313,175,363,500,485,321,273,281],"Machines":[29,174,92,237,241,173,63,182,240,203,218,76,231,216,91,247,189,104,207,214,129,197,156,213,25,34,36,99,102,117,130,164,263,290,416,445,363,496,497,514,526,590],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":55,"Def":50,"SpAtk":45,"SpDef":65,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has the ability to alter the composition of its body to suit its surrounding environment.","Species":"Evolution Pokémon","Height":0.3,"Weight":6.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":45},{"Level":3,"ID":33},{"Level":4,"ID":39},{"Level":5,"ID":28},{"Level":9,"ID":608},{"Level":10,"ID":129},{"Level":13,"ID":98},{"Level":17,"ID":44},{"Level":20,"ID":287},{"Level":23,"ID":343},{"Level":25,"ID":36},{"Level":29,"ID":204},{"Level":33,"ID":226},{"Level":37,"ID":38},{"Level":41,"ID":387},{"Level":45,"ID":376}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Item","Evolution":136,"Trigger":"ItemUse"},{"Condition":"23","ConditionType":"Item","Evolution":135,"Trigger":"ItemUse"},{"Condition":"24","ConditionType":"Item","Evolution":134,"Trigger":"ItemUse"},{"Condition":"0;3","ConditionType":"DayTime","Evolution":197,"Trigger":"LevelUp"},{"Condition":"220","ConditionType":"Friendship","Evolution":197,"Trigger":"LevelUp"},{"Condition":"1;2","ConditionType":"DayTime","Evolution":196,"Trigger":"LevelUp"},{"Condition":"220","ConditionType":"Friendship","Evolution":196,"Trigger":"LevelUp"},{"Condition":"Ilex Forest","ConditionType":"Place","Evolution":470,"Trigger":"LevelUp"},{"Condition":"Ice Path","ConditionType":"Place","Evolution":471,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Eevee +Number|133 +ExperienceType|1 +BaseExperience|65 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|133 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|50 +Ability2|91 +HiddenAbility|107 +EggMoves|445,204,343,174,197,203,313,175,363,500,485,321,273,281 +Machines|29,174,92,237,241,173,63,182,240,203,218,76,231,216,91,247,189,104,207,214,129,197,156,213,25,34,36,99,102,117,130,164,263,290,416,445,363,496,497,514,526,590 +BaseHP|55 +BaseAttack|55 +BaseDefense|50 +BaseSpAttack|45 +BaseSpDefense|65 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has the ability to alter the composition of its body to suit its surrounding environment.\Evolution Pokémon\6.5\0.3\0,148,0 +Scale|0.7 +Move|1,270 +Move|1,45 +Move|1,33 +Move|1,39 +Move|5,28 +Move|9,608 +Move|10,129 +Move|13,98 +Move|17,44 +Move|20,287 +Move|23,343 +Move|25,36 +Move|29,204 +Move|33,226 +Move|37,38 +Move|41,387 +Move|45,376 +TradeValue|25 +EvolutionCondition|136,item,22,item +EvolutionCondition|135,item,23,item +EvolutionCondition|134,item,24,item +EvolutionCondition|197,daytime,0;3,level +EvolutionCondition|197,friendship,220,level +EvolutionCondition|196,daytime,1;2,level +EvolutionCondition|196,friendship,220,level +EvolutionCondition|470,location,Ilex Forest,level +EvolutionCondition|471,location,Ice Path,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/134.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/134.dat index d068b7116..f73fa4ede 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/134.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/134.dat @@ -1 +1,52 @@ -{"Name":"Vaporeon","Number":134,"ExperienceType":"MediumFast","BaseExperience":184,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":133,"Devolution":133,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[11,11],"HiddenAbility":93,"EggMoves":[445,204,343,174,197,203,313,175,363,500,485,321,273,281],"Machines":[29,174,46,92,249,237,241,173,59,63,196,182,240,203,218,231,216,91,247,189,104,207,214,129,197,156,213,25,34,36,38,61,55,58,99,102,117,130,164,352,258,263,290,362,416,445,363,496,497,503,514,526,590,57,70,250,127,560,291],"TutorMoves":[],"BaseStats":{"HP":130,"Atk":65,"Def":60,"SpAtk":110,"SpDef":95,"Speed":65},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When VAPOREON's fins begin to vibrate, it is a sign that rain will come within a few hours.","Species":"Bubble Jet Pokémon","Height":1,"Weight":29,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":39},{"Level":5,"ID":28},{"Level":9,"ID":55},{"Level":13,"ID":98},{"Level":17,"ID":352},{"Level":20,"ID":62},{"Level":25,"ID":392},{"Level":29,"ID":151},{"Level":33,"ID":114},{"Level":37,"ID":330},{"Level":41,"ID":387},{"Level":45,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Vaporeon +Number|134 +ExperienceType|1 +BaseExperience|184 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|133 +IsGenderLess|0 +CanBreed|1 +Devolution|133 +IsMale|87.5 +Ability1|11 +Ability2|11 +HiddenAbility|93 +EggMoves|445,204,343,174,197,203,313,175,363,500,485,321,273,281 +Machines|29,174,46,92,249,237,241,173,59,63,196,182,240,203,218,231,216,91,247,189,104,207,214,129,197,156,213,25,34,36,38,61,55,58,99,102,117,130,164,352,258,263,290,362,416,445,363,496,497,503,514,526,590,57,70,250,127,560,291 +BaseHP|130 +BaseAttack|65 +BaseDefense|60 +BaseSpAttack|110 +BaseSpDefense|95 +BaseSpeed|65 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When VAPOREON's fins begin to vibrate, it is a sign that rain will come within a few hours.\Bubble Jet Pokémon\29\1\0,148,0 +Scale|1 +Move|1,270 +Move|1,33 +Move|1,39 +Move|5,28 +Move|9,55 +Move|13,98 +Move|17,352 +Move|20,62 +Move|25,392 +Move|29,151 +Move|33,114 +Move|37,330 +Move|41,387 +Move|45,56 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/135.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/135.dat index 78b3aba72..ce662ba5f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/135.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/135.dat @@ -1 +1,52 @@ -{"Name":"Jolteon","Number":135,"ExperienceType":"MediumFast","BaseExperience":184,"Type1":"Electric","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":133,"Devolution":133,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[10,10],"HiddenAbility":95,"EggMoves":[445,204,343,174,197,203,313,175,363,500,485,321,273,281],"Machines":[29,174,46,92,192,249,237,241,173,63,182,240,203,218,231,87,216,91,247,189,104,207,214,129,197,156,213,25,34,36,38,99,85,102,117,130,86,164,113,351,263,290,451,416,445,363,496,497,514,521,526,528,590,70,148,560],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":65,"Def":60,"SpAtk":110,"SpDef":95,"Speed":130},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It concentrates the weak electric charges emitted by its cells and launches wicked lightning bolts.","Species":"Lightning Pokémon","Height":0.8,"Weight":24.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":39},{"Level":5,"ID":28},{"Level":9,"ID":84},{"Level":13,"ID":98},{"Level":17,"ID":24},{"Level":20,"ID":422},{"Level":25,"ID":42},{"Level":29,"ID":97},{"Level":33,"ID":86},{"Level":37,"ID":435},{"Level":41,"ID":387},{"Level":45,"ID":87}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Jolteon +Number|135 +ExperienceType|1 +BaseExperience|184 +Type1|Electric +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|133 +IsGenderLess|0 +CanBreed|1 +Devolution|133 +IsMale|87.5 +Ability1|10 +Ability2|10 +HiddenAbility|95 +EggMoves|445,204,343,174,197,203,313,175,363,500,485,321,273,281 +Machines|29,174,46,92,192,249,237,241,173,63,182,240,203,218,231,87,216,91,247,189,104,207,214,129,197,156,213,25,34,36,38,99,85,102,117,130,86,164,113,351,263,290,451,416,445,363,496,497,514,521,526,528,590,70,148,560 +BaseHP|65 +BaseAttack|65 +BaseDefense|60 +BaseSpAttack|110 +BaseSpDefense|95 +BaseSpeed|130 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It concentrates the weak electric charges emitted by its cells and launches wicked lightning bolts.\Lightning Pokémon\24.5\0.8\0,148,0 +Scale|0.92 +Move|1,270 +Move|1,33 +Move|1,39 +Move|5,28 +Move|9,84 +Move|13,98 +Move|17,24 +Move|20,422 +Move|25,42 +Move|29,97 +Move|33,86 +Move|37,435 +Move|41,387 +Move|45,87 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/136.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/136.dat index 81f70cfbb..047e8ee40 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/136.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/136.dat @@ -1 +1,52 @@ -{"Name":"Flareon","Number":136,"ExperienceType":"MediumFast","BaseExperience":184,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":133,"Devolution":133,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[18],"HiddenAbility":62,"EggMoves":[445,204,343,174,197,203,313,175,363,500,485,321,273,281],"Machines":[29,174,46,92,192,249,237,241,173,63,182,203,218,231,216,91,247,189,104,207,214,126,129,197,156,213,25,34,36,38,99,102,117,130,164,53,263,290,315,261,416,445,363,488,496,497,510,514,526,590,70,560],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":130,"Def":60,"SpAtk":95,"SpDef":110,"Speed":65},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It stores some of the air it inhales in its internal flame pouch, which heats it to over 3,000 degrees Fahrenheit.","Species":"Flame Pokémon","Height":0.9,"Weight":25,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":39},{"Level":5,"ID":28},{"Level":9,"ID":52},{"Level":13,"ID":98},{"Level":17,"ID":44},{"Level":20,"ID":424},{"Level":25,"ID":83},{"Level":29,"ID":184},{"Level":33,"ID":123},{"Level":37,"ID":436},{"Level":41,"ID":387},{"Level":45,"ID":394}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Flareon +Number|136 +ExperienceType|1 +BaseExperience|184 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|133 +IsGenderLess|0 +CanBreed|1 +Devolution|133 +IsMale|87.5 +Ability1|18 +Ability2|Nothing +HiddenAbility|62 +EggMoves|445,204,343,174,197,203,313,175,363,500,485,321,273,281 +Machines|29,174,46,92,192,249,237,241,173,63,182,203,218,231,216,91,247,189,104,207,214,126,129,197,156,213,25,34,36,38,99,102,117,130,164,53,263,290,315,261,416,445,363,488,496,497,510,514,526,590,70,560 +BaseHP|65 +BaseAttack|130 +BaseDefense|60 +BaseSpAttack|95 +BaseSpDefense|110 +BaseSpeed|65 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It stores some of the air it inhales in its internal flame pouch, which heats it to over 3,000 degrees Fahrenheit.\Flame Pokémon\25\0.9\0,148,0 +Scale|0.96 +Move|1,270 +Move|1,33 +Move|1,39 +Move|5,28 +Move|9,52 +Move|13,98 +Move|17,44 +Move|20,424 +Move|25,83 +Move|29,184 +Move|33,123 +Move|37,436 +Move|41,387 +Move|45,394 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/137.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/137.dat index 92ae8a7ed..548aa29b4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/137.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/137.dat @@ -1 +1,53 @@ -{"Name":"Porygon","Number":137,"ExperienceType":"MediumFast","BaseExperience":79,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":137,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[36,88],"HiddenAbility":148,"EggMoves":[],"Machines":[174,92,192,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,94,247,104,207,214,129,138,197,156,213,168,171,36,61,55,58,99,85,100,102,117,130,86,149,161,164,351,332,263,290,451,278,416,445,363,433,473,496,590,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":60,"Def":70,"SpAtk":85,"SpDef":75,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is a manmade Pokémon. Since it doesn't breathe, people are eager to try it in any environment.","Species":"Virtual Pokémon","Height":0.8,"Weight":36.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":85,"Moves":[{"Level":1,"ID":176},{"Level":2,"ID":33},{"Level":3,"ID":160},{"Level":4,"ID":159},{"Level":7,"ID":60},{"Level":12,"ID":97},{"Level":18,"ID":105},{"Level":23,"ID":1},{"Level":29,"ID":324},{"Level":34,"ID":278},{"Level":40,"ID":435},{"Level":45,"ID":199},{"Level":50,"ID":161},{"Level":56,"ID":277},{"Level":62,"ID":192}],"EvolutionConditions":[{"Condition":"172","ConditionType":"HoldItem","Evolution":233,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Porygon +Number|137 +ExperienceType|1 +BaseExperience|79 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|137 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|36 +Ability2|88 +HiddenAbility|148 +Machines|174,92,192,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,94,247,104,207,214,129,138,197,156,213,168,171,36,61,55,58,99,85,100,102,117,130,86,149,161,164,351,332,263,290,451,278,416,445,363,433,473,496,590,148 +BaseHP|65 +BaseAttack|60 +BaseDefense|70 +BaseSpAttack|85 +BaseSpDefense|75 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is a manmade Pokémon. Since it doesn't breathe, people are eager to try it in any environment.\Virtual Pokémon\36.5\0.8\0,148,0 +Scale|0.92 +Move|1,176 +Move|1,33 +Move|1,160 +Move|1,159 +Move|7,60 +Move|12,97 +Move|18,105 +Move|23,393 +Move|29,324 +Move|34,278 +Move|40,435 +Move|45,199 +Move|50,161 +Move|56,277 +Move|62,192 +TradeValue|85 +EvolutionCondition|233,holditem,172,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/138.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/138.dat index 45daa2e1e..ee2e95a15 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/138.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/138.dat @@ -1 +1,53 @@ -{"Name":"Omanyte","Number":138,"ExperienceType":"MediumFast","BaseExperience":71,"Type1":"Rock","Type2":"Water","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water3","BaseEggSteps":7905,"EggPokemon":138,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[33,75],"HiddenAbility":133,"EggMoves":[62,117,61,114,282,330,513,21,191,48,390,352,250,378,157],"Machines":[29,174,205,92,249,237,173,59,63,196,182,240,203,218,216,104,207,214,197,156,213,168,34,36,61,55,58,99,102,117,157,164,352,317,263,290,362,416,397,360,446,445,363,479,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":40,"Def":100,"SpAtk":90,"SpDef":55,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Revived from an ancient fossil, this Pokémon uses air stored in its shell to sink and rise in water.","Species":"Spiral Pokémon","Height":0.4,"Weight":7.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":70,"Moves":[{"Level":1,"ID":132},{"Level":2,"ID":110},{"Level":7,"ID":44},{"Level":10,"ID":55},{"Level":16,"ID":205},{"Level":19,"ID":43},{"Level":25,"ID":341},{"Level":28,"ID":362},{"Level":34,"ID":182},{"Level":37,"ID":246},{"Level":43,"ID":321},{"Level":46,"ID":350},{"Level":50,"ID":504},{"Level":55,"ID":56}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":139,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Omanyte +Number|138 +ExperienceType|1 +BaseExperience|71 +Type1|Rock +Type2|Water +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|7905 +EggPokemon|138 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|33 +Ability2|75 +HiddenAbility|133 +EggMoves|62,117,61,114,282,330,513,21,191,48,390,352,250,378,157 +Machines|29,174,205,92,249,237,173,59,63,196,182,240,203,218,216,104,207,214,197,156,213,168,34,36,61,55,58,99,102,117,157,164,352,317,263,290,362,416,397,360,446,445,363,479,496,503,590,57,250,127,291 +BaseHP|35 +BaseAttack|40 +BaseDefense|100 +BaseSpAttack|90 +BaseSpDefense|55 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Revived from an ancient fossil, this Pokémon uses air stored in its shell to sink and rise in water.\Spiral Pokémon\7.5\0.4\0,148,0 +Scale|0.7 +Move|1,132 +Move|1,110 +Move|7,44 +Move|10,55 +Move|16,205 +Move|19,43 +Move|25,341 +Move|28,362 +Move|34,182 +Move|37,246 +Move|43,321 +Move|46,350 +Move|50,504 +Move|55,56 +TradeValue|70 +EvolutionCondition|139,Level,40,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/139.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/139.dat index 3b404b81f..a69994217 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/139.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/139.dat @@ -1 +1,55 @@ -{"Name":"Omastar","Number":139,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Rock","Type2":"Water","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water3","BaseEggSteps":7905,"EggPokemon":138,"Devolution":138,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[33,75],"HiddenAbility":133,"EggMoves":[62,117,61,114,282,330,513,21,191,48,390,352,250,378,157],"Machines":[29,174,205,92,249,237,173,59,63,196,182,240,203,218,216,104,207,214,197,156,213,168,32,34,36,38,61,55,58,66,69,99,102,117,130,157,164,352,317,263,290,362,416,397,444,360,446,445,363,479,496,503,590,57,250,127,431,291],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":60,"Def":125,"SpAtk":115,"SpDef":70,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Apparently shell with its sharp fangs and sucked out the insides.","Species":"Spiral Pokémon","Height":1,"Weight":35,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":75,"Moves":[{"Level":1,"ID":56},{"Level":2,"ID":132},{"Level":3,"ID":110},{"Level":4,"ID":44},{"Level":7,"ID":44},{"Level":10,"ID":55},{"Level":16,"ID":205},{"Level":19,"ID":43},{"Level":25,"ID":341},{"Level":28,"ID":362},{"Level":34,"ID":182},{"Level":37,"ID":246},{"Level":40,"ID":131},{"Level":48,"ID":321},{"Level":56,"ID":350},{"Level":67,"ID":504},{"Level":75,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Omastar +Number|139 +ExperienceType|1 +BaseExperience|173 +Type1|Rock +Type2|Water +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|7905 +EggPokemon|138 +IsGenderLess|0 +CanBreed|1 +Devolution|138 +IsMale|87.5 +Ability1|33 +Ability2|75 +HiddenAbility|133 +EggMoves|62,117,61,114,282,330,513,21,191,48,390,352,250,378,157 +Machines|29,174,205,92,249,237,173,59,63,196,182,240,203,218,216,104,207,214,197,156,213,168,32,34,36,38,61,55,58,66,69,99,102,117,130,157,164,352,317,263,290,362,416,397,444,360,446,445,363,479,496,503,590,57,250,127,431,291 +BaseHP|70 +BaseAttack|60 +BaseDefense|125 +BaseSpAttack|115 +BaseSpDefense|70 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Apparently shell with its sharp fangs and sucked out the insides.\Spiral Pokémon\35\1\0,148,0 +Scale|1 +Move|1,56 +Move|1,132 +Move|1,110 +Move|1,44 +Move|7,44 +Move|10,55 +Move|16,205 +Move|19,43 +Move|25,341 +Move|28,362 +Move|34,182 +Move|37,246 +Move|40,131 +Move|48,321 +Move|56,350 +Move|67,504 +Move|75,56 +TradeValue|75 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/14.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/14.dat index d6607f122..4be6a0d71 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/14.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/14.dat @@ -1 +1,38 @@ -{"Name":"Kakuna","Number":14,"ExperienceType":"MediumFast","BaseExperience":72,"Type1":"Bug","Type2":"Poison","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":13,"Devolution":13,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61],"HiddenAbility":-1,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":25,"Def":50,"SpAtk":25,"SpDef":25,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Although it is a cocoon, it can move a little. It can extend its poison barb if it is attacked.","Species":"Cocoon Pokémon","Height":0.6,"Weight":10,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":5,"Moves":[{"Level":1,"ID":106},{"Level":7,"ID":106}],"EvolutionConditions":[{"Condition":"10","ConditionType":"Level","Evolution":15,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Kakuna +Number|14 +ExperienceType|1 +BaseExperience|72 +Type1|Bug +Type2|Poison +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|13 +IsGenderLess|0 +IsMale|50 +Ability1|61 +Ability2|Nothing +HiddenAbility|Nothing +Machines| +BaseHP|45 +BaseAttack|25 +BaseDefense|50 +BaseSpAttack|25 +BaseSpDefense|25 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Although it is a cocoon, it can move a little. It can extend its poison barb if it is attacked.\Cocoon Pokémon\10\0.6\0,148,0 +Scale|0.84 +Move|1,106 +Move|7,106 +EvolutionCondition|15,Level,10,Level +TradeValue|5 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/140.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/140.dat index 42718144a..15a481e4e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/140.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/140.dat @@ -1 +1,50 @@ -{"Name":"Kabuto","Number":140,"ExperienceType":"MediumFast","BaseExperience":71,"Type1":"Rock","Type2":"Water","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water3","BaseEggSteps":7905,"EggPokemon":140,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[33,4],"HiddenAbility":133,"EggMoves":[62,61,109,175,193,202,196,282,341,229,103,36,91],"Machines":[174,205,92,249,237,173,59,63,196,182,240,202,203,218,216,91,104,207,214,197,156,213,168,34,36,61,55,58,99,102,117,157,164,352,317,263,290,362,416,397,446,445,363,468,479,496,503,590,57,250,127],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":80,"Def":90,"SpAtk":55,"SpDef":45,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"On rare occasions, some have been found as fossils which they became while hiding on the ocean floor.","Species":"Shellfish Pokémon","Height":0.5,"Weight":11.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":70,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":106},{"Level":6,"ID":71},{"Level":11,"ID":43},{"Level":16,"ID":341},{"Level":26,"ID":203},{"Level":31,"ID":453},{"Level":36,"ID":72},{"Level":41,"ID":319},{"Level":46,"ID":246},{"Level":50,"ID":378}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":141,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Kabuto +Number|140 +ExperienceType|1 +BaseExperience|71 +Type1|Rock +Type2|Water +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|7905 +EggPokemon|140 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|33 +Ability2|4 +HiddenAbility|133 +EggMoves|62,61,109,175,193,202,196,282,341,229,103,36,91 +Machines|174,205,92,249,237,173,59,63,196,182,240,202,203,218,216,91,104,207,214,197,156,213,168,34,36,61,55,58,99,102,117,157,164,352,317,263,290,362,416,397,446,445,363,468,479,496,503,590,57,250,127 +BaseHP|30 +BaseAttack|80 +BaseDefense|90 +BaseSpAttack|55 +BaseSpDefense|45 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|On rare occasions, some have been found as fossils which they became while hiding on the ocean floor.\Shellfish Pokémon\11.5\0.5\0,148,0 +Scale|0.7 +Move|1,10 +Move|1,106 +Move|6,71 +Move|11,43 +Move|16,341 +Move|26,203 +Move|31,453 +Move|36,72 +Move|41,319 +Move|46,246 +Move|50,378 +TradeValue|70 +EvolutionCondition|141,Level,40,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/141.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/141.dat index 5f2ce473a..569bb7857 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/141.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/141.dat @@ -1 +1,56 @@ -{"Name":"Kabutops","Number":141,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Rock","Type2":"Water","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water3","BaseEggSteps":7905,"EggPokemon":140,"Devolution":140,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[33,4],"HiddenAbility":133,"EggMoves":[62,61,109,175,193,202,196,282,341,229,103,36,91],"Machines":[29,174,205,92,249,237,173,59,63,196,182,240,202,203,218,216,91,104,207,214,197,156,213,168,210,18,25,34,36,38,61,55,58,66,69,99,102,117,130,157,164,337,352,317,332,263,290,362,416,397,444,446,445,363,468,479,496,503,267,590,15,57,250,127,431,291],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":115,"Def":105,"SpAtk":65,"SpDef":70,"Speed":80},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"In the water, it tucks in its limbs to become more compact, then it wiggles its shell to swim fast.","Species":"Shellfish Pokémon","Height":1.3,"Weight":40.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":80,"Moves":[{"Level":1,"ID":400},{"Level":2,"ID":364},{"Level":3,"ID":10},{"Level":4,"ID":106},{"Level":5,"ID":71},{"Level":6,"ID":43},{"Level":7,"ID":71},{"Level":11,"ID":43},{"Level":16,"ID":341},{"Level":21,"ID":28},{"Level":26,"ID":203},{"Level":31,"ID":453},{"Level":36,"ID":72},{"Level":40,"ID":163},{"Level":45,"ID":319},{"Level":54,"ID":246},{"Level":63,"ID":378},{"Level":72,"ID":400}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Kabutops +Number|141 +ExperienceType|1 +BaseExperience|173 +Type1|Rock +Type2|Water +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|7905 +EggPokemon|140 +IsGenderLess|0 +CanBreed|1 +Devolution|140 +IsMale|87.5 +Ability1|33 +Ability2|4 +HiddenAbility|133 +EggMoves|62,61,109,175,193,202,196,282,341,229,103,36,91 +Machines|29,174,205,92,249,237,173,59,63,196,182,240,202,203,218,216,91,104,207,214,197,156,213,168,210,18,25,34,36,38,61,55,58,66,69,99,102,117,130,157,164,337,352,317,332,263,290,362,416,397,444,446,445,363,468,479,496,503,267,590,15,57,250,127,431,291,280 +BaseHP|60 +BaseAttack|115 +BaseDefense|105 +BaseSpAttack|65 +BaseSpDefense|70 +BaseSpeed|80 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|In the water, it tucks in its limbs to become more compact, then it wiggles its shell to swim fast.\Shellfish Pokémon\40.5\1.3\0,148,0 +Scale|1.12 +Move|1,400 +Move|1,364 +Move|1,10 +Move|1,106 +Move|1,71 +Move|1,43 +Move|6,71 +Move|11,43 +Move|16,341 +Move|21,28 +Move|26,203 +Move|31,453 +Move|36,72 +Move|40,163 +Move|45,319 +Move|54,246 +Move|63,378 +Move|72,400 +TradeValue|80 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/142.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/142.dat index fc27bb1d6..641da688c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/142.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/142.dat @@ -1 +1,56 @@ -{"Name":"Aerodactyl","Number":142,"ExperienceType":"Slow","BaseExperience":180,"Type1":"Rock","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":142,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[69,46],"HiddenAbility":127,"EggMoves":[372,174,225,193,228,355,211,366,18,469],"Machines":[29,174,46,92,249,237,241,173,63,182,203,218,231,225,89,216,104,207,214,201,126,129,197,156,213,168,211,13,18,36,38,99,82,102,117,143,157,164,337,269,53,317,332,259,263,290,355,406,371,416,397,432,444,446,445,363,468,479,496,507,510,523,590,19,70],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":105,"Def":65,"SpAtk":60,"SpDef":75,"Speed":130},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"A vicious Pokémon from the distant past, it appears to have flown by spreading its wings and gliding.","Species":"Fossil Pokémon","Height":1.8,"Weight":59,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":80,"Moves":[{"Level":1,"ID":442},{"Level":2,"ID":423},{"Level":3,"ID":424},{"Level":4,"ID":422},{"Level":5,"ID":17},{"Level":6,"ID":48},{"Level":7,"ID":44},{"Level":8,"ID":184},{"Level":9,"ID":46},{"Level":17,"ID":97},{"Level":25,"ID":246},{"Level":33,"ID":242},{"Level":41,"ID":36},{"Level":49,"ID":1},{"Level":57,"ID":442},{"Level":65,"ID":63},{"Level":73,"ID":157},{"Level":81,"ID":416}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Aerodactyl +Number|142 +ExperienceType|3 +BaseExperience|180 +Type1|Rock +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|142 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|69 +Ability2|46 +HiddenAbility|127 +EggMoves|372,174,225,193,228,355,211,366,18,469 +Machines|29,174,46,92,249,237,241,173,63,182,203,218,231,225,89,216,104,207,214,201,126,129,197,156,213,168,211,13,18,36,38,99,82,102,117,143,157,164,337,269,53,317,332,259,263,290,355,406,371,416,397,432,444,446,445,363,468,479,496,507,510,523,590,19,70 +BaseHP|80 +BaseAttack|105 +BaseDefense|65 +BaseSpAttack|60 +BaseSpDefense|75 +BaseSpeed|130 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|1 +CanSwim|0 +Pokedex|A vicious Pokémon from the distant past, it appears to have flown by spreading its wings and gliding.\Fossil Pokémon\59\1.8\0,148,0 +Scale|1.32 +Move|1,442 +Move|1,423 +Move|1,424 +Move|1,422 +Move|1,17 +Move|1,48 +Move|1,44 +Move|1,184 +Move|9,46 +Move|17,97 +Move|25,246 +Move|33,242 +Move|41,36 +Move|49,507 +Move|57,442 +Move|65,63 +Move|73,157 +Move|81,416 +TradeValue|80 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/142_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/142_mega.dat new file mode 100644 index 000000000..4c30d774c --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/142_mega.dat @@ -0,0 +1,56 @@ +Name|Mega Aerodactyl +Number|142 +ExperienceType|3 +BaseExperience|180 +Type1|Rock +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|142 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|181 +Ability2|Nothing +HiddenAbility|181 +EggMoves|372,174,225,193,228,355,211,366,18,469 +Machines|29,174,46,92,249,237,241,173,63,182,203,218,231,225,89,216,104,207,214,201,126,129,197,156,213,168,211,13,18,36,38,99,82,102,117,143,157,164,337,269,53,317,332,259,263,290,355,406,371,416,397,432,444,446,445,363,468,479,496,507,510,523,590,19,70 +BaseHP|80 +BaseAttack|135 +BaseDefense|85 +BaseSpAttack|70 +BaseSpDefense|95 +BaseSpeed|150 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|1 +CanSwim|0 +Pokedex|A vicious Pokémon from the distant past, it appears to have flown by spreading its wings and gliding.\Fossil Pokémon\79\2.1\0,148,0 +Scale|1.32 +Move|1,442 +Move|1,423 +Move|1,424 +Move|1,422 +Move|1,17 +Move|1,48 +Move|1,44 +Move|1,184 +Move|9,46 +Move|17,97 +Move|25,246 +Move|33,242 +Move|41,36 +Move|49,507 +Move|57,442 +Move|65,63 +Move|73,157 +Move|81,416 +TradeValue|80 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/143.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/143.dat index 03c83c7b3..3bd2b85c0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/143.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/143.dat @@ -1 +1,55 @@ -{"Name":"Snorlax","Number":143,"ExperienceType":"Slow","BaseExperience":189,"Type1":"Normal","Type2":"Blank","CatchRate":25,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":446,"Devolution":446,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[17,47],"HiddenAbility":82,"EggMoves":[495,562,204,68,174,38,90,122,363,228,120,18,428,164],"Machines":[223,29,174,205,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,87,89,216,94,247,189,104,8,207,214,201,126,111,9,197,156,213,7,5,25,34,36,38,61,55,58,6,66,68,69,99,85,90,102,117,118,120,130,149,157,164,264,352,280,351,53,317,263,290,411,374,278,416,445,363,479,496,510,514,523,526,528,612,590,57,70,250,431],"TutorMoves":[],"BaseStats":{"HP":160,"Atk":110,"Def":65,"SpAtk":65,"SpDef":110,"Speed":30},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"What sounds like its cry may actually be its snores or the rumblings of its hungry belly.","Species":"Sleeping Pokémon","Height":2.1,"Weight":460,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.44,"Y":1.44,"Z":1.44},"TradeValue":75,"Moves":[{"Level":1,"ID":33},{"Level":4,"ID":111},{"Level":9,"ID":133},{"Level":12,"ID":122},{"Level":17,"ID":498},{"Level":20,"ID":281},{"Level":25,"ID":34},{"Level":28,"ID":156},{"Level":29,"ID":173},{"Level":33,"ID":214},{"Level":36,"ID":205},{"Level":41,"ID":335},{"Level":44,"ID":187},{"Level":49,"ID":242},{"Level":50,"ID":484},{"Level":57,"ID":416}],"EvolutionConditions":[],"Items":[{"Id":146,"Chance":100}]} \ No newline at end of file +Name|Snorlax +Number|143 +ExperienceType|3 +BaseExperience|189 +Type1|Normal +Type2| +CatchRate|25 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|446 +IsGenderLess|0 +CanBreed|1 +Devolution|446 +IsMale|87.5 +Ability1|17 +Ability2|47 +HiddenAbility|82 +EggMoves|495,562,204,68,174,38,90,122,363,228,120,18,428,164 +Machines|223,29,174,205,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,87,89,216,94,247,189,104,8,207,214,201,126,111,9,197,156,213,7,5,25,34,36,38,61,55,58,6,66,68,69,99,85,90,102,117,118,120,130,149,157,164,264,352,280,351,53,317,263,290,411,374,278,416,445,363,479,496,510,514,523,526,528,612,590,57,70,250,431 +BaseHP|160 +BaseAttack|110 +BaseDefense|65 +BaseSpAttack|65 +BaseSpDefense|110 +BaseSpeed|30 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|What sounds like its cry may actually be its snores or the rumblings of its hungry belly.\Sleeping Pokémon\460\2.1\0,148,0 +Scale|1.44 +Move|1,33 +Move|4,111 +Move|9,133 +Move|12,122 +Move|17,498 +Move|20,281 +Move|25,34 +Move|28,156 +Move|28,173 +Move|33,214 +Move|36,205 +Move|41,335 +Move|44,187 +Move|49,242 +Move|50,484 +Move|57,416 +TradeValue|75 +Item|100,146 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/144.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/144.dat index fa6e4f6ea..8093e92cd 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/144.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/144.dat @@ -1 +1,57 @@ -{"Name":"Articuno","Number":144,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Ice","Type2":"Flying","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":144,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":81,"EggMoves":[],"Machines":[174,46,92,249,237,241,173,59,63,196,182,240,203,218,216,189,104,207,214,201,129,197,156,213,211,13,18,36,38,61,55,58,99,102,115,117,143,164,352,258,332,263,290,355,416,432,419,445,363,365,369,496,507,524,590,19],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":85,"Def":100,"SpAtk":95,"SpDef":125,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The magnificent wings of this legendary bird Pokémon are said to be made of ice.","Species":"Freeze Pokémon","Height":1.7,"Weight":55.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":85,"Moves":[{"Level":1,"ID":355},{"Level":2,"ID":542},{"Level":3,"ID":1},{"Level":4,"ID":366},{"Level":5,"ID":329},{"Level":6,"ID":16},{"Level":7,"ID":181},{"Level":8,"ID":54},{"Level":15,"ID":420},{"Level":22,"ID":170},{"Level":29,"ID":246},{"Level":36,"ID":97},{"Level":43,"ID":58},{"Level":50,"ID":115},{"Level":57,"ID":258},{"Level":64,"ID":366},{"Level":71,"ID":59},{"Level":78,"ID":329},{"Level":85,"ID":355},{"Level":92,"ID":542}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Articuno +Number|144 +ExperienceType|3 +BaseExperience|261 +Type1|Ice +Type2|Flying +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|144 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|81 +Machines|174,46,92,249,237,241,173,59,63,196,182,240,203,218,216,189,104,207,214,201,129,197,156,213,211,13,18,36,38,61,55,58,99,102,115,117,143,164,352,258,332,263,290,355,416,432,419,445,363,365,369,496,507,524,590,19 +BaseHP|90 +BaseAttack|85 +BaseDefense|100 +BaseSpAttack|95 +BaseSpDefense|125 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The magnificent wings of this legendary bird Pokémon are said to be made of ice.\Freeze Pokémon\55.4\1.7\0,148,0 +Scale|1.28 +Move|1,355 +Move|1,542 +Move|1,573 +Move|1,366 +Move|1,329 +Move|1,16 +Move|1,181 +Move|8,54 +Move|15,420 +Move|22,170 +Move|29,246 +Move|36,97 +Move|43,58 +Move|50,115 +Move|57,258 +Move|64,366 +Move|71,59 +Move|78,329 +Move|85,355 +Move|92,542 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/145.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/145.dat index 06789b7f2..9970fd9c9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/145.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/145.dat @@ -1 +1,55 @@ -{"Name":"Zapdos","Number":145,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Electric","Type2":"Flying","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":145,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":9,"EggMoves":[],"Machines":[174,46,92,192,249,237,241,173,63,182,240,203,218,87,216,189,104,207,214,201,129,197,156,213,211,13,18,36,38,99,85,102,117,143,86,164,113,351,332,263,290,355,451,416,432,445,363,365,369,496,507,521,528,590,19,148],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":90,"Def":85,"SpAtk":125,"SpDef":90,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"This legendary bird Pokémon causes savage thunderstorms by flapping its glittering wings.","Species":"Electric Pokémon","Height":1.6,"Weight":52.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":85,"Moves":[{"Level":1,"ID":355},{"Level":2,"ID":192},{"Level":3,"ID":65},{"Level":4,"ID":64},{"Level":5,"ID":84},{"Level":8,"ID":86},{"Level":15,"ID":197},{"Level":22,"ID":365},{"Level":29,"ID":246},{"Level":36,"ID":268},{"Level":43,"ID":97},{"Level":50,"ID":435},{"Level":57,"ID":240},{"Level":64,"ID":113},{"Level":71,"ID":65},{"Level":78,"ID":87},{"Level":85,"ID":355},{"Level":92,"ID":192}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Zapdos +Number|145 +ExperienceType|3 +BaseExperience|261 +Type1|Electric +Type2|Flying +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|145 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|9 +Machines|174,46,92,192,249,237,241,173,63,182,240,203,218,87,216,189,104,207,214,201,129,197,156,213,211,13,18,36,38,99,85,102,117,143,86,164,113,351,332,263,290,355,451,416,432,445,363,365,369,496,507,521,528,590,19,148 +BaseHP|90 +BaseAttack|90 +BaseDefense|85 +BaseSpAttack|125 +BaseSpDefense|90 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|This legendary bird Pokémon causes savage thunderstorms by flapping its glittering wings.\Electric Pokémon\52.6\1.6\0,148,0 +Scale|1.24 +Move|1,355 +Move|1,192 +Move|1,65 +Move|1,64 +Move|1,84 +Move|8,86 +Move|15,197 +Move|22,365 +Move|29,246 +Move|36,268 +Move|43,97 +Move|50,435 +Move|57,240 +Move|64,113 +Move|71,65 +Move|78,87 +Move|85,355 +Move|92,192 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/146.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/146.dat index 0595493ee..f498f3057 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/146.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/146.dat @@ -1 +1,55 @@ -{"Name":"Moltres","Number":146,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Fire","Type2":"Flying","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":146,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":49,"EggMoves":[],"Machines":[174,46,92,249,237,241,173,63,182,203,218,76,216,189,104,207,214,201,126,129,197,156,213,211,13,18,36,38,99,85,102,117,143,164,219,53,332,263,290,315,355,261,416,432,445,363,365,369,488,496,507,510,590,19],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":100,"Def":90,"SpAtk":125,"SpDef":85,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"This legendary Pokémon scatters embers with every flap of its wings. It is a thrilling sight to behold.","Species":"Flame Pokémon","Height":2,"Weight":60,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":85,"Moves":[{"Level":1,"ID":355},{"Level":2,"ID":542},{"Level":3,"ID":143},{"Level":4,"ID":257},{"Level":5,"ID":17},{"Level":6,"ID":52},{"Level":8,"ID":83},{"Level":15,"ID":97},{"Level":22,"ID":203},{"Level":29,"ID":246},{"Level":36,"ID":53},{"Level":43,"ID":219},{"Level":50,"ID":403},{"Level":57,"ID":241},{"Level":64,"ID":257},{"Level":71,"ID":76},{"Level":78,"ID":143},{"Level":85,"ID":355},{"Level":92,"ID":542}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Moltres +Number|146 +ExperienceType|3 +BaseExperience|261 +Type1|Fire +Type2|Flying +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|146 +IsGenderLess|1 +CanBreed|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|49 +Machines|174,46,92,249,237,241,173,63,182,203,218,76,216,189,104,207,214,201,126,129,197,156,213,211,13,18,36,38,99,85,102,117,143,164,219,53,332,263,290,315,355,261,416,432,445,363,365,369,488,496,507,510,590,19 +BaseHP|90 +BaseAttack|100 +BaseDefense|90 +BaseSpAttack|125 +BaseSpDefense|85 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|This legendary Pokémon scatters embers with every flap of its wings. It is a thrilling sight to behold.\Flame Pokémon\60\2\0,148,0 +Scale|1.4 +Move|1,355 +Move|1,542 +Move|1,143 +Move|1,257 +Move|1,17 +Move|1,52 +Move|8,83 +Move|15,97 +Move|22,203 +Move|29,246 +Move|36,53 +Move|43,219 +Move|50,403 +Move|57,241 +Move|64,257 +Move|71,76 +Move|78,143 +Move|85,355 +Move|92,542 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/147.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/147.dat index 8bfd723be..947e5a449 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/147.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/147.dat @@ -1 +1,55 @@ -{"Name":"Dratini","Number":147,"ExperienceType":"Slow","BaseExperience":60,"Type1":"Dragon","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Water1","EggGroup2":"Dragon","BaseEggSteps":10455,"EggPokemon":147,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61],"HiddenAbility":63,"EggMoves":[453,225,349,406,407,245,114,231,54,48,352,113],"Machines":[29,174,92,192,237,241,173,59,63,196,182,240,203,218,231,225,87,216,104,207,214,126,129,197,156,213,34,36,61,55,58,99,82,102,117,130,86,164,352,258,113,219,351,53,263,290,406,416,445,363,496,510,525,590,57,250,127],"TutorMoves":[434],"BaseStats":{"HP":41,"Atk":64,"Def":45,"SpAtk":50,"SpDef":50,"Speed":50},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is born large to start with. It repeatedly sheds its skin as it steadily grows longer.","Species":"Dragon Pokémon","Height":1.8,"Weight":3.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":40,"Moves":[{"Level":1,"ID":35},{"Level":2,"ID":43},{"Level":5,"ID":86},{"Level":11,"ID":239},{"Level":15,"ID":82},{"Level":21,"ID":21},{"Level":25,"ID":97},{"Level":31,"ID":525},{"Level":35,"ID":401},{"Level":41,"ID":407},{"Level":45,"ID":219},{"Level":51,"ID":349},{"Level":55,"ID":200},{"Level":61,"ID":63}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":148,"Trigger":"LevelUp"}],"Items":[{"Id":151,"Chance":5}]} \ No newline at end of file +Name|Dratini +Number|147 +ExperienceType|3 +BaseExperience|60 +Type1|Dragon +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Water1 +EggGroup2|Dragon +BaseEggSteps|10455 +EggPokemon|147 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|61 +Ability2|Nothing +HiddenAbility|63 +EggMoves|453,225,349,406,407,245,114,231,54,48,352,113 +Machines|29,174,92,192,237,241,173,59,63,196,182,240,203,218,231,225,87,216,104,207,214,126,129,197,156,213,34,36,61,55,58,99,82,102,117,130,86,164,352,258,113,219,351,53,263,290,406,416,445,363,496,510,525,590,57,250,127 +TutorMoves|434 +BaseHP|41 +BaseAttack|64 +BaseDefense|45 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is born large to start with. It repeatedly sheds its skin as it steadily grows longer.\Dragon Pokémon\3.3\1.8\0,148,0 +Scale|1.32 +Move|1,35 +Move|1,43 +Move|5,86 +Move|11,239 +Move|15,82 +Move|21,21 +Move|25,97 +Move|31,525 +Move|35,401 +Move|41,407 +Move|45,219 +Move|51,349 +Move|55,200 +Move|61,63 +TradeValue|40 +Item|5,151 +EvolutionCondition|148,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/148.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/148.dat index a50a86d76..61c8dfa73 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/148.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/148.dat @@ -1 +1,57 @@ -{"Name":"Dragonair","Number":148,"ExperienceType":"Slow","BaseExperience":147,"Type1":"Dragon","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Water1","EggGroup2":"Dragon","BaseEggSteps":10455,"EggPokemon":147,"Devolution":147,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61],"HiddenAbility":63,"EggMoves":[453,225,349,406,407,245,114,231,54,48,352,113],"Machines":[29,174,92,192,237,241,173,59,63,196,182,240,203,218,231,225,87,216,104,207,214,126,129,197,156,213,32,34,36,38,61,55,58,99,82,85,102,117,130,86,164,352,258,113,219,351,53,263,290,406,416,445,363,496,510,525,590,57,250,127,560],"TutorMoves":[434],"BaseStats":{"HP":61,"Atk":84,"Def":65,"SpAtk":70,"SpDef":70,"Speed":70},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They say that if it emits an aura from its whole body, the weather will begin to change instantly.","Species":"Dragon Pokémon","Height":4,"Weight":16.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":60,"Moves":[{"Level":1,"ID":35},{"Level":2,"ID":43},{"Level":3,"ID":86},{"Level":4,"ID":239},{"Level":5,"ID":86},{"Level":11,"ID":239},{"Level":15,"ID":82},{"Level":21,"ID":21},{"Level":25,"ID":97},{"Level":33,"ID":525},{"Level":39,"ID":401},{"Level":47,"ID":407},{"Level":53,"ID":219},{"Level":61,"ID":349},{"Level":67,"ID":200},{"Level":75,"ID":63}],"EvolutionConditions":[{"Condition":"55","ConditionType":"Level","Evolution":149,"Trigger":"LevelUp"}],"Items":[{"Id":151,"Chance":5}]} \ No newline at end of file +Name|Dragonair +Number|148 +ExperienceType|3 +BaseExperience|147 +Type1|Dragon +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Water1 +EggGroup2|Dragon +BaseEggSteps|10455 +EggPokemon|147 +IsGenderLess|0 +CanBreed|1 +Devolution|147 +IsMale|50 +Ability1|61 +Ability2|Nothing +HiddenAbility|63 +EggMoves|453,225,349,406,407,245,114,231,54,48,352,113 +Machines|29,174,92,192,237,241,173,59,63,196,182,240,203,218,231,225,87,216,104,207,214,126,129,197,156,213,32,34,36,38,61,55,58,99,82,85,102,117,130,86,164,352,258,113,219,351,53,263,290,406,416,445,363,496,510,525,590,57,250,127,560 +TutorMoves|434 +BaseHP|61 +BaseAttack|84 +BaseDefense|65 +BaseSpAttack|70 +BaseSpDefense|70 +BaseSpeed|70 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They say that if it emits an aura from its whole body, the weather will begin to change instantly.\Dragon Pokémon\16.5\4\0,148,0 +Scale|2 +Move|1,35 +Move|1,43 +Move|1,86 +Move|1,239 +Move|5,86 +Move|11,239 +Move|15,82 +Move|21,21 +Move|25,97 +Move|33,525 +Move|39,401 +Move|47,407 +Move|53,219 +Move|61,349 +Move|67,200 +Move|75,63 +TradeValue|60 +Item|5,151 +EvolutionCondition|149,Level,55,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/149.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/149.dat index ded1c0aba..634ad7823 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/149.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/149.dat @@ -1 +1,62 @@ -{"Name":"Dragonite","Number":149,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Dragon","Type2":"Flying","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Water1","EggGroup2":"Dragon","BaseEggSteps":10455,"EggPokemon":147,"Devolution":148,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[39],"HiddenAbility":136,"EggMoves":[453,225,349,406,407,245,114,231,54,48,352,113],"Machines":[223,29,174,46,92,192,249,237,241,173,59,63,196,182,240,203,218,231,225,87,89,216,189,104,8,207,214,201,126,129,9,197,156,213,211,7,210,13,18,32,34,36,38,61,55,58,99,82,102,117,130,86,157,164,264,337,352,258,113,219,280,351,53,317,332,263,290,355,411,374,406,416,432,444,445,363,468,496,507,510,523,525,612,590,15,19,57,70,250,127,560,291],"TutorMoves":[434],"BaseStats":{"HP":91,"Atk":134,"Def":95,"SpAtk":100,"SpDef":100,"Speed":80},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is said that this Pokémon constantly flies over the immense seas and rescues drowning people.","Species":"Dragon Pokémon","Height":2.2,"Weight":210,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.48,"Y":1.48,"Z":1.48},"TradeValue":75,"Moves":[{"Level":1,"ID":542},{"Level":2,"ID":7},{"Level":3,"ID":9},{"Level":4,"ID":355},{"Level":5,"ID":35},{"Level":6,"ID":43},{"Level":7,"ID":86},{"Level":8,"ID":239},{"Level":9,"ID":86},{"Level":11,"ID":239},{"Level":15,"ID":82},{"Level":21,"ID":21},{"Level":25,"ID":97},{"Level":33,"ID":525},{"Level":39,"ID":401},{"Level":47,"ID":407},{"Level":53,"ID":219},{"Level":55,"ID":17},{"Level":61,"ID":349},{"Level":67,"ID":200},{"Level":75,"ID":63},{"Level":81,"ID":542}],"EvolutionConditions":[],"Items":[{"Id":151,"Chance":5}]} \ No newline at end of file +Name|Dragonite +Number|149 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|Flying +CatchRate|45 +BaseFriendship|35 +EggGroup1|Water1 +EggGroup2|Dragon +BaseEggSteps|10455 +EggPokemon|147 +IsGenderLess|0 +CanBreed|1 +Devolution|148 +IsMale|50 +Ability1|39 +Ability2|Nothing +HiddenAbility|136 +EggMoves|453,225,349,406,407,245,114,231,54,48,352,113 +Machines|223,29,174,46,92,192,249,237,241,173,59,63,196,182,240,203,218,231,225,87,89,216,189,104,8,207,214,201,126,129,9,197,156,213,211,7,210,13,18,32,34,36,38,61,55,58,99,82,102,117,130,86,157,164,264,337,352,258,113,219,280,351,53,317,332,263,290,355,411,374,406,416,432,444,445,363,468,496,507,510,523,525,612,590,15,19,57,70,250,127,560,291 +TutorMoves|434 +BaseHP|91 +BaseAttack|134 +BaseDefense|95 +BaseSpAttack|100 +BaseSpDefense|100 +BaseSpeed|80 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is said that this Pokémon constantly flies over the immense seas and rescues drowning people.\Dragon Pokémon\210\2.2\0,148,0 +Scale|1.48 +Move|1,542 +Move|1,7 +Move|1,9 +Move|1,355 +Move|1,35 +Move|1,43 +Move|1,86 +Move|1,239 +Move|5,86 +Move|11,239 +Move|15,82 +Move|21,21 +Move|25,97 +Move|33,525 +Move|39,401 +Move|47,407 +Move|53,219 +Move|55,17 +Move|61,349 +Move|67,200 +Move|75,63 +Move|81,542 +TradeValue|75 +Item|5,151 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/15.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/15.dat index 92a5d8197..962ccc196 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/15.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/15.dat @@ -1 +1,48 @@ -{"Name":"Beedrill","Number":15,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Bug","Type2":"Poison","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":13,"Devolution":14,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68],"HiddenAbility":97,"EggMoves":[],"Machines":[174,92,249,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,129,197,156,213,168,210,13,14,18,36,99,72,102,117,130,164,280,332,263,290,355,206,318,371,416,432,445,404,363,398,369,474,496,512,522,611,590,15,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":90,"Def":40,"SpAtk":45,"SpDef":80,"Speed":75},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"It can take down any opponent with its powerful poison stingers. It sometimes attacks in swarms.","Species":"Poison Bee Pokémon","Height":1,"Weight":29.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":10,"Moves":[{"Level":1,"ID":31},{"Level":10,"ID":31},{"Level":13,"ID":116},{"Level":16,"ID":41},{"Level":19,"ID":99},{"Level":22,"ID":228},{"Level":25,"ID":390},{"Level":28,"ID":42},{"Level":31,"ID":97},{"Level":34,"ID":372},{"Level":37,"ID":398},{"Level":40,"ID":283},{"Level":45,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Beedrill +Number|15 +ExperienceType|1 +BaseExperience|173 +Type1|Bug +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|13 +IsGenderLess|0 +IsMale|50 +Ability1|68 +Ability2|Nothing +HiddenAbility|97 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,129,197,156,213,168,210,13,14,18,36,99,72,102,117,130,164,280,332,263,290,355,206,318,371,416,432,445,404,363,398,369,474,496,512,522,611,590,15,148 +BaseHP|65 +BaseAttack|90 +BaseDefense|40 +BaseSpAttack|45 +BaseSpDefense|80 +BaseSpeed|75 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|It can take down any opponent with its powerful poison stingers. It sometimes attacks in swarms.\Poison Bee Pokémon\29.5\1\0,148,0 +Scale|1 +Move|1,31 +Move|10,31 +Move|13,116 +Move|16,41 +Move|19,99 +Move|22,228 +Move|25,390 +Move|28,42 +Move|31,97 +Move|34,372 +Move|37,398 +Move|40,283 +Move|45,565 +TradeValue|10 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/150.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/150.dat index fb96a4600..7126956f0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/150.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/150.dat @@ -1 +1,55 @@ -{"Name":"Mewtwo","Number":150,"ExperienceType":"Slow","BaseExperience":306,"Type1":"Psychic","Type2":"Blank","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":150,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":127,"EggMoves":[],"Machines":[223,29,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,94,247,189,104,8,207,214,126,9,138,197,156,213,7,171,5,25,34,36,38,61,55,58,6,66,68,69,99,85,100,102,115,117,118,120,130,86,149,157,161,164,264,352,347,258,339,269,113,219,280,351,53,317,332,259,263,290,285,289,411,412,374,451,409,261,373,278,416,444,419,445,363,398,447,433,473,477,490,496,510,523,612,590,15,70,148,431],"TutorMoves":[],"BaseStats":{"HP":106,"Atk":110,"Def":90,"SpAtk":154,"SpDef":90,"Speed":130},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Because its battle abilities were raised to the ultimate level, it thinks only of defeating its foes.","Species":"Genetic Pokémon","Height":2,"Weight":122,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":100,"Moves":[{"Level":1,"ID":93},{"Level":2,"ID":1},{"Level":3,"ID":219},{"Level":8,"ID":129},{"Level":15,"ID":248},{"Level":22,"ID":244},{"Level":29,"ID":357},{"Level":36,"ID":427},{"Level":43,"ID":384},{"Level":44,"ID":385},{"Level":50,"ID":105},{"Level":57,"ID":94},{"Level":64,"ID":112},{"Level":70,"ID":396},{"Level":79,"ID":133},{"Level":86,"ID":54},{"Level":93,"ID":1},{"Level":100,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Mewtwo +Number|150 +ExperienceType|3 +BaseExperience|306 +Type1|Psychic +Type2| +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|150 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|127 +Machines|223,29,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,94,247,189,104,8,207,214,126,9,138,197,156,213,7,171,5,25,34,36,38,61,55,58,6,66,68,69,99,85,100,102,115,117,118,120,130,86,149,157,161,164,264,352,347,258,339,269,113,219,280,351,53,317,332,259,263,290,285,289,411,412,374,451,409,261,373,278,416,444,419,445,363,398,447,433,473,477,490,496,510,523,612,590,15,70,148,431 +BaseHP|106 +BaseAttack|110 +BaseDefense|90 +BaseSpAttack|154 +BaseSpDefense|90 +BaseSpeed|130 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Because its battle abilities were raised to the ultimate level, it thinks only of defeating its foes.\Genetic Pokémon\122\2\0,148,0 +Scale|1.4 +Move|1,93 +Move|1,50 +Move|1,219 +Move|8,129 +Move|15,248 +Move|22,244 +Move|29,357 +Move|36,427 +Move|43,384 +Move|43,385 +Move|50,105 +Move|57,94 +Move|64,112 +Move|70,396 +Move|79,133 +Move|86,54 +Move|93,382 +Move|100,540 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/150_mega_x.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/150_mega_x.dat new file mode 100644 index 000000000..c5a9facd9 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/150_mega_x.dat @@ -0,0 +1,55 @@ +Name|Mega Mewtwo X +Number|150 +ExperienceType|3 +BaseExperience|306 +Type1|Psychic +Type2|Fighting +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|150 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|80 +Ability2|Nothing +HiddenAbility|80 +Machines|223,29,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,94,247,189,104,8,207,214,126,9,138,197,156,213,7,171,5,25,34,36,38,61,55,58,6,66,68,69,99,85,100,102,115,117,118,120,130,86,149,157,161,164,264,352,347,258,339,269,113,219,280,351,53,317,332,259,263,290,285,289,411,412,374,451,409,261,373,278,416,444,419,445,363,398,447,433,473,477,490,496,510,523,612,590,15,70,148,431 +BaseHP|106 +BaseAttack|190 +BaseDefense|100 +BaseSpAttack|154 +BaseSpDefense|100 +BaseSpeed|130 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Because its battle abilities were raised to the ultimate level, it thinks only of defeating its foes.\Genetic Pokémon\127\2.3\0,148,0 +Scale|1.4 +Move|1,93 +Move|1,50 +Move|1,219 +Move|8,129 +Move|15,248 +Move|22,244 +Move|29,357 +Move|36,427 +Move|43,384 +Move|43,385 +Move|50,105 +Move|57,94 +Move|64,112 +Move|70,396 +Move|79,133 +Move|86,54 +Move|93,382 +Move|100,540 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/150_mega_y.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/150_mega_y.dat new file mode 100644 index 000000000..f860bd06f --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/150_mega_y.dat @@ -0,0 +1,55 @@ +Name|Mega Mewtwo Y +Number|150 +ExperienceType|3 +BaseExperience|306 +Type1|Psychic +Type2| +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|150 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|15 +Ability2|Nothing +HiddenAbility|15 +Machines|223,29,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,94,247,189,104,8,207,214,126,9,138,197,156,213,7,171,5,25,34,36,38,61,55,58,6,66,68,69,99,85,100,102,115,117,118,120,130,86,149,157,161,164,264,352,347,258,339,269,113,219,280,351,53,317,332,259,263,290,285,289,411,412,374,451,409,261,373,278,416,444,419,445,363,398,447,433,473,477,490,496,510,523,612,590,15,70,148,431 +BaseHP|106 +BaseAttack|150 +BaseDefense|70 +BaseSpAttack|194 +BaseSpDefense|120 +BaseSpeed|140 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Because its battle abilities were raised to the ultimate level, it thinks only of defeating its foes.\Genetic Pokémon\33\1.5\0,148,0 +Scale|1.4 +Move|1,93 +Move|1,50 +Move|1,219 +Move|8,129 +Move|15,248 +Move|22,244 +Move|29,357 +Move|36,427 +Move|43,384 +Move|43,385 +Move|50,105 +Move|57,94 +Move|64,112 +Move|70,396 +Move|79,133 +Move|86,54 +Move|93,382 +Move|100,540 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/151.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/151.dat index a811b1f2f..c69e82e47 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/151.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/151.dat @@ -1 +1,51 @@ -{"Name":"Mew","Number":151,"ExperienceType":"MediumSlow","BaseExperience":270,"Type1":"Psychic","Type2":"Blank","CatchRate":45,"BaseFriendship":100,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":151,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[28],"HiddenAbility":-1,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":100,"Def":100,"SpAtk":100,"SpDef":100,"Speed":100},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"Apparently those people who are pure of heart and have a strong desire to see it.","Species":"New Species Pokémon","Height":0.4,"Weight":4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":120,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":1},{"Level":3,"ID":144},{"Level":10,"ID":5},{"Level":20,"ID":118},{"Level":30,"ID":94},{"Level":40,"ID":112},{"Level":50,"ID":246},{"Level":60,"ID":133},{"Level":70,"ID":1},{"Level":80,"ID":226},{"Level":90,"ID":417},{"Level":100,"ID":396}],"EvolutionConditions":[],"Items":[{"Id":2008,"Chance":100}]} \ No newline at end of file +Name|Mew +Number|151 +ExperienceType|2 +BaseExperience|270 +Type1|Psychic +Type2| +CatchRate|45 +BaseFriendship|100 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|151 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|28 +Ability2|Nothing +HiddenAbility|Nothing +Machines|-1 +BaseHP|100 +BaseAttack|100 +BaseDefense|100 +BaseSpAttack|100 +BaseSpDefense|100 +BaseSpeed|100 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|Apparently those people who are pure of heart and have a strong desire to see it.\New Species Pokémon\4\0.4\0,148,0 +Scale|0.7 +Move|1,1 +Move|1,513 +Move|1,144 +Move|10,5 +Move|20,118 +Move|30,94 +Move|40,112 +Move|50,246 +Move|60,133 +Move|70,382 +Move|80,226 +Move|90,417 +Move|100,396 +TradeValue|120 +Item|100,2008 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/152.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/152.dat index aed70a115..92d389e81 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/152.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/152.dat @@ -1 +1,54 @@ -{"Name":"Chikorita","Number":152,"ExperienceType":"MediumSlow","BaseExperience":64,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":152,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":102,"EggMoves":[246,312,34,68,175,320,580,505,275,437,73,267,287,22,378,14],"Machines":[29,174,92,237,241,230,173,63,182,202,203,218,76,231,216,189,104,8,207,214,197,156,213,34,36,68,99,72,102,117,130,164,331,263,290,412,416,445,363,447,496,267,590,15,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":49,"Def":65,"SpAtk":49,"SpDef":65,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A sweet aroma gently wafts from the leaf on its head. It is docile and loves to soak up sunrays.","Species":"Leaf Pokémon","Height":0.9,"Weight":6.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":6,"ID":75},{"Level":9,"ID":77},{"Level":12,"ID":235},{"Level":17,"ID":115},{"Level":20,"ID":345},{"Level":23,"ID":363},{"Level":28,"ID":230},{"Level":31,"ID":113},{"Level":34,"ID":34},{"Level":39,"ID":219},{"Level":42,"ID":312},{"Level":45,"ID":76}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":153,"Trigger":"LevelUp"}],"Items":[{"Id":2006,"Chance":100}]} \ No newline at end of file +Name|Chikorita +Number|152 +ExperienceType|2 +BaseExperience|64 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|152 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|102 +EggMoves|246,312,34,68,175,320,580,505,275,437,73,267,287,22,378,14 +Machines|29,174,92,237,241,230,173,63,182,202,203,218,76,231,216,189,104,8,207,214,197,156,213,34,36,68,99,72,102,117,130,164,331,263,290,412,416,445,363,447,496,267,590,15,148 +BaseHP|45 +BaseAttack|49 +BaseDefense|65 +BaseSpAttack|49 +BaseSpDefense|65 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A sweet aroma gently wafts from the leaf on its head. It is docile and loves to soak up sunrays.\Leaf Pokémon\6.4\0.9\0,148,0 +Scale|0.96 +Move|1,33 +Move|1,45 +Move|6,75 +Move|9,77 +Move|12,235 +Move|17,115 +Move|20,345 +Move|23,363 +Move|28,230 +Move|31,113 +Move|34,34 +Move|39,219 +Move|42,312 +Move|45,76 +TradeValue|50 +Item|100,2006 +EvolutionCondition|153,Level,16,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/153.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/153.dat index 97331fab4..686699b1e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/153.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/153.dat @@ -1 +1,55 @@ -{"Name":"Bayleef","Number":153,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":152,"Devolution":152,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":102,"EggMoves":[246,312,34,68,175,320,580,505,275,437,73,267,287,22,378,14],"Machines":[29,174,92,249,237,241,230,173,63,182,202,203,218,76,231,216,189,104,207,214,197,156,213,210,25,34,36,38,68,99,72,102,117,130,164,331,263,290,412,416,445,363,447,496,267,590,15,148,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":62,"Def":80,"SpAtk":63,"SpDef":80,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The scent of spices comes from around its neck. Somehow, sniffing it makes you want to fight.","Species":"Leaf Pokémon","Height":1.2,"Weight":15.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":3,"ID":75},{"Level":4,"ID":77},{"Level":6,"ID":75},{"Level":9,"ID":77},{"Level":12,"ID":235},{"Level":18,"ID":115},{"Level":22,"ID":345},{"Level":26,"ID":363},{"Level":32,"ID":230},{"Level":36,"ID":113},{"Level":40,"ID":34},{"Level":46,"ID":219},{"Level":50,"ID":312},{"Level":54,"ID":76}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":154,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Bayleef +Number|153 +ExperienceType|2 +BaseExperience|142 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|152 +IsGenderLess|0 +CanBreed|1 +Devolution|152 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|102 +EggMoves|246,312,34,68,175,320,580,505,275,437,73,267,287,22,378,14 +Machines|29,174,92,249,237,241,230,173,63,182,202,203,218,76,231,216,189,104,207,214,197,156,213,210,25,34,36,38,68,99,72,102,117,130,164,331,263,290,412,416,445,363,447,496,267,590,15,148,560 +BaseHP|60 +BaseAttack|62 +BaseDefense|80 +BaseSpAttack|63 +BaseSpDefense|80 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The scent of spices comes from around its neck. Somehow, sniffing it makes you want to fight.\Leaf Pokémon\15.8\1.2\0,148,0 +Scale|1.08 +Move|1,33 +Move|1,45 +Move|1,75 +Move|1,77 +Move|6,75 +Move|9,77 +Move|12,235 +Move|18,115 +Move|22,345 +Move|26,363 +Move|32,230 +Move|36,113 +Move|40,34 +Move|46,219 +Move|50,312 +Move|54,76 +TradeValue|60 +EvolutionCondition|154,Level,32,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/154.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/154.dat index e94688c49..788aa2865 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/154.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/154.dat @@ -1 +1,58 @@ -{"Name":"Meganium","Number":154,"ExperienceType":"MediumSlow","BaseExperience":236,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":152,"Devolution":153,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":102,"EggMoves":[246,312,34,68,175,320,580,505,275,437,73,267,287,22,378,14],"Machines":[29,174,92,249,237,241,230,173,63,196,182,202,203,218,76,231,89,216,189,104,207,214,197,156,213,210,25,34,36,38,68,99,72,102,117,130,164,331,263,290,412,416,445,363,447,496,523,525,267,590,15,148,431,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":82,"Def":100,"SpAtk":83,"SpDef":100,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The aroma that rises from its petals contains a substance that calms aggressive feelings.","Species":"Herb Pokémon","Height":1.8,"Weight":100.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":70,"Moves":[{"Level":1,"ID":572},{"Level":2,"ID":33},{"Level":3,"ID":45},{"Level":4,"ID":75},{"Level":5,"ID":77},{"Level":6,"ID":75},{"Level":9,"ID":77},{"Level":12,"ID":235},{"Level":18,"ID":115},{"Level":22,"ID":345},{"Level":26,"ID":363},{"Level":32,"ID":80},{"Level":34,"ID":230},{"Level":40,"ID":113},{"Level":46,"ID":34},{"Level":54,"ID":219},{"Level":60,"ID":312},{"Level":66,"ID":76},{"Level":70,"ID":572}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Meganium +Number|154 +ExperienceType|2 +BaseExperience|236 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|152 +IsGenderLess|0 +CanBreed|1 +Devolution|153 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|102 +EggMoves|246,312,34,68,175,320,580,505,275,437,73,267,287,22,378,14 +Machines|29,174,92,249,237,241,230,173,63,196,182,202,203,218,76,231,89,216,189,104,207,214,197,156,213,210,25,34,36,38,68,99,72,102,117,130,164,331,263,290,412,416,445,363,447,496,523,525,267,590,15,148,431,560 +TutorMoves|338 +BaseHP|80 +BaseAttack|82 +BaseDefense|100 +BaseSpAttack|83 +BaseSpDefense|100 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The aroma that rises from its petals contains a substance that calms aggressive feelings.\Herb Pokémon\100.5\1.8\0,148,0 +Scale|1.32 +Move|1,572 +Move|1,33 +Move|1,45 +Move|1,75 +Move|1,77 +Move|6,75 +Move|9,77 +Move|12,235 +Move|18,115 +Move|22,345 +Move|26,363 +Move|32,80 +Move|34,230 +Move|40,113 +Move|46,34 +Move|54,219 +Move|60,312 +Move|66,76 +Move|70,572 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/155.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/155.dat index e277cfd3a..72e090a3e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/155.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/155.dat @@ -1 +1,55 @@ -{"Name":"Cyndaquil","Number":155,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":155,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":18,"EggMoves":[343,306,38,24,326,481,394,193,154,336,267,98,179,37,66],"Machines":[29,174,205,92,237,241,173,63,182,203,218,216,91,189,104,207,214,126,129,111,197,156,213,34,36,99,102,117,130,164,53,332,263,290,416,445,363,488,496,510,528,267,590,15],"TutorMoves":[],"BaseStats":{"HP":39,"Atk":52,"Def":43,"SpAtk":60,"SpDef":50,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is timid up in a ball. If attacked, it flares up its back for protection.","Species":"Fire Mouse Pokémon","Height":0.5,"Weight":7.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":43},{"Level":6,"ID":108},{"Level":10,"ID":52},{"Level":13,"ID":98},{"Level":19,"ID":172},{"Level":22,"ID":111},{"Level":28,"ID":488},{"Level":31,"ID":129},{"Level":37,"ID":436},{"Level":40,"ID":53},{"Level":46,"ID":517},{"Level":49,"ID":205},{"Level":55,"ID":38},{"Level":58,"ID":284}],"EvolutionConditions":[{"Condition":"14","ConditionType":"Level","Evolution":156,"Trigger":"LevelUp"}],"Items":[{"Id":2006,"Chance":100}]} \ No newline at end of file +Name|Cyndaquil +Number|155 +ExperienceType|2 +BaseExperience|62 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|155 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|18 +EggMoves|343,306,38,24,326,481,394,193,154,336,267,98,179,37,66 +Machines|29,174,205,92,237,241,173,63,182,203,218,216,91,189,104,207,214,126,129,111,197,156,213,34,36,99,102,117,130,164,53,332,263,290,416,445,363,488,496,510,528,267,590,15 +BaseHP|39 +BaseAttack|52 +BaseDefense|43 +BaseSpAttack|60 +BaseSpDefense|50 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It is timid up in a ball. If attacked, it flares up its back for protection.\Fire Mouse Pokémon\7.9\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,43 +Move|6,108 +Move|10,52 +Move|13,98 +Move|19,172 +Move|22,111 +Move|28,488 +Move|31,129 +Move|37,436 +Move|40,53 +Move|46,517 +Move|49,205 +Move|55,38 +Move|58,284 +TradeValue|50 +Item|100,2006 +EvolutionCondition|156,Level,14,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/156.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/156.dat index 9beb2fda0..b20f7fdd3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/156.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/156.dat @@ -1 +1,55 @@ -{"Name":"Quilava","Number":156,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":155,"Devolution":155,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":18,"EggMoves":[343,306,38,24,326,481,394,193,154,336,267,98,179,37,66],"Machines":[29,174,205,46,92,249,237,241,173,63,182,203,218,216,91,189,104,207,214,126,129,111,197,156,213,210,34,36,38,99,102,117,130,164,264,53,332,263,290,416,445,363,488,496,510,528,267,590,15,70,560],"TutorMoves":[],"BaseStats":{"HP":58,"Atk":64,"Def":58,"SpAtk":80,"SpDef":65,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Be careful if it turns its back during battle. It means that it will attack with the fire on its back.","Species":"Volcano Pokémon","Height":0.9,"Weight":19,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":43},{"Level":3,"ID":108},{"Level":6,"ID":108},{"Level":10,"ID":52},{"Level":13,"ID":98},{"Level":20,"ID":172},{"Level":24,"ID":111},{"Level":31,"ID":129},{"Level":35,"ID":488},{"Level":42,"ID":436},{"Level":46,"ID":53},{"Level":53,"ID":517},{"Level":57,"ID":205},{"Level":64,"ID":38},{"Level":68,"ID":284}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":157,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Quilava +Number|156 +ExperienceType|2 +BaseExperience|142 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|155 +IsGenderLess|0 +CanBreed|1 +Devolution|155 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|18 +EggMoves|343,306,38,24,326,481,394,193,154,336,267,98,179,37,66 +Machines|29,174,205,46,92,249,237,241,173,63,182,203,218,216,91,189,104,207,214,126,129,111,197,156,213,210,34,36,38,99,102,117,130,164,264,53,332,263,290,416,445,363,488,496,510,528,267,590,15,70,560 +BaseHP|58 +BaseAttack|64 +BaseDefense|58 +BaseSpAttack|80 +BaseSpDefense|65 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Be careful if it turns its back during battle. It means that it will attack with the fire on its back.\Volcano Pokémon\19\0.9\0,148,0 +Scale|0.96 +Move|1,33 +Move|1,43 +Move|1,108 +Move|6,108 +Move|10,52 +Move|13,98 +Move|20,172 +Move|24,111 +Move|31,129 +Move|35,488 +Move|42,436 +Move|46,53 +Move|53,517 +Move|57,205 +Move|64,38 +Move|68,284 +TradeValue|60 +EvolutionCondition|157,Level,36,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/157.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/157.dat index 924a74f1a..75efa7dce 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/157.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/157.dat @@ -1 +1,59 @@ -{"Name":"Typhlosion","Number":157,"ExperienceType":"MediumSlow","BaseExperience":240,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":155,"Devolution":156,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":18,"EggMoves":[343,306,38,24,326,481,394,193,154,336,267,98,179,37,66],"Machines":[223,29,174,205,46,92,249,237,241,173,63,196,182,203,218,89,216,91,189,104,207,214,126,129,111,9,197,156,213,7,210,5,25,34,36,38,66,68,69,99,102,117,130,164,264,53,332,263,290,411,416,445,363,488,496,510,523,528,267,612,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":78,"Atk":84,"Def":78,"SpAtk":109,"SpDef":85,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If its rage peaks hot that anything that touches it will instantly go up in flames.","Species":"Volcano Pokémon","Height":1.7,"Weight":79.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":70,"Moves":[{"Level":1,"ID":284},{"Level":2,"ID":38},{"Level":3,"ID":360},{"Level":4,"ID":33},{"Level":5,"ID":43},{"Level":6,"ID":108},{"Level":7,"ID":52},{"Level":8,"ID":108},{"Level":10,"ID":52},{"Level":13,"ID":98},{"Level":20,"ID":172},{"Level":24,"ID":111},{"Level":31,"ID":129},{"Level":35,"ID":488},{"Level":43,"ID":436},{"Level":48,"ID":53},{"Level":56,"ID":517},{"Level":61,"ID":205},{"Level":69,"ID":38},{"Level":74,"ID":284}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Typhlosion +Number|157 +ExperienceType|2 +BaseExperience|240 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|155 +IsGenderLess|0 +CanBreed|1 +Devolution|156 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|18 +EggMoves|343,306,38,24,326,481,394,193,154,336,267,98,179,37,66 +Machines|223,29,174,205,46,92,249,237,241,173,63,196,182,203,218,89,216,91,189,104,207,214,126,129,111,9,197,156,213,7,210,5,25,34,36,38,66,68,69,99,102,117,130,164,264,53,332,263,290,411,416,445,363,488,496,510,523,528,267,612,590,15,70,431,560 +TutorMoves|307 +BaseHP|78 +BaseAttack|84 +BaseDefense|78 +BaseSpAttack|109 +BaseSpDefense|85 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If its rage peaks hot that anything that touches it will instantly go up in flames.\Volcano Pokémon\79.5\1.7\0,148,0 +Scale|1.28 +Move|1,284 +Move|1,38 +Move|1,360 +Move|1,33 +Move|1,43 +Move|1,108 +Move|1,52 +Move|6,108 +Move|10,52 +Move|13,98 +Move|20,172 +Move|24,111 +Move|31,129 +Move|35,488 +Move|43,436 +Move|48,53 +Move|56,517 +Move|61,205 +Move|69,38 +Move|74,284 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/158.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/158.dat index 944f768e0..d220067b9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/158.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/158.dat @@ -1 +1,56 @@ -{"Name":"Totodile","Number":158,"ExperienceType":"MediumSlow","BaseExperience":63,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":158,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":125,"EggMoves":[246,453,335,242,349,260,56,8,232,300,37,352,346,313,337,157,13],"Machines":[223,29,174,92,237,173,59,63,182,240,203,218,231,216,91,189,104,8,207,214,197,156,213,5,14,25,34,36,61,55,58,66,68,69,99,82,102,117,130,157,164,264,337,352,258,280,317,332,263,290,374,421,416,445,363,468,496,503,612,590,15,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":65,"Def":64,"SpAtk":44,"SpDef":48,"Speed":43},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its well-developed jaws are powerful and capable of crushing anything. Even its trainer must be careful.","Species":"Big Jaw Pokémon","Height":0.6,"Weight":9.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":50,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":6,"ID":55},{"Level":8,"ID":99},{"Level":13,"ID":44},{"Level":15,"ID":184},{"Level":20,"ID":423},{"Level":22,"ID":175},{"Level":27,"ID":242},{"Level":29,"ID":498},{"Level":34,"ID":163},{"Level":36,"ID":103},{"Level":41,"ID":37},{"Level":43,"ID":401},{"Level":48,"ID":276},{"Level":50,"ID":56}],"EvolutionConditions":[{"Condition":"18","ConditionType":"Level","Evolution":159,"Trigger":"LevelUp"}],"Items":[{"Id":2006,"Chance":100}]} \ No newline at end of file +Name|Totodile +Number|158 +ExperienceType|2 +BaseExperience|63 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|158 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|125 +EggMoves|246,453,335,242,349,260,56,8,232,300,37,352,346,313,337,157,13 +Machines|223,29,174,92,237,173,59,63,182,240,203,218,231,216,91,189,104,8,207,214,197,156,213,5,14,25,34,36,61,55,58,66,68,69,99,82,102,117,130,157,164,264,337,352,258,280,317,332,263,290,374,421,416,445,363,468,496,503,612,590,15,57,250,127,291 +BaseHP|50 +BaseAttack|65 +BaseDefense|64 +BaseSpAttack|44 +BaseSpDefense|48 +BaseSpeed|43 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its well-developed jaws are powerful and capable of crushing anything. Even its trainer must be careful.\Big Jaw Pokémon\9.5\0.6\0,148,0 +Scale|0.84 +Move|1,10 +Move|1,43 +Move|6,55 +Move|8,99 +Move|13,44 +Move|15,184 +Move|20,423 +Move|22,175 +Move|27,242 +Move|29,498 +Move|34,163 +Move|36,103 +Move|41,37 +Move|43,401 +Move|48,276 +Move|50,56 +TradeValue|50 +Item|100,2006 +EvolutionCondition|159,Level,18,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/159.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/159.dat index 7053c051d..6fd829f21 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/159.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/159.dat @@ -1 +1,56 @@ -{"Name":"Croconaw","Number":159,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":158,"Devolution":158,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":125,"EggMoves":[246,453,335,242,349,260,56,8,232,300,37,352,346,313,337,157,13],"Machines":[223,29,174,46,92,249,237,173,59,63,182,240,203,218,231,216,91,189,104,8,207,214,197,156,213,210,5,14,25,34,36,38,61,55,58,66,68,69,99,82,102,117,130,157,164,264,337,352,258,280,317,332,263,290,374,421,416,445,363,468,496,503,612,590,15,57,70,250,127,560,291],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":80,"Def":80,"SpAtk":59,"SpDef":63,"Speed":58},"RewardEV":{"HP":0,"Atk":1,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it loses a fang, a new one grows back in its place. There are always 48 fangs lining its mouth.","Species":"Big Jaw Pokémon","Height":1.1,"Weight":25,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":60,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":3,"ID":55},{"Level":6,"ID":55},{"Level":8,"ID":99},{"Level":13,"ID":44},{"Level":15,"ID":184},{"Level":21,"ID":423},{"Level":24,"ID":175},{"Level":30,"ID":242},{"Level":33,"ID":498},{"Level":39,"ID":163},{"Level":42,"ID":103},{"Level":48,"ID":37},{"Level":51,"ID":401},{"Level":57,"ID":276},{"Level":60,"ID":56}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":160,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Croconaw +Number|159 +ExperienceType|2 +BaseExperience|142 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|158 +IsGenderLess|0 +CanBreed|1 +Devolution|158 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|125 +EggMoves|246,453,335,242,349,260,56,8,232,300,37,352,346,313,337,157,13 +Machines|223,29,174,46,92,249,237,173,59,63,182,240,203,218,231,216,91,189,104,8,207,214,197,156,213,210,5,14,25,34,36,38,61,55,58,66,68,69,99,82,102,117,130,157,164,264,337,352,258,280,317,332,263,290,374,421,416,445,363,468,496,503,612,590,15,57,70,250,127,560,291 +BaseHP|65 +BaseAttack|80 +BaseDefense|80 +BaseSpAttack|59 +BaseSpDefense|63 +BaseSpeed|58 +FPHP|0 +FPAttack|1 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it loses a fang, a new one grows back in its place. There are always 48 fangs lining its mouth.\Big Jaw Pokémon\25\1.1\0,148,0 +Scale|1.04 +Move|1,10 +Move|1,43 +Move|1,55 +Move|6,55 +Move|8,99 +Move|13,44 +Move|15,184 +Move|21,423 +Move|24,175 +Move|30,242 +Move|33,498 +Move|39,163 +Move|42,103 +Move|48,37 +Move|51,401 +Move|57,276 +Move|60,56 +TradeValue|60 +EvolutionCondition|160,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/15_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/15_mega.dat new file mode 100644 index 000000000..5d28f757f --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/15_mega.dat @@ -0,0 +1,48 @@ +Name|Mega Beedrill +Number|15 +ExperienceType|1 +BaseExperience|173 +Type1|Bug +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|13 +IsGenderLess|0 +IsMale|50 +Ability1|91 +Ability2|Nothing +HiddenAbility|91 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,129,197,156,213,168,210,13,14,18,36,99,72,102,117,130,164,280,332,263,290,355,206,318,371,416,432,445,404,363,398,369,474,496,512,522,611,590,15,148 +BaseHP|65 +BaseAttack|150 +BaseDefense|40 +BaseSpAttack|15 +BaseSpDefense|80 +BaseSpeed|145 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|It can take down any opponent with its powerful poison stingers. It sometimes attacks in swarms.\Poison Bee Pokémon\40.5\1.4\0,148,0 +Scale|1 +Move|1,31 +Move|10,31 +Move|13,116 +Move|16,41 +Move|19,99 +Move|22,228 +Move|25,390 +Move|28,42 +Move|31,97 +Move|34,372 +Move|37,398 +Move|40,283 +Move|45,565 +TradeValue|10 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/16.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/16.dat index ba8a7f86f..c6f9ecd05 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/16.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/16.dat @@ -1 +1,51 @@ -{"Name":"Pidgey","Number":16,"ExperienceType":"MediumSlow","BaseExperience":50,"Type1":"Normal","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":16,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51,77],"HiddenAbility":145,"EggMoves":[314,403,413,432,185,193,228,211,253],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,526,590,19],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":45,"Def":40,"SpAtk":35,"SpDef":35,"Speed":56},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It usually hides in tall grass. Because it dislikes fighting, it protects itself by kicking up sand.","Species":"Tiny Bird Pokémon","Height":0.3,"Weight":1.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":33},{"Level":5,"ID":28},{"Level":9,"ID":16},{"Level":13,"ID":98},{"Level":17,"ID":18},{"Level":21,"ID":239},{"Level":25,"ID":297},{"Level":29,"ID":97},{"Level":33,"ID":17},{"Level":37,"ID":355},{"Level":41,"ID":366},{"Level":45,"ID":119},{"Level":49,"ID":403},{"Level":53,"ID":542}],"EvolutionConditions":[{"Condition":"18","ConditionType":"Level","Evolution":17,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Pidgey +Number|16 +ExperienceType|2 +BaseExperience|50 +Type1|Normal +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|16 +IsGenderLess|0 +IsMale|50 +Ability1|51 +Ability2|77 +HiddenAbility|145 +EggMoves|314,403,413,432,185,193,228,211,253 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,526,590,19 +BaseHP|40 +BaseAttack|45 +BaseDefense|40 +BaseSpAttack|35 +BaseSpDefense|35 +BaseSpeed|56 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It usually hides in tall grass. Because it dislikes fighting, it protects itself by kicking up sand.\Tiny Bird Pokémon\1.8\0.3\0,148,0 +Scale|0.7 +Move|1,33 +Move|5,28 +Move|9,16 +Move|13,98 +Move|17,18 +Move|21,239 +Move|25,297 +Move|29,97 +Move|33,17 +Move|37,355 +Move|41,366 +Move|45,119 +Move|49,403 +Move|53,542 +EvolutionCondition|17,Level,18,Level +TradeValue|10 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/160.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/160.dat index f1b986b2d..7e988ae79 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/160.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/160.dat @@ -1 +1,58 @@ -{"Name":"Feraligatr","Number":160,"ExperienceType":"MediumSlow","BaseExperience":239,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":158,"Devolution":159,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":125,"EggMoves":[246,453,335,242,349,260,56,8,232,300,37,352,346,313,337,157,13],"Machines":[223,29,174,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,8,207,214,197,156,213,210,5,14,25,34,36,38,61,55,58,66,68,69,99,82,102,117,130,157,164,264,337,352,258,280,317,332,263,290,411,374,406,421,416,419,445,363,468,496,503,523,525,612,590,15,57,250,127,431,560,291],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":105,"Def":100,"SpAtk":79,"SpDef":83,"Speed":78},"RewardEV":{"HP":0,"Atk":2,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it bites with its massive and powerful jaws, it shakes its head and savagely tears its victim up.","Species":"Big Jaw Pokémon","Height":2.3,"Weight":88.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.52,"Y":1.52,"Z":1.52},"TradeValue":70,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":3,"ID":55},{"Level":4,"ID":99},{"Level":6,"ID":55},{"Level":8,"ID":99},{"Level":13,"ID":44},{"Level":15,"ID":184},{"Level":21,"ID":423},{"Level":24,"ID":175},{"Level":30,"ID":97},{"Level":32,"ID":242},{"Level":37,"ID":498},{"Level":45,"ID":163},{"Level":50,"ID":103},{"Level":58,"ID":37},{"Level":63,"ID":401},{"Level":71,"ID":276},{"Level":76,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Feraligatr +Number|160 +ExperienceType|2 +BaseExperience|239 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|158 +IsGenderLess|0 +CanBreed|1 +Devolution|159 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|125 +EggMoves|246,453,335,242,349,260,56,8,232,300,37,352,346,313,337,157,13 +Machines|223,29,174,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,8,207,214,197,156,213,210,5,14,25,34,36,38,61,55,58,66,68,69,99,82,102,117,130,157,164,264,337,352,258,280,317,332,263,290,411,374,406,421,416,419,445,363,468,496,503,523,525,612,590,15,57,250,127,431,560,291 +TutorMoves|308 +BaseHP|85 +BaseAttack|105 +BaseDefense|100 +BaseSpAttack|79 +BaseSpDefense|83 +BaseSpeed|78 +FPHP|0 +FPAttack|2 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it bites with its massive and powerful jaws, it shakes its head and savagely tears its victim up.\Big Jaw Pokémon\88.8\2.3\0,148,0 +Scale|1.52 +Move|1,10 +Move|1,43 +Move|1,55 +Move|1,99 +Move|6,55 +Move|8,99 +Move|13,44 +Move|15,184 +Move|21,423 +Move|24,175 +Move|30,97 +Move|32,242 +Move|37,498 +Move|45,163 +Move|50,103 +Move|58,37 +Move|63,401 +Move|71,276 +Move|76,56 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/161.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/161.dat index d84856528..ae4db36d4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/161.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/161.dat @@ -1 +1,54 @@ -{"Name":"Sentret","Number":161,"ExperienceType":"MediumFast","BaseExperience":43,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":161,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,51],"HiddenAbility":119,"EggMoves":[274,445,204,343,38,116,231,387,363,228,179,163,271,164],"Machines":[223,29,174,205,92,237,241,173,63,182,240,203,218,76,231,216,91,247,189,104,8,207,214,129,111,9,197,156,213,168,7,210,34,36,61,55,58,6,99,85,102,117,130,149,164,264,352,280,351,53,263,290,374,451,421,416,445,363,447,369,468,496,497,514,526,612,590,15,57,250],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":46,"Def":34,"SpAtk":35,"SpDef":45,"Speed":20},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A very cautious Pokémon itself up using its tail to get a better view of its surroundings.","Species":"Scout Pokémon","Height":0.8,"Weight":6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":10,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":193},{"Level":4,"ID":111},{"Level":7,"ID":98},{"Level":13,"ID":154},{"Level":16,"ID":1},{"Level":19,"ID":1},{"Level":25,"ID":21},{"Level":28,"ID":156},{"Level":31,"ID":389},{"Level":36,"ID":133},{"Level":39,"ID":226},{"Level":42,"ID":1},{"Level":47,"ID":304}],"EvolutionConditions":[{"Condition":"15","ConditionType":"Level","Evolution":162,"Trigger":"LevelUp"}],"Items":[{"Id":2006,"Chance":5}]} \ No newline at end of file +Name|Sentret +Number|161 +ExperienceType|1 +BaseExperience|43 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|161 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|50 +Ability2|51 +HiddenAbility|119 +EggMoves|274,445,204,343,38,116,231,387,363,228,179,163,271,164 +Machines|223,29,174,205,92,237,241,173,63,182,240,203,218,76,231,216,91,247,189,104,8,207,214,129,111,9,197,156,213,168,7,210,34,36,61,55,58,6,99,85,102,117,130,149,164,264,352,280,351,53,263,290,374,451,421,416,445,363,447,369,468,496,497,514,526,612,590,15,57,250 +BaseHP|35 +BaseAttack|46 +BaseDefense|34 +BaseSpAttack|35 +BaseSpDefense|45 +BaseSpeed|20 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A very cautious Pokémon itself up using its tail to get a better view of its surroundings.\Scout Pokémon\6\0.8\0,148,0 +Scale|0.92 +Move|1,10 +Move|1,193 +Move|4,111 +Move|7,98 +Move|13,154 +Move|16,270 +Move|19,266 +Move|25,21 +Move|28,156 +Move|31,389 +Move|36,133 +Move|39,226 +Move|42,382 +Move|47,304 +TradeValue|10 +Item|5,2006 +EvolutionCondition|162,Level,15,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/162.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/162.dat index ecb30f0e6..d1545dc1f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/162.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/162.dat @@ -1 +1,56 @@ -{"Name":"Furret","Number":162,"ExperienceType":"MediumFast","BaseExperience":145,"Type1":"Normal","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":161,"Devolution":161,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,51],"HiddenAbility":119,"EggMoves":[274,445,204,343,38,116,231,387,363,228,179,163,271,164],"Machines":[223,29,174,205,92,249,237,241,173,59,63,182,240,203,218,76,231,87,216,91,247,189,104,8,207,214,129,111,9,197,156,213,168,7,210,34,36,38,61,55,58,6,99,85,102,117,130,149,164,264,352,280,351,53,263,290,411,374,451,421,416,445,363,447,369,468,496,497,514,526,612,590,15,57,70,250],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":76,"Def":64,"SpAtk":45,"SpDef":55,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It makes a nest to suit its long and skinny body. The nest is impossible for other Pokémon to enter.","Species":"Long Body Pokémon","Height":1.8,"Weight":32.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":20,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":193},{"Level":3,"ID":111},{"Level":4,"ID":98},{"Level":5,"ID":111},{"Level":7,"ID":98},{"Level":13,"ID":154},{"Level":17,"ID":1},{"Level":21,"ID":1},{"Level":28,"ID":21},{"Level":32,"ID":156},{"Level":36,"ID":389},{"Level":42,"ID":133},{"Level":46,"ID":226},{"Level":50,"ID":1},{"Level":56,"ID":304}],"EvolutionConditions":[],"Items":[{"Id":2006,"Chance":50},{"Id":2009,"Chance":5}]} \ No newline at end of file +Name|Furret +Number|162 +ExperienceType|1 +BaseExperience|145 +Type1|Normal +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|161 +IsGenderLess|0 +CanBreed|1 +Devolution|161 +IsMale|50 +Ability1|50 +Ability2|51 +HiddenAbility|119 +EggMoves|274,445,204,343,38,116,231,387,363,228,179,163,271,164 +Machines|223,29,174,205,92,249,237,241,173,59,63,182,240,203,218,76,231,87,216,91,247,189,104,8,207,214,129,111,9,197,156,213,168,7,210,34,36,38,61,55,58,6,99,85,102,117,130,149,164,264,352,280,351,53,263,290,411,374,451,421,416,445,363,447,369,468,496,497,514,526,612,590,15,57,70,250 +BaseHP|85 +BaseAttack|76 +BaseDefense|64 +BaseSpAttack|45 +BaseSpDefense|55 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It makes a nest to suit its long and skinny body. The nest is impossible for other Pokémon to enter.\Long Body Pokémon\32.5\1.8\0,148,0 +Scale|1.32 +Move|1,10 +Move|1,193 +Move|1,111 +Move|1,98 +Move|4,111 +Move|7,98 +Move|13,154 +Move|17,270 +Move|21,266 +Move|28,21 +Move|32,156 +Move|36,389 +Move|42,133 +Move|46,226 +Move|50,382 +Move|56,304 +TradeValue|20 +Item|50,2006 +Item|5,2009 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/163.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/163.dat index 1d48357e3..09f151357 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/163.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/163.dat @@ -1 +1,56 @@ -{"Name":"Hoothoot","Number":163,"ExperienceType":"MediumFast","BaseExperience":52,"Type1":"Normal","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":163,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[15,51],"HiddenAbility":110,"EggMoves":[97,432,297,185,119,101,143,48,18,17],"Machines":[174,92,244,237,241,173,63,182,203,218,216,94,247,189,104,207,214,129,138,197,156,213,168,211,171,36,99,100,102,115,117,143,164,332,263,290,355,318,278,416,432,445,363,365,496,497,526,590,19],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":30,"Def":30,"SpAtk":36,"SpDef":56,"Speed":50},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It always stands on one foot. It changes feet so fast, the movement can rarely be seen.","Species":"Owl Pokémon","Height":0.7,"Weight":21.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":10,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":3,"ID":193},{"Level":5,"ID":95},{"Level":9,"ID":64},{"Level":13,"ID":253},{"Level":17,"ID":115},{"Level":21,"ID":93},{"Level":25,"ID":1},{"Level":29,"ID":36},{"Level":33,"ID":403},{"Level":37,"ID":428},{"Level":41,"ID":1},{"Level":45,"ID":326},{"Level":49,"ID":375},{"Level":53,"ID":355},{"Level":57,"ID":138}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":164,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Hoothoot +Number|163 +ExperienceType|1 +BaseExperience|52 +Type1|Normal +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|163 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|15 +Ability2|51 +HiddenAbility|110 +EggMoves|97,432,297,185,119,101,143,48,18,17 +Machines|174,92,244,237,241,173,63,182,203,218,216,94,247,189,104,207,214,129,138,197,156,213,168,211,171,36,99,100,102,115,117,143,164,332,263,290,355,318,278,416,432,445,363,365,496,497,526,590,19 +BaseHP|60 +BaseAttack|30 +BaseDefense|30 +BaseSpAttack|36 +BaseSpDefense|56 +BaseSpeed|50 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It always stands on one foot. It changes feet so fast, the movement can rarely be seen.\Owl Pokémon\21.2\0.7\0,148,0 +Scale|0.88 +Move|1,33 +Move|1,45 +Move|1,193 +Move|5,95 +Move|9,64 +Move|13,253 +Move|17,115 +Move|21,93 +Move|25,497 +Move|29,36 +Move|33,403 +Move|37,428 +Move|41,485 +Move|45,326 +Move|49,375 +Move|53,355 +Move|57,138 +TradeValue|10 +EvolutionCondition|164,Level,20,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/164.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/164.dat index 8c7e239e8..63a1e081e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/164.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/164.dat @@ -1 +1,58 @@ -{"Name":"Noctowl","Number":164,"ExperienceType":"MediumFast","BaseExperience":155,"Type1":"Normal","Type2":"Flying","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":163,"Devolution":163,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[15,51],"HiddenAbility":110,"EggMoves":[97,432,297,185,119,101,143,48,18,17],"Machines":[174,92,244,237,241,173,63,182,203,218,216,94,247,189,104,207,214,129,138,197,156,213,168,211,171,13,18,36,38,99,100,102,115,117,143,164,332,263,290,355,318,278,416,432,445,363,365,496,497,526,590,19],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":50,"Def":50,"SpAtk":76,"SpDef":96,"Speed":70},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its eyes are specially adapted. They concentrate even faint light and enable it to see in the dark.","Species":"Owl Pokémon","Height":1.6,"Weight":40.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":25,"Moves":[{"Level":1,"ID":138},{"Level":2,"ID":143},{"Level":3,"ID":33},{"Level":4,"ID":45},{"Level":5,"ID":193},{"Level":6,"ID":95},{"Level":7,"ID":95},{"Level":9,"ID":64},{"Level":13,"ID":253},{"Level":17,"ID":115},{"Level":22,"ID":93},{"Level":27,"ID":1},{"Level":32,"ID":36},{"Level":37,"ID":403},{"Level":42,"ID":428},{"Level":47,"ID":1},{"Level":52,"ID":326},{"Level":57,"ID":375},{"Level":62,"ID":355},{"Level":67,"ID":138}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Noctowl +Number|164 +ExperienceType|1 +BaseExperience|155 +Type1|Normal +Type2|Flying +CatchRate|90 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|163 +IsGenderLess|0 +CanBreed|1 +Devolution|163 +IsMale|50 +Ability1|15 +Ability2|51 +HiddenAbility|110 +EggMoves|97,432,297,185,119,101,143,48,18,17 +Machines|174,92,244,237,241,173,63,182,203,218,216,94,247,189,104,207,214,129,138,197,156,213,168,211,171,13,18,36,38,99,100,102,115,117,143,164,332,263,290,355,318,278,416,432,445,363,365,496,497,526,590,19 +BaseHP|100 +BaseAttack|50 +BaseDefense|50 +BaseSpAttack|76 +BaseSpDefense|96 +BaseSpeed|70 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its eyes are specially adapted. They concentrate even faint light and enable it to see in the dark.\Owl Pokémon\40.8\1.6\0,148,0 +Scale|1.24 +Move|1,138 +Move|1,143 +Move|1,33 +Move|1,45 +Move|1,193 +Move|1,95 +Move|5,95 +Move|9,64 +Move|13,253 +Move|17,115 +Move|22,93 +Move|27,497 +Move|32,36 +Move|37,403 +Move|42,428 +Move|47,485 +Move|52,326 +Move|57,375 +Move|62,355 +Move|67,138 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/165.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/165.dat index 5bc1b670f..4132373e7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/165.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/165.dat @@ -1 +1,52 @@ -{"Name":"Ledyba","Number":165,"ExperienceType":"Fast","BaseExperience":53,"Type1":"Bug","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":165,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,48],"HiddenAbility":155,"EggMoves":[117,450,405,146,409,227,264,282,60,103,318,366,113],"Machines":[223,29,174,205,92,237,241,230,173,63,182,202,203,218,76,216,91,104,8,207,214,129,9,197,156,213,168,5,13,14,18,36,99,72,102,115,117,164,264,113,219,280,332,263,290,355,374,409,318,416,445,363,369,496,512,522,611,612,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":20,"Def":30,"SpAtk":40,"SpDef":80,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"It is very timid. It will be afraid to move if it is alone. But it will be active if it is in a group.","Species":"Five Star Pokémon","Height":1,"Weight":10.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":15,"Moves":[{"Level":1,"ID":33},{"Level":6,"ID":48},{"Level":9,"ID":4},{"Level":14,"ID":113},{"Level":15,"ID":115},{"Level":16,"ID":219},{"Level":17,"ID":183},{"Level":22,"ID":226},{"Level":25,"ID":318},{"Level":30,"ID":97},{"Level":33,"ID":129},{"Level":38,"ID":38},{"Level":41,"ID":405}],"EvolutionConditions":[{"Condition":"18","ConditionType":"Level","Evolution":166,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Ledyba +Number|165 +ExperienceType|0 +BaseExperience|53 +Type1|Bug +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|165 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|68 +Ability2|48 +HiddenAbility|155 +EggMoves|117,450,405,146,409,227,264,282,60,103,318,366,113 +Machines|223,29,174,205,92,237,241,230,173,63,182,202,203,218,76,216,91,104,8,207,214,129,9,197,156,213,168,5,13,14,18,36,99,72,102,115,117,164,264,113,219,280,332,263,290,355,374,409,318,416,445,363,369,496,512,522,611,612,590,148 +BaseHP|40 +BaseAttack|20 +BaseDefense|30 +BaseSpAttack|40 +BaseSpDefense|80 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|It is very timid. It will be afraid to move if it is alone. But it will be active if it is in a group.\Five Star Pokémon\10.8\1\0,148,0 +Scale|1 +Move|1,33 +Move|6,48 +Move|9,4 +Move|14,113 +Move|14,115 +Move|14,219 +Move|17,183 +Move|22,226 +Move|25,318 +Move|30,97 +Move|33,129 +Move|38,38 +Move|41,405 +TradeValue|15 +EvolutionCondition|166,Level,18,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/166.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/166.dat index a4bfe90d0..7e44de446 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/166.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/166.dat @@ -1 +1,53 @@ -{"Name":"Ledian","Number":166,"ExperienceType":"Fast","BaseExperience":137,"Type1":"Bug","Type2":"Flying","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":165,"Devolution":165,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,48],"HiddenAbility":89,"EggMoves":[117,450,405,146,409,227,264,282,60,103,318,366,113],"Machines":[223,29,174,205,92,249,237,241,230,173,63,182,202,203,218,76,216,91,104,8,207,214,129,9,197,156,213,168,5,13,14,18,36,99,72,102,115,117,164,264,113,219,280,332,263,290,355,411,374,409,318,416,445,363,369,496,512,522,611,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":35,"Def":50,"SpAtk":55,"SpDef":110,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"When the stars flicker in the night sky, it flutters about, scattering a glowing powder.","Species":"Five Star Pokémon","Height":1.4,"Weight":35.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":25,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":48},{"Level":3,"ID":4},{"Level":6,"ID":48},{"Level":9,"ID":4},{"Level":14,"ID":113},{"Level":15,"ID":115},{"Level":16,"ID":219},{"Level":17,"ID":183},{"Level":24,"ID":226},{"Level":29,"ID":318},{"Level":36,"ID":97},{"Level":41,"ID":129},{"Level":48,"ID":38},{"Level":53,"ID":405}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Ledian +Number|166 +ExperienceType|0 +BaseExperience|137 +Type1|Bug +Type2|Flying +CatchRate|90 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|165 +IsGenderLess|0 +CanBreed|1 +Devolution|165 +IsMale|50 +Ability1|68 +Ability2|48 +HiddenAbility|89 +EggMoves|117,450,405,146,409,227,264,282,60,103,318,366,113 +Machines|223,29,174,205,92,249,237,241,230,173,63,182,202,203,218,76,216,91,104,8,207,214,129,9,197,156,213,168,5,13,14,18,36,99,72,102,115,117,164,264,113,219,280,332,263,290,355,411,374,409,318,416,445,363,369,496,512,522,611,612,590,70,148 +BaseHP|55 +BaseAttack|35 +BaseDefense|50 +BaseSpAttack|55 +BaseSpDefense|110 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|When the stars flicker in the night sky, it flutters about, scattering a glowing powder.\Five Star Pokémon\35.6\1.4\0,148,0 +Scale|1.16 +Move|1,33 +Move|1,48 +Move|1,4 +Move|6,48 +Move|9,4 +Move|14,113 +Move|14,115 +Move|14,219 +Move|17,183 +Move|24,226 +Move|29,318 +Move|36,97 +Move|41,129 +Move|48,38 +Move|53,405 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/167.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/167.dat index b1af9171e..c9638a2a9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/167.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/167.dat @@ -1 +1,55 @@ -{"Name":"Spinarak","Number":167,"ExperienceType":"Fast","BaseExperience":50,"Type1":"Bug","Type2":"Poison","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":167,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,15],"HiddenAbility":97,"EggMoves":[226,50,527,224,400,60,228,476,324,49,390,41,398],"Machines":[174,92,237,241,173,63,182,202,203,218,76,216,91,94,104,207,214,188,129,197,156,213,168,32,34,36,99,72,102,117,164,263,290,416,445,404,363,398,468,474,496,522,611,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":60,"Def":40,"SpAtk":40,"SpDef":40,"Speed":30},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lies still in the same pose for days in its web, waiting for its unsuspecting prey to wander close.","Species":"String Spit Pokémon","Height":0.5,"Weight":8.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":40},{"Level":2,"ID":81},{"Level":5,"ID":184},{"Level":8,"ID":132},{"Level":12,"ID":141},{"Level":15,"ID":101},{"Level":19,"ID":425},{"Level":22,"ID":154},{"Level":26,"ID":389},{"Level":29,"ID":169},{"Level":33,"ID":97},{"Level":36,"ID":42},{"Level":40,"ID":94},{"Level":43,"ID":398},{"Level":47,"ID":440},{"Level":50,"ID":1}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Level","Evolution":168,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Spinarak +Number|167 +ExperienceType|0 +BaseExperience|50 +Type1|Bug +Type2|Poison +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|167 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|68 +Ability2|15 +HiddenAbility|97 +EggMoves|226,50,527,224,400,60,228,476,324,49,390,41,398 +Machines|174,92,237,241,173,63,182,202,203,218,76,216,91,94,104,207,214,188,129,197,156,213,168,32,34,36,99,72,102,117,164,263,290,416,445,404,363,398,468,474,496,522,611,590,148 +BaseHP|40 +BaseAttack|60 +BaseDefense|40 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|30 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lies still in the same pose for days in its web, waiting for its unsuspecting prey to wander close.\String Spit Pokémon\8.5\0.5\0,148,0 +Scale|0.7 +Move|1,40 +Move|1,81 +Move|5,184 +Move|8,132 +Move|12,141 +Move|15,101 +Move|19,425 +Move|22,154 +Move|26,389 +Move|29,169 +Move|33,97 +Move|36,42 +Move|40,94 +Move|43,398 +Move|47,440 +Move|50,564 +TradeValue|15 +EvolutionCondition|168,Level,22,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/168.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/168.dat index 8773aebc5..1f5c03d36 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/168.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/168.dat @@ -1 +1,59 @@ -{"Name":"Ariados","Number":168,"ExperienceType":"Fast","BaseExperience":137,"Type1":"Bug","Type2":"Poison","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":167,"Devolution":167,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,15],"HiddenAbility":97,"EggMoves":[226,50,527,224,400,60,228,476,324,49,390,41,398],"Machines":[174,92,237,241,173,63,182,202,203,218,76,216,91,94,104,207,214,188,129,197,156,213,168,32,34,36,38,99,72,102,117,164,263,290,416,445,404,363,398,468,474,496,522,611,590,148,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":90,"Def":70,"SpAtk":60,"SpDef":60,"Speed":40},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It spins string not only from its rear but also from its mouth. It's hard to tell which end is which.","Species":"Long Leg Pokémon","Height":1.1,"Weight":33.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":1},{"Level":3,"ID":450},{"Level":4,"ID":40},{"Level":5,"ID":81},{"Level":6,"ID":184},{"Level":7,"ID":132},{"Level":8,"ID":184},{"Level":9,"ID":132},{"Level":12,"ID":141},{"Level":15,"ID":101},{"Level":19,"ID":425},{"Level":23,"ID":154},{"Level":28,"ID":389},{"Level":32,"ID":169},{"Level":37,"ID":97},{"Level":41,"ID":42},{"Level":46,"ID":94},{"Level":50,"ID":398},{"Level":55,"ID":440},{"Level":58,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Ariados +Number|168 +ExperienceType|0 +BaseExperience|137 +Type1|Bug +Type2|Poison +CatchRate|90 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|167 +IsGenderLess|0 +CanBreed|1 +Devolution|167 +IsMale|50 +Ability1|68 +Ability2|15 +HiddenAbility|97 +EggMoves|226,50,527,224,400,60,228,476,324,49,390,41,398 +Machines|174,92,237,241,173,63,182,202,203,218,76,216,91,94,104,207,214,188,129,197,156,213,168,32,34,36,38,99,72,102,117,164,263,290,416,445,404,363,398,468,474,496,522,611,590,148,560 +BaseHP|70 +BaseAttack|90 +BaseDefense|70 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|40 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It spins string not only from its rear but also from its mouth. It's hard to tell which end is which.\Long Leg Pokémon\33.5\1.1\0,148,0 +Scale|1.04 +Move|1,599 +Move|1,565 +Move|1,450 +Move|1,40 +Move|1,81 +Move|1,184 +Move|1,132 +Move|5,184 +Move|8,132 +Move|12,141 +Move|15,101 +Move|19,425 +Move|23,154 +Move|28,389 +Move|32,169 +Move|37,97 +Move|41,42 +Move|46,94 +Move|50,398 +Move|55,440 +Move|58,564 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/169.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/169.dat index eb12a6303..467addcc6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/169.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/169.dat @@ -1 +1,55 @@ -{"Name":"Crobat","Number":169,"ExperienceType":"MediumFast","BaseExperience":241,"Type1":"Poison","Type2":"Flying","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":41,"Devolution":42,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[39],"HiddenAbility":151,"EggMoves":[413,174,432,185,202,16,95,417,228,98,211,599,18,428,355],"Machines":[174,92,237,241,173,63,182,202,203,218,216,247,104,207,214,188,129,197,156,213,168,211,13,18,36,38,99,72,102,117,143,164,269,259,263,290,289,355,371,416,432,445,399,404,363,365,369,474,496,512,590,19],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":90,"Def":80,"SpAtk":70,"SpDef":80,"Speed":130},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":3},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"It flies so silently through the dark on its four wings that it may not be noticed even when nearby.","Species":"Bat Pokémon","Height":1.8,"Weight":75,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":70,"Moves":[{"Level":1,"ID":440},{"Level":2,"ID":103},{"Level":3,"ID":141},{"Level":4,"ID":48},{"Level":5,"ID":310},{"Level":6,"ID":48},{"Level":8,"ID":310},{"Level":12,"ID":44},{"Level":15,"ID":17},{"Level":19,"ID":109},{"Level":24,"ID":129},{"Level":28,"ID":314},{"Level":33,"ID":512},{"Level":38,"ID":212},{"Level":42,"ID":305},{"Level":47,"ID":114},{"Level":52,"ID":403}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Crobat +Number|169 +ExperienceType|1 +BaseExperience|241 +Type1|Poison +Type2|Flying +CatchRate|90 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|41 +IsGenderLess|0 +CanBreed|1 +Devolution|42 +IsMale|50 +Ability1|39 +Ability2|Nothing +HiddenAbility|151 +EggMoves|413,174,432,185,202,16,95,417,228,98,211,599,18,428,355 +Machines|174,92,237,241,173,63,182,202,203,218,216,247,104,207,214,188,129,197,156,213,168,211,13,18,36,38,99,72,102,117,143,164,269,259,263,290,289,355,371,416,432,445,399,404,363,365,369,474,496,512,590,19 +BaseHP|85 +BaseAttack|90 +BaseDefense|80 +BaseSpAttack|70 +BaseSpDefense|80 +BaseSpeed|130 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|1 +CanSwim|0 +Pokedex|It flies so silently through the dark on its four wings that it may not be noticed even when nearby.\Bat Pokémon\75\1.8\0,148,0 +Scale|1.32 +Move|1,440 +Move|1,103 +Move|1,141 +Move|1,48 +Move|1,310 +Move|4,48 +Move|8,310 +Move|12,44 +Move|15,17 +Move|19,109 +Move|24,129 +Move|28,314 +Move|33,512 +Move|38,212 +Move|42,305 +Move|47,114 +Move|52,403 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/17.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/17.dat index e01178f10..188a70e1d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/17.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/17.dat @@ -1 +1,53 @@ -{"Name":"Pidgeotto","Number":17,"ExperienceType":"MediumSlow","BaseExperience":122,"Type1":"Normal","Type2":"Flying","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":16,"Devolution":16,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51,77],"HiddenAbility":145,"EggMoves":[314,403,413,432,185,193,228,211,253],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,526,590,19],"TutorMoves":[],"BaseStats":{"HP":63,"Atk":60,"Def":55,"SpAtk":50,"SpDef":50,"Speed":71},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"It has outstanding vision. However high it flies, it is able to distinguish the movements of its prey.","Species":"Bird Pokémon","Height":1.1,"Weight":30,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":20,"Moves":[{"Level":1,"ID":16},{"Level":2,"ID":28},{"Level":3,"ID":33},{"Level":5,"ID":28},{"Level":9,"ID":16},{"Level":13,"ID":98},{"Level":17,"ID":18},{"Level":22,"ID":239},{"Level":27,"ID":297},{"Level":32,"ID":97},{"Level":37,"ID":17},{"Level":42,"ID":355},{"Level":47,"ID":366},{"Level":52,"ID":119},{"Level":57,"ID":403},{"Level":62,"ID":542}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":18,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Pidgeotto +Number|17 +ExperienceType|2 +BaseExperience|122 +Type1|Normal +Type2|Flying +CatchRate|120 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|16 +IsGenderLess|0 +IsMale|50 +Ability1|51 +Ability2|77 +HiddenAbility|145 +EggMoves|314,403,413,432,185,193,228,211,253 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,526,590,19 +BaseHP|63 +BaseAttack|60 +BaseDefense|55 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|71 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|1 +CanSwim|0 +Pokedex|It has outstanding vision. However high it flies, it is able to distinguish the movements of its prey.\Bird Pokémon\30\1.1\0,148,0 +Scale|1.04 +Move|1,16 +Move|1,28 +Move|1,33 +Move|5,28 +Move|9,16 +Move|13,98 +Move|17,18 +Move|22,239 +Move|27,297 +Move|32,97 +Move|37,17 +Move|42,355 +Move|47,366 +Move|52,119 +Move|57,403 +Move|62,542 +EvolutionCondition|18,Level,36,Level +TradeValue|20 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/170.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/170.dat index 29dc236bc..bfa1354ce 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/170.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/170.dat @@ -1 +1,56 @@ -{"Name":"Chinchou","Number":170,"ExperienceType":"Slow","BaseExperience":66,"Type1":"Water","Type2":"Electric","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":170,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[10,35],"HiddenAbility":11,"EggMoves":[97,133,362,175,54,60,103,351,487,352,250],"Machines":[174,92,192,237,173,59,63,182,240,203,218,87,216,104,207,214,197,156,213,36,61,55,58,99,85,102,117,86,164,352,258,351,263,290,362,451,416,445,363,496,503,521,528,605,590,57,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":38,"Def":38,"SpAtk":56,"SpDef":56,"Speed":67},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"It shoots positive and negative electricity between the tips of its two antennae and zaps its enemies.","Species":"Angler Pokémon","Height":0.5,"Weight":12,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":55},{"Level":2,"ID":48},{"Level":6,"ID":86},{"Level":9,"ID":175},{"Level":12,"ID":145},{"Level":17,"ID":109},{"Level":20,"ID":209},{"Level":23,"ID":36},{"Level":28,"ID":486},{"Level":31,"ID":61},{"Level":34,"ID":324},{"Level":39,"ID":435},{"Level":42,"ID":392},{"Level":45,"ID":56},{"Level":47,"ID":1},{"Level":50,"ID":268}],"EvolutionConditions":[{"Condition":"27","ConditionType":"Level","Evolution":171,"Trigger":"LevelUp"}],"Items":[{"Id":162,"Chance":5}]} \ No newline at end of file +Name|Chinchou +Number|170 +ExperienceType|3 +BaseExperience|66 +Type1|Water +Type2|Electric +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|170 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|10 +Ability2|35 +HiddenAbility|11 +EggMoves|97,133,362,175,54,60,103,351,487,352,250 +Machines|174,92,192,237,173,59,63,182,240,203,218,87,216,104,207,214,197,156,213,36,61,55,58,99,85,102,117,86,164,352,258,351,263,290,362,451,416,445,363,496,503,521,528,605,590,57,148,250,127,291 +BaseHP|75 +BaseAttack|38 +BaseDefense|38 +BaseSpAttack|56 +BaseSpDefense|56 +BaseSpeed|67 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|It shoots positive and negative electricity between the tips of its two antennae and zaps its enemies.\Angler Pokémon\12\0.5\0,148,0 +Scale|0.7 +Move|1,55 +Move|1,48 +Move|6,86 +Move|9,175 +Move|12,145 +Move|17,109 +Move|20,209 +Move|23,36 +Move|28,486 +Move|31,61 +Move|34,324 +Move|39,435 +Move|42,392 +Move|45,56 +Move|47,569 +Move|50,268 +TradeValue|20 +Item|5,162 +EvolutionCondition|171,Level,27,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/171.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/171.dat index bf73538a2..2c51cd721 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/171.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/171.dat @@ -1 +1,60 @@ -{"Name":"Lanturn","Number":171,"ExperienceType":"Slow","BaseExperience":161,"Type1":"Water","Type2":"Electric","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":170,"Devolution":170,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[10,35],"HiddenAbility":11,"EggMoves":[97,133,362,175,54,60,103,351,487,352,250],"Machines":[174,92,192,237,173,59,63,182,240,203,218,87,216,104,207,214,197,156,213,36,38,61,55,58,99,102,117,130,86,164,352,258,351,263,290,362,451,416,445,363,496,503,521,528,605,590,57,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":125,"Atk":58,"Def":58,"SpAtk":76,"SpDef":76,"Speed":67},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"The light it emits is so bright that it can illuminate the sea's surface from a depth of over three miles.","Species":"Light Pokémon","Height":1.2,"Weight":22.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":35,"Moves":[{"Level":1,"ID":598},{"Level":2,"ID":55},{"Level":3,"ID":48},{"Level":4,"ID":86},{"Level":6,"ID":86},{"Level":9,"ID":175},{"Level":12,"ID":145},{"Level":17,"ID":109},{"Level":20,"ID":209},{"Level":23,"ID":36},{"Level":27,"ID":254},{"Level":28,"ID":255},{"Level":29,"ID":256},{"Level":30,"ID":486},{"Level":35,"ID":61},{"Level":40,"ID":324},{"Level":47,"ID":435},{"Level":52,"ID":392},{"Level":57,"ID":56},{"Level":60,"ID":1},{"Level":64,"ID":268}],"EvolutionConditions":[],"Items":[{"Id":162,"Chance":5}]} \ No newline at end of file +Name|Lanturn +Number|171 +ExperienceType|3 +BaseExperience|161 +Type1|Water +Type2|Electric +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|170 +IsGenderLess|0 +CanBreed|1 +Devolution|170 +IsMale|50 +Ability1|10 +Ability2|35 +HiddenAbility|11 +EggMoves|97,133,362,175,54,60,103,351,487,352,250 +Machines|174,92,192,237,173,59,63,182,240,203,218,87,216,104,207,214,197,156,213,36,38,61,55,58,99,102,117,130,86,164,352,258,351,263,290,362,451,416,445,363,496,503,521,528,605,590,57,148,250,127,291 +BaseHP|125 +BaseAttack|58 +BaseDefense|58 +BaseSpAttack|76 +BaseSpDefense|76 +BaseSpeed|67 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|The light it emits is so bright that it can illuminate the sea's surface from a depth of over three miles.\Light Pokémon\22.5\1.2\0,148,0 +Scale|1.08 +Move|1,598 +Move|1,55 +Move|1,48 +Move|1,86 +Move|6,86 +Move|9,175 +Move|12,145 +Move|17,109 +Move|20,209 +Move|23,36 +Move|27,254 +Move|27,255 +Move|27,256 +Move|30,486 +Move|35,61 +Move|40,324 +Move|47,435 +Move|52,392 +Move|57,56 +Move|60,569 +Move|64,268 +TradeValue|35 +Item|5,162 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/172.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/172.dat index 5d3ab8f77..4671424f6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/172.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/172.dat @@ -1 +1,46 @@ -{"Name":"Pichu","Number":172,"ExperienceType":"MediumFast","BaseExperience":41,"Type1":"Electric","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":172,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[9],"HiddenAbility":31,"EggMoves":[516,117,268,574,3,227,203,252,175,381,217,179,9,321,344,273],"Machines":[29,174,205,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,111,197,156,213,5,25,34,36,68,69,99,85,102,117,86,164,113,351,263,290,374,451,416,445,363,447,496,497,521,528,590,148],"TutorMoves":[],"BaseStats":{"HP":20,"Atk":40,"Def":15,"SpAtk":35,"SpDef":35,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is not yet skilled at storing electricity. It may send out a jolt if amused or startled.","Species":"Tiny Mouse Pokémon","Height":0.3,"Weight":2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":84},{"Level":2,"ID":204},{"Level":5,"ID":39},{"Level":10,"ID":186},{"Level":13,"ID":86},{"Level":18,"ID":417}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":25,"Trigger":"LevelUp"}],"Items":[{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Pichu +Number|172 +ExperienceType|1 +BaseExperience|41 +Type1|Electric +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|172 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|9 +Ability2|Nothing +HiddenAbility|31 +EggMoves|516,117,268,574,3,227,203,252,175,381,217,179,9,321,273,6 +Machines|29,174,205,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,111,197,156,213,5,25,34,36,68,69,99,85,102,117,86,164,113,351,263,290,374,451,416,445,363,447,496,497,521,528,590,148 +BaseHP|20 +BaseAttack|40 +BaseDefense|15 +BaseSpAttack|35 +BaseSpDefense|35 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It is not yet skilled at storing electricity. It may send out a jolt if amused or startled.\Tiny Mouse Pokémon\2\0.3\0,148,0 +Scale|0.7 +Move|1,84 +Move|1,204 +Move|5,39 +Move|10,186 +Move|13,86 +Move|18,417 +TradeValue|50 +Item|50,2006 +EvolutionCondition|25,friendship,220,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/173.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/173.dat index 699b73f38..d90b9fbce 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/173.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/173.dat @@ -1 +1,49 @@ -{"Name":"Cleffa","Number":173,"ExperienceType":"Fast","BaseExperience":44,"Type1":"Fairy","Type2":"Blank","CatchRate":150,"BaseFriendship":140,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":173,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[56,98],"HiddenAbility":132,"EggMoves":[133,312,187,343,313,505,118,102,581,217,150,500,321,273,164],"Machines":[29,174,205,92,192,244,237,241,173,63,196,182,240,203,218,76,231,216,91,94,247,189,104,207,214,126,111,138,197,156,213,171,5,25,34,36,61,55,68,69,99,100,102,115,117,118,135,86,149,164,352,113,219,351,53,263,290,374,278,416,445,363,447,473,477,496,497,510,526,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":25,"Def":28,"SpAtk":45,"SpDef":55,"Speed":15},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Because of its unusual silhouette, people believe that it came here on a meteor.","Species":"Star Shape Pokémon","Height":0.3,"Weight":3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":204},{"Level":4,"ID":227},{"Level":7,"ID":47},{"Level":10,"ID":186},{"Level":13,"ID":1},{"Level":16,"ID":345}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":35,"Trigger":"LevelUp"}],"Items":[{"Id":2005,"Chance":50},{"Id":9,"Chance":5},{"Id":149,"Chance":1}]} \ No newline at end of file +Name|Cleffa +Number|173 +ExperienceType|0 +BaseExperience|44 +Type1|Fairy +Type2| +CatchRate|150 +BaseFriendship|140 +EggGroup1|None +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|173 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|56 +Ability2|98 +HiddenAbility|132 +EggMoves|133,312,187,343,313,505,118,102,581,217,150,500,321,273,164 +Machines|29,174,205,92,192,244,237,241,173,63,196,182,240,203,218,76,231,216,91,94,247,189,104,207,214,126,111,138,197,156,213,171,5,25,34,36,61,55,68,69,99,100,102,115,117,118,135,86,149,164,352,113,219,351,53,263,290,374,278,416,445,363,447,473,477,496,497,510,526,590,148 +BaseHP|50 +BaseAttack|25 +BaseDefense|28 +BaseSpAttack|45 +BaseSpDefense|55 +BaseSpeed|15 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Because of its unusual silhouette, people believe that it came here on a meteor.\Star Shape Pokémon\3\0.3\0,148,0 +Scale|0.7 +Move|1,1 +Move|7,47 +Move|10,186 +Move|1,204 +Move|4,227 +Move|16,345 +Move|13,383 +TradeValue|25 +Item|50,2005 +Item|5,9 +Item|1,149 +EvolutionCondition|35,friendship,220,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/174.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/174.dat index 43313ff34..b50e9358c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/174.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/174.dat @@ -1 +1,45 @@ -{"Name":"Igglybuff","Number":174,"ExperienceType":"Fast","BaseExperience":42,"Type1":"Normal","Type2":"Fairy","CatchRate":170,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":174,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[56,172],"HiddenAbility":132,"EggMoves":[445,343,313,185,356,505,387,581,195,217,386,214,273],"Machines":[29,174,205,92,192,244,237,241,173,63,196,182,240,203,218,76,216,91,94,247,189,104,207,214,126,111,138,197,156,213,171,5,25,34,36,61,55,68,69,99,100,102,115,117,118,86,149,164,352,113,219,351,53,263,290,374,278,416,445,363,447,496,497,510,528,590,148],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":30,"Def":15,"SpAtk":40,"SpDef":20,"Speed":15},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has a very soft body. If it starts to roll, it will bounce all over and be impossible to stop.","Species":"Balloon Pokémon","Height":0.3,"Weight":1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":47},{"Level":2,"ID":204},{"Level":5,"ID":111},{"Level":9,"ID":1},{"Level":13,"ID":186},{"Level":17,"ID":1}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":39,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Igglybuff +Number|174 +ExperienceType|0 +BaseExperience|42 +Type1|Normal +Type2|Fairy +CatchRate|170 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|174 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|56 +Ability2|172 +HiddenAbility|132 +EggMoves|445,343,313,185,356,505,387,581,195,217,386,214,273 +Machines|29,174,205,92,192,244,237,241,173,63,196,182,240,203,218,76,216,91,94,247,189,104,207,214,126,111,138,197,156,213,171,5,25,34,36,61,55,68,69,99,100,102,115,117,118,86,149,164,352,113,219,351,53,263,290,374,278,416,445,363,447,496,497,510,528,590,148 +BaseHP|90 +BaseAttack|30 +BaseDefense|15 +BaseSpAttack|40 +BaseSpDefense|20 +BaseSpeed|15 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has a very soft body. If it starts to roll, it will bounce all over and be impossible to stop.\Balloon Pokémon\1\0.3\0,148,0 +Scale|0.7 +Move|1,47 +Move|1,204 +Move|5,111 +Move|9,1 +Move|13,186 +Move|17,383 +TradeValue|25 +EvolutionCondition|39,friendship,220,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/175.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/175.dat index 55be455ea..d3cdf7017 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/175.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/175.dat @@ -1 +1,54 @@ -{"Name":"Togepi","Number":175,"ExperienceType":"Fast","BaseExperience":49,"Type1":"Fairy","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":175,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[55,32],"HiddenAbility":105,"EggMoves":[326,193,248,381,119,234,417,64,217,375,290,500,244,164],"Machines":[29,174,205,92,192,249,244,237,241,173,63,182,240,203,218,76,216,94,247,189,104,207,214,126,129,111,138,197,156,213,34,36,68,69,99,100,102,115,117,118,121,135,86,149,161,164,352,113,219,351,53,263,290,374,278,416,445,363,447,473,477,496,497,510,526,605,590,148],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":20,"Def":65,"SpAtk":40,"SpDef":65,"Speed":20},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The shell seems to be filled with joy. It is said that it will share good luck when treated kindly.","Species":"Spike Ball Pokémon","Height":0.3,"Weight":1.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":204},{"Level":5,"ID":118},{"Level":9,"ID":186},{"Level":13,"ID":281},{"Level":17,"ID":227},{"Level":21,"ID":1},{"Level":25,"ID":1},{"Level":29,"ID":273},{"Level":33,"ID":246},{"Level":37,"ID":219},{"Level":41,"ID":226},{"Level":45,"ID":38},{"Level":49,"ID":387},{"Level":53,"ID":1}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":176,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Togepi +Number|175 +ExperienceType|0 +BaseExperience|49 +Type1|Fairy +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|175 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|55 +Ability2|32 +HiddenAbility|105 +EggMoves|326,193,248,381,119,234,417,64,217,375,290,500,244,164 +Machines|29,174,205,92,192,249,244,237,241,173,63,182,240,203,218,76,216,94,247,189,104,207,214,126,129,111,138,197,156,213,34,36,68,69,99,100,102,115,117,118,121,135,86,149,161,164,352,113,219,351,53,263,290,374,278,416,445,363,447,473,477,496,497,510,526,605,590,148 +BaseHP|35 +BaseAttack|20 +BaseDefense|65 +BaseSpAttack|40 +BaseSpDefense|65 +BaseSpeed|20 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The shell seems to be filled with joy. It is said that it will share good luck when treated kindly.\Spike Ball Pokémon\1.5\0.3\0,148,0 +Scale|0.7 +Move|1,45 +Move|1,204 +Move|5,118 +Move|9,186 +Move|13,281 +Move|17,227 +Move|21,266 +Move|25,516 +Move|29,273 +Move|33,246 +Move|37,219 +Move|41,226 +Move|45,38 +Move|49,387 +Move|53,495 +TradeValue|25 +EvolutionCondition|176,friendship,220,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/176.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/176.dat index 0e549fc32..e5222901b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/176.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/176.dat @@ -1 +1,58 @@ -{"Name":"Togetic","Number":176,"ExperienceType":"Fast","BaseExperience":142,"Type1":"Fairy","Type2":"Flying","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"Fairy","BaseEggSteps":2805,"EggPokemon":175,"Devolution":175,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[55,32],"HiddenAbility":105,"EggMoves":[326,193,248,381,119,234,417,64,217,375,290,500,244,164],"Machines":[29,174,205,92,192,249,244,237,241,173,63,182,240,203,218,76,216,94,247,189,104,207,214,126,129,111,138,197,156,213,211,13,18,34,36,68,69,99,100,102,115,117,118,121,135,143,86,149,161,164,264,352,113,219,280,351,332,263,290,355,374,409,318,416,432,445,363,447,473,477,496,497,510,514,526,605,590,19,148],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":40,"Def":85,"SpAtk":80,"SpDef":105,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They say that it will appear before kindhearted, caring people and shower them with happiness.","Species":"Happiness Pokémon","Height":0.6,"Weight":3.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":45,"Moves":[{"Level":1,"ID":345},{"Level":2,"ID":45},{"Level":3,"ID":204},{"Level":4,"ID":118},{"Level":5,"ID":186},{"Level":6,"ID":118},{"Level":9,"ID":186},{"Level":13,"ID":281},{"Level":14,"ID":584},{"Level":17,"ID":227},{"Level":21,"ID":1},{"Level":25,"ID":1},{"Level":29,"ID":273},{"Level":33,"ID":246},{"Level":37,"ID":219},{"Level":41,"ID":226},{"Level":45,"ID":38},{"Level":49,"ID":387},{"Level":53,"ID":1}],"EvolutionConditions":[{"Condition":"135","ConditionType":"Item","Evolution":468,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Togetic +Number|176 +ExperienceType|0 +BaseExperience|142 +Type1|Fairy +Type2|Flying +CatchRate|75 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|Fairy +BaseEggSteps|2805 +EggPokemon|175 +IsGenderLess|0 +CanBreed|1 +Devolution|175 +IsMale|87.5 +Ability1|55 +Ability2|32 +HiddenAbility|105 +EggMoves|326,193,248,381,119,234,417,64,217,375,290,500,244,164 +Machines|29,174,205,92,192,249,244,237,241,173,63,182,240,203,218,76,216,94,247,189,104,207,214,126,129,111,138,197,156,213,211,13,18,34,36,68,69,99,100,102,115,117,118,121,135,143,86,149,161,164,264,352,113,219,280,351,332,263,290,355,374,409,318,416,432,445,363,447,473,477,496,497,510,514,526,605,590,19,148 +BaseHP|55 +BaseAttack|40 +BaseDefense|85 +BaseSpAttack|80 +BaseSpDefense|105 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They say that it will appear before kindhearted, caring people and shower them with happiness.\Happiness Pokémon\3.2\0.6\0,148,0 +Scale|0.84 +Move|1,345 +Move|1,45 +Move|1,204 +Move|1,118 +Move|1,186 +Move|5,118 +Move|9,186 +Move|13,281 +Move|14,584 +Move|17,227 +Move|21,266 +Move|25,516 +Move|29,273 +Move|33,246 +Move|37,219 +Move|41,226 +Move|45,38 +Move|49,387 +Move|53,495 +TradeValue|45 +EvolutionCondition|468,item,135,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/177.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/177.dat index efa198f86..f7d29e621 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/177.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/177.dat @@ -1 +1,55 @@ -{"Name":"Natu","Number":177,"ExperienceType":"MediumFast","BaseExperience":64,"Type1":"Psychic","Type2":"Flying","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":177,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[28,48],"HiddenAbility":156,"EggMoves":[502,65,297,185,114,98,287,355,493,285,211,389,485,428,244],"Machines":[174,92,244,237,241,173,63,182,202,203,218,216,104,207,214,129,197,156,213,168,211,171,36,99,100,102,117,149,164,263,290,285,355,318,416,445,363,365,473,477,496,502,605,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":50,"Def":45,"SpAtk":70,"SpDef":45,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Because its wings aren't yet fully grown, it has to hop to get around. It is always staring at something.","Species":"Tiny Bird Pokémon","Height":0.2,"Weight":2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":64},{"Level":2,"ID":43},{"Level":6,"ID":101},{"Level":9,"ID":100},{"Level":12,"ID":1},{"Level":17,"ID":357},{"Level":20,"ID":1},{"Level":23,"ID":109},{"Level":28,"ID":273},{"Level":33,"ID":375},{"Level":36,"ID":248},{"Level":39,"ID":500},{"Level":44,"ID":466},{"Level":47,"ID":384},{"Level":48,"ID":385},{"Level":50,"ID":94}],"EvolutionConditions":[{"Condition":"25","ConditionType":"Level","Evolution":178,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Natu +Number|177 +ExperienceType|1 +BaseExperience|64 +Type1|Psychic +Type2|Flying +CatchRate|190 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|177 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|28 +Ability2|48 +HiddenAbility|156 +EggMoves|502,65,297,185,114,98,287,355,493,285,211,389,485,428,244 +Machines|174,92,244,237,241,173,63,182,202,203,218,216,104,207,214,129,197,156,213,168,211,171,36,99,100,102,117,149,164,263,290,285,355,318,416,445,363,365,473,477,496,502,605,590,148 +BaseHP|40 +BaseAttack|50 +BaseDefense|45 +BaseSpAttack|70 +BaseSpDefense|45 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Because its wings aren't yet fully grown, it has to hop to get around. It is always staring at something.\Tiny Bird Pokémon\2\0.2\0,148,0 +Scale|0.7 +Move|1,64 +Move|1,43 +Move|6,101 +Move|9,100 +Move|12,381 +Move|17,357 +Move|20,382 +Move|23,109 +Move|28,273 +Move|33,375 +Move|36,248 +Move|39,500 +Move|44,466 +Move|47,384 +Move|47,385 +Move|50,94 +TradeValue|20 +EvolutionCondition|178,Level,25,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/178.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/178.dat index 428000758..d701772fb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/178.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/178.dat @@ -1 +1,55 @@ -{"Name":"Xatu","Number":178,"ExperienceType":"MediumFast","BaseExperience":165,"Type1":"Psychic","Type2":"Flying","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":177,"Devolution":177,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[28,48],"HiddenAbility":156,"EggMoves":[502,65,297,185,114,98,287,355,493,285,211,389,485,428,244],"Machines":[174,92,244,237,241,173,63,182,202,203,218,76,216,94,247,104,207,214,129,138,197,156,213,168,211,171,13,18,36,38,99,100,102,115,117,143,86,149,161,164,347,113,332,263,290,285,355,318,416,432,445,363,447,365,369,433,473,477,496,502,605,590,19,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":75,"Def":70,"SpAtk":95,"SpDef":70,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They say that it stays still and quiet because it is seeing both the past and future at the same time.","Species":"Mystic Pokémon","Height":1.5,"Weight":15,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":30,"Moves":[{"Level":1,"ID":64},{"Level":2,"ID":43},{"Level":6,"ID":101},{"Level":9,"ID":100},{"Level":12,"ID":1},{"Level":17,"ID":357},{"Level":20,"ID":1},{"Level":23,"ID":109},{"Level":27,"ID":366},{"Level":30,"ID":273},{"Level":37,"ID":375},{"Level":42,"ID":248},{"Level":47,"ID":500},{"Level":54,"ID":466},{"Level":55,"ID":384},{"Level":59,"ID":385},{"Level":66,"ID":94}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Xatu +Number|178 +ExperienceType|1 +BaseExperience|165 +Type1|Psychic +Type2|Flying +CatchRate|75 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|177 +IsGenderLess|0 +CanBreed|1 +Devolution|177 +IsMale|50 +Ability1|28 +Ability2|48 +HiddenAbility|156 +EggMoves|502,65,297,185,114,98,287,355,493,285,211,389,485,428,244 +Machines|174,92,244,237,241,173,63,182,202,203,218,76,216,94,247,104,207,214,129,138,197,156,213,168,211,171,13,18,36,38,99,100,102,115,117,143,86,149,161,164,347,113,332,263,290,285,355,318,416,432,445,363,447,365,369,433,473,477,496,502,605,590,19,148 +BaseHP|65 +BaseAttack|75 +BaseDefense|70 +BaseSpAttack|95 +BaseSpDefense|70 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|They say that it stays still and quiet because it is seeing both the past and future at the same time.\Mystic Pokémon\15\1.5\0,148,0 +Scale|1.2 +Move|1,64 +Move|1,43 +Move|6,101 +Move|9,100 +Move|12,381 +Move|17,357 +Move|20,382 +Move|23,109 +Move|27,366 +Move|30,273 +Move|37,375 +Move|42,248 +Move|47,500 +Move|54,466 +Move|54,384 +Move|59,385 +Move|66,94 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/179.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/179.dat index 9f227ea5a..a08dd4bb5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/179.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/179.dat @@ -1 +1,54 @@ -{"Name":"Mareep","Number":179,"ExperienceType":"MediumSlow","BaseExperience":56,"Type1":"Electric","Type2":"Blank","CatchRate":235,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":179,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[9],"HiddenAbility":57,"EggMoves":[495,97,34,268,598,604,260,231,316,28,103,36,115,219,85],"Machines":[29,174,92,192,237,173,63,182,240,203,218,231,87,216,104,207,214,129,111,197,156,213,34,36,99,85,102,117,130,86,164,113,219,351,263,290,374,451,416,445,363,496,497,521,528,590,148],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":40,"Def":40,"SpAtk":65,"SpDef":45,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If static electricity builds in its body, its fleece doubles in volume. Touching it will shock you.","Species":"Wool Pokémon","Height":0.6,"Weight":7.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":10,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":4,"ID":86},{"Level":8,"ID":84},{"Level":11,"ID":178},{"Level":15,"ID":268},{"Level":18,"ID":36},{"Level":22,"ID":486},{"Level":25,"ID":109},{"Level":29,"ID":408},{"Level":32,"ID":435},{"Level":36,"ID":538},{"Level":39,"ID":324},{"Level":43,"ID":113},{"Level":46,"ID":87}],"EvolutionConditions":[{"Condition":"15","ConditionType":"Level","Evolution":180,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Mareep +Number|179 +ExperienceType|2 +BaseExperience|56 +Type1|Electric +Type2| +CatchRate|235 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|179 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|9 +Ability2|Nothing +HiddenAbility|57 +EggMoves|495,97,34,268,598,604,260,231,316,28,103,36,115,219,85 +Machines|29,174,92,192,237,173,63,182,240,203,218,231,87,216,104,207,214,129,111,197,156,213,34,36,99,85,102,117,130,86,164,113,219,351,263,290,374,451,416,445,363,496,497,521,528,590,148 +BaseHP|55 +BaseAttack|40 +BaseDefense|40 +BaseSpAttack|65 +BaseSpDefense|45 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If static electricity builds in its body, its fleece doubles in volume. Touching it will shock you.\Wool Pokémon\7.8\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|1,45 +Move|4,86 +Move|8,84 +Move|11,178 +Move|15,268 +Move|18,36 +Move|22,486 +Move|25,109 +Move|29,408 +Move|32,435 +Move|36,538 +Move|39,324 +Move|43,113 +Move|46,87 +TradeValue|10 +EvolutionCondition|180,Level,15,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/18.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/18.dat index 872dab5a3..753b0b615 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/18.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/18.dat @@ -1 +1,54 @@ -{"Name":"Pidgeot","Number":18,"ExperienceType":"MediumSlow","BaseExperience":211,"Type1":"Normal","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":16,"Devolution":17,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51,77],"HiddenAbility":145,"EggMoves":[314,403,413,432,185,193,228,211,253],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,38,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,526,590,19],"TutorMoves":[],"BaseStats":{"HP":83,"Atk":80,"Def":75,"SpAtk":70,"SpDef":70,"Speed":101},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":3},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its well-developed chest muscles make it strong enough to whip up a gusty windstorm with just a few flaps.","Species":"Bird Pokémon","Height":1.5,"Weight":39.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":35,"Moves":[{"Level":1,"ID":16},{"Level":2,"ID":28},{"Level":3,"ID":33},{"Level":4,"ID":98},{"Level":5,"ID":542},{"Level":6,"ID":28},{"Level":9,"ID":16},{"Level":13,"ID":98},{"Level":17,"ID":18},{"Level":22,"ID":239},{"Level":27,"ID":297},{"Level":32,"ID":97},{"Level":38,"ID":17},{"Level":44,"ID":355},{"Level":50,"ID":366},{"Level":56,"ID":119},{"Level":62,"ID":403},{"Level":68,"ID":542}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Pidgeot +Number|18 +ExperienceType|2 +BaseExperience|211 +Type1|Normal +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|16 +IsGenderLess|0 +IsMale|50 +Ability1|51 +Ability2|77 +HiddenAbility|145 +EggMoves|314,403,413,432,185,193,228,211,253 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,38,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,526,590,19 +BaseHP|83 +BaseAttack|80 +BaseDefense|75 +BaseSpAttack|70 +BaseSpDefense|70 +BaseSpeed|101 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|0 +CanSwim|0 +Pokedex|Its well-developed chest muscles make it strong enough to whip up a gusty windstorm with just a few flaps.\Bird Pokémon\39.5\1.5\0,148,0 +Scale|1.2 +Move|1,16 +Move|1,28 +Move|1,33 +Move|1,98 +Move|1,542 +Move|5,28 +Move|9,16 +Move|13,98 +Move|17,18 +Move|22,239 +Move|27,297 +Move|32,97 +Move|38,17 +Move|44,355 +Move|50,366 +Move|56,119 +Move|62,403 +Move|68,542 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/180.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/180.dat index f5bb32dfc..307329109 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/180.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/180.dat @@ -1 +1,56 @@ -{"Name":"Flaaffy","Number":180,"ExperienceType":"MediumSlow","BaseExperience":128,"Type1":"Electric","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":179,"Devolution":179,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[9],"HiddenAbility":57,"EggMoves":[495,97,34,268,598,604,260,231,316,28,103,36,115,219,85],"Machines":[223,29,174,92,192,249,237,173,63,182,240,203,218,231,87,216,104,207,214,129,111,9,197,156,213,7,5,25,34,36,6,66,68,69,99,85,102,117,130,86,164,264,113,219,280,351,263,290,374,451,416,445,363,496,497,521,528,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":55,"Def":55,"SpAtk":80,"SpDef":60,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"As a result of storing too much electricity, it developed patches where even downy wool won't grow.","Species":"Wool Pokémon","Height":0.8,"Weight":13.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":20,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":3,"ID":86},{"Level":4,"ID":84},{"Level":5,"ID":86},{"Level":8,"ID":84},{"Level":11,"ID":178},{"Level":16,"ID":268},{"Level":20,"ID":36},{"Level":25,"ID":486},{"Level":29,"ID":109},{"Level":34,"ID":408},{"Level":38,"ID":435},{"Level":43,"ID":538},{"Level":47,"ID":324},{"Level":52,"ID":113},{"Level":56,"ID":87}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":181,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Flaaffy +Number|180 +ExperienceType|2 +BaseExperience|128 +Type1|Electric +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|179 +IsGenderLess|0 +CanBreed|1 +Devolution|179 +IsMale|50 +Ability1|9 +Ability2|Nothing +HiddenAbility|57 +EggMoves|495,97,34,268,598,604,260,231,316,28,103,36,115,219,85 +Machines|223,29,174,92,192,249,237,173,63,182,240,203,218,231,87,216,104,207,214,129,111,9,197,156,213,7,5,25,34,36,6,66,68,69,99,85,102,117,130,86,164,264,113,219,280,351,263,290,374,451,416,445,363,496,497,521,528,612,590,70,148 +BaseHP|70 +BaseAttack|55 +BaseDefense|55 +BaseSpAttack|80 +BaseSpDefense|60 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|As a result of storing too much electricity, it developed patches where even downy wool won't grow.\Wool Pokémon\13.3\0.8\0,148,0 +Scale|0.92 +Move|1,33 +Move|1,45 +Move|1,86 +Move|1,84 +Move|4,86 +Move|8,84 +Move|11,178 +Move|16,268 +Move|20,36 +Move|25,486 +Move|29,109 +Move|34,408 +Move|38,435 +Move|43,538 +Move|47,324 +Move|52,113 +Move|56,87 +TradeValue|20 +EvolutionCondition|181,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/181.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/181.dat index e60bb320d..2020c14fc 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/181.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/181.dat @@ -1 +1,62 @@ -{"Name":"Ampharos","Number":181,"ExperienceType":"MediumSlow","BaseExperience":225,"Type1":"Electric","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":179,"Devolution":180,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[9],"HiddenAbility":57,"EggMoves":[495,97,34,268,598,604,260,231,316,28,103,36,115,219,85],"Machines":[223,29,174,92,192,249,237,173,63,182,240,203,218,231,87,216,104,207,214,129,111,9,197,156,213,7,5,25,34,36,6,66,68,69,99,85,102,117,130,86,149,164,264,113,219,280,351,263,290,411,374,451,416,445,363,496,497,521,523,528,612,590,70,148,431],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":75,"Def":85,"SpAtk":115,"SpDef":90,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The tail's tip shines brightly and can be seen from far away. It acts as a beacon for lost people.","Species":"Light Pokémon","Height":1.4,"Weight":61.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":35,"Moves":[{"Level":1,"ID":192},{"Level":2,"ID":1},{"Level":3,"ID":1},{"Level":4,"ID":406},{"Level":5,"ID":7},{"Level":6,"ID":33},{"Level":7,"ID":45},{"Level":8,"ID":86},{"Level":9,"ID":84},{"Level":10,"ID":86},{"Level":11,"ID":84},{"Level":12,"ID":178},{"Level":16,"ID":268},{"Level":20,"ID":36},{"Level":25,"ID":486},{"Level":29,"ID":109},{"Level":30,"ID":9},{"Level":35,"ID":408},{"Level":40,"ID":435},{"Level":46,"ID":538},{"Level":51,"ID":324},{"Level":57,"ID":113},{"Level":62,"ID":87},{"Level":65,"ID":406}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Ampharos +Number|181 +ExperienceType|2 +BaseExperience|225 +Type1|Electric +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|179 +IsGenderLess|0 +CanBreed|1 +Devolution|180 +IsMale|50 +Ability1|9 +Ability2|Nothing +HiddenAbility|57 +EggMoves|495,97,34,268,598,604,260,231,316,28,103,36,115,219,85 +Machines|223,29,174,92,192,249,237,173,63,182,240,203,218,231,87,216,104,207,214,129,111,9,197,156,213,7,5,25,34,36,6,66,68,69,99,85,102,117,130,86,149,164,264,113,219,280,351,263,290,411,374,451,416,445,363,496,497,521,523,528,612,590,70,148,431 +BaseHP|90 +BaseAttack|75 +BaseDefense|85 +BaseSpAttack|115 +BaseSpDefense|90 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The tail's tip shines brightly and can be seen from far away. It acts as a beacon for lost people.\Light Pokémon\61.5\1.4\0,148,0 +Scale|1.16 +Move|1,192 +Move|1,602 +Move|1,569 +Move|1,406 +Move|1,7 +Move|1,33 +Move|1,45 +Move|1,86 +Move|1,84 +Move|4,86 +Move|8,84 +Move|11,178 +Move|16,268 +Move|20,36 +Move|25,486 +Move|29,109 +Move|30,9 +Move|35,408 +Move|40,435 +Move|46,538 +Move|51,324 +Move|57,113 +Move|62,87 +Move|65,406 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/181_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/181_mega.dat new file mode 100644 index 000000000..37d7e1be3 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/181_mega.dat @@ -0,0 +1,62 @@ +Name|Mega Ampharos +Number|181 +ExperienceType|2 +BaseExperience|225 +Type1|Electric +Type2|Dragon +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|179 +IsGenderLess|0 +CanBreed|1 +Devolution|180 +IsMale|50 +Ability1|104 +Ability2|Nothing +HiddenAbility|104 +EggMoves|495,97,34,268,598,604,260,231,316,28,103,36,115,219,85 +Machines|223,29,174,92,192,249,237,173,63,182,240,203,218,231,87,216,104,207,214,129,111,9,197,156,213,7,5,25,34,36,6,66,68,69,99,85,102,117,130,86,149,164,264,113,219,280,351,263,290,411,374,451,416,445,363,496,497,521,523,528,612,590,70,148,431 +BaseHP|90 +BaseAttack|95 +BaseDefense|105 +BaseSpAttack|165 +BaseSpDefense|110 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The tail's tip shines brightly and can be seen from far away. It acts as a beacon for lost people.\Light Pokémon\61.5\1.4\0,148,0 +Scale|1.16 +Move|1,192 +Move|1,602 +Move|1,569 +Move|1,406 +Move|1,7 +Move|1,33 +Move|1,45 +Move|1,86 +Move|1,84 +Move|4,86 +Move|8,84 +Move|11,178 +Move|16,268 +Move|20,36 +Move|25,486 +Move|29,109 +Move|30,9 +Move|35,408 +Move|40,435 +Move|46,538 +Move|51,324 +Move|57,113 +Move|62,87 +Move|65,406 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/182.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/182.dat index 5f2bf8598..d24be32fc 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/182.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/182.dat @@ -1 +1,47 @@ -{"Name":"Bellossom","Number":182,"ExperienceType":"MediumSlow","BaseExperience":216,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":43,"Devolution":44,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34],"HiddenAbility":131,"EggMoves":[495,204,175,275,267,75,290,235,298,321,14],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,14,36,99,72,102,117,164,331,219,263,290,412,374,409,416,445,363,447,474,496,611,267,605,590,15,148],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":80,"Def":95,"SpAtk":90,"SpDef":100,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"BELLOSSOM gather at times and seem to dance. They say that the dance is a ritual to summon the sun.","Species":"Flower Pokémon","Height":0.4,"Weight":5.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":437},{"Level":2,"ID":348},{"Level":3,"ID":72},{"Level":4,"ID":230},{"Level":5,"ID":78},{"Level":6,"ID":241},{"Level":23,"ID":345},{"Level":50,"ID":572},{"Level":53,"ID":437}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Bellossom +Number|182 +ExperienceType|2 +BaseExperience|216 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|43 +IsGenderLess|0 +CanBreed|1 +Devolution|44 +IsMale|50 +Ability1|34 +Ability2|Nothing +HiddenAbility|131 +EggMoves|495,204,175,275,267,75,290,235,298,321,14 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,14,36,99,72,102,117,164,331,219,263,290,412,374,409,416,445,363,447,474,496,611,267,605,590,15,148 +BaseHP|75 +BaseAttack|80 +BaseDefense|95 +BaseSpAttack|90 +BaseSpDefense|100 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|BELLOSSOM gather at times and seem to dance. They say that the dance is a ritual to summon the sun.\Flower Pokémon\5.8\0.4\0,148,0 +Scale|0.7 +Move|1,437 +Move|1,348 +Move|1,72 +Move|1,230 +Move|1,78 +Move|1,241 +Move|23,345 +Move|50,572 +Move|53,437 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/183.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/183.dat index 10a4fcb06..e71827971 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/183.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/183.dat @@ -1 +1,56 @@ -{"Name":"Marill","Number":183,"ExperienceType":"Fast","BaseExperience":88,"Type1":"Water","Type2":"Fairy","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":298,"Devolution":298,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[47,37],"HiddenAbility":157,"EggMoves":[133,453,187,34,293,383,227,313,248,330,195,217,287,47,21,487,276,48,321,346,113,164,193],"Machines":[223,29,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,129,111,197,156,213,5,34,36,61,55,58,66,69,99,102,117,164,264,352,258,113,280,263,290,374,416,445,363,447,496,503,526,612,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":20,"Def":50,"SpAtk":20,"SpDef":50,"Speed":40},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The tip of its tail oil that is lighter than water, lets it swim without drowning.","Species":"Aqua Mouse Pokémon","Height":0.4,"Weight":8.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":145},{"Level":3,"ID":55},{"Level":4,"ID":39},{"Level":5,"ID":346},{"Level":7,"ID":145},{"Level":10,"ID":111},{"Level":11,"ID":205},{"Level":13,"ID":61},{"Level":16,"ID":1},{"Level":20,"ID":401},{"Level":23,"ID":38},{"Level":28,"ID":392},{"Level":31,"ID":240},{"Level":37,"ID":276},{"Level":40,"ID":56},{"Level":45,"ID":583}],"EvolutionConditions":[{"Condition":"18","ConditionType":"Level","Evolution":184,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Marill +Number|183 +ExperienceType|0 +BaseExperience|88 +Type1|Water +Type2|Fairy +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|298 +IsGenderLess|0 +CanBreed|1 +Devolution|298 +IsMale|50 +Ability1|47 +Ability2|37 +HiddenAbility|157 +EggMoves|133,453,187,34,293,383,227,313,248,330,195,217,287,47,21,487,276,48,321,346,113,164,193 +Machines|223,29,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,129,111,197,156,213,5,34,36,61,55,58,66,69,99,102,117,164,264,352,258,113,280,263,290,374,416,445,363,447,496,503,526,612,590,57,70,250,127,291 +BaseHP|70 +BaseAttack|20 +BaseDefense|50 +BaseSpAttack|20 +BaseSpDefense|50 +BaseSpeed|40 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The tip of its tail oil that is lighter than water, lets it swim without drowning.\Aqua Mouse Pokémon\8.5\0.4\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,145 +Move|1,55 +Move|2,39 +Move|5,346 +Move|7,145 +Move|10,111 +Move|10,205 +Move|13,61 +Move|16,270 +Move|20,401 +Move|23,38 +Move|28,392 +Move|31,240 +Move|37,276 +Move|40,56 +Move|45,583 +TradeValue|10 +EvolutionCondition|184,Level,18,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/184.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/184.dat index a49841221..b5863cce1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/184.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/184.dat @@ -1 +1,57 @@ -{"Name":"Azumarill","Number":184,"ExperienceType":"Fast","BaseExperience":185,"Type1":"Water","Type2":"Fairy","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Fairy","BaseEggSteps":2805,"EggPokemon":298,"Devolution":183,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[47,37],"HiddenAbility":157,"EggMoves":[133,453,187,34,293,383,227,313,248,330,195,217,287,47,21,487,276,48,321,346,113,164,193],"Machines":[223,29,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,129,111,197,156,213,5,34,36,38,61,55,58,66,69,99,102,117,164,264,352,258,113,280,263,290,411,374,416,445,363,447,496,503,523,526,612,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":50,"Def":80,"SpAtk":60,"SpDef":80,"Speed":50},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"By keeping still and listening intently, it can tell what is in even wild, fast-moving rivers.","Species":"Aqua Rabbit Pokémon","Height":0.8,"Weight":28.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":25,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":145},{"Level":3,"ID":39},{"Level":4,"ID":346},{"Level":5,"ID":55},{"Level":6,"ID":39},{"Level":7,"ID":346},{"Level":8,"ID":145},{"Level":10,"ID":111},{"Level":11,"ID":205},{"Level":13,"ID":61},{"Level":16,"ID":1},{"Level":21,"ID":401},{"Level":25,"ID":38},{"Level":31,"ID":392},{"Level":35,"ID":240},{"Level":42,"ID":276},{"Level":46,"ID":56},{"Level":50,"ID":583}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Azumarill +Number|184 +ExperienceType|0 +BaseExperience|185 +Type1|Water +Type2|Fairy +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Fairy +BaseEggSteps|2805 +EggPokemon|298 +IsGenderLess|0 +CanBreed|1 +Devolution|183 +IsMale|50 +Ability1|47 +Ability2|37 +HiddenAbility|157 +EggMoves|133,453,187,34,293,383,227,313,248,330,195,217,287,47,21,487,276,48,321,346,113,164,193 +Machines|223,29,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,129,111,197,156,213,5,34,36,38,61,55,58,66,69,99,102,117,164,264,352,258,113,280,263,290,411,374,416,445,363,447,496,503,523,526,612,590,57,70,250,127,291 +BaseHP|100 +BaseAttack|50 +BaseDefense|80 +BaseSpAttack|60 +BaseSpDefense|80 +BaseSpeed|50 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|By keeping still and listening intently, it can tell what is in even wild, fast-moving rivers.\Aqua Rabbit Pokémon\28.5\0.8\0,148,0 +Scale|0.92 +Move|1,33 +Move|1,145 +Move|1,39 +Move|1,346 +Move|1,55 +Move|2,39 +Move|5,346 +Move|7,145 +Move|10,111 +Move|10,205 +Move|13,61 +Move|16,270 +Move|21,401 +Move|25,38 +Move|31,392 +Move|35,240 +Move|42,276 +Move|46,56 +Move|50,583 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/185.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/185.dat index 0bb736d53..ecd395cbd 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/185.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/185.dat @@ -1 +1,57 @@ -{"Name":"Sudowoodo","Number":185,"ExperienceType":"MediumFast","BaseExperience":144,"Type1":"Rock","Type2":"Blank","CatchRate":65,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":438,"Devolution":438,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5,69],"HiddenAbility":155,"EggMoves":[174,111,203,106,29,205,328,120,446],"Machines":[223,29,174,205,92,249,244,237,241,173,63,182,203,218,89,216,91,189,104,8,207,214,201,111,9,197,156,213,168,7,5,34,36,38,6,66,68,69,99,102,117,118,120,153,157,164,264,347,269,280,317,259,263,290,374,416,397,444,446,445,363,479,496,523,267,612,590,70],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":100,"Def":115,"SpAtk":30,"SpDef":65,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Although it always pretends to be a tree, its composition appears more similar to rock than to vegetation.","Species":"Imitation Pokémon","Height":1.2,"Weight":38,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":35,"Moves":[{"Level":1,"ID":452},{"Level":2,"ID":1},{"Level":3,"ID":175},{"Level":4,"ID":67},{"Level":5,"ID":88},{"Level":6,"ID":175},{"Level":8,"ID":67},{"Level":12,"ID":88},{"Level":15,"ID":102},{"Level":16,"ID":21},{"Level":19,"ID":185},{"Level":22,"ID":317},{"Level":26,"ID":335},{"Level":29,"ID":157},{"Level":33,"ID":68},{"Level":36,"ID":389},{"Level":40,"ID":38},{"Level":43,"ID":444},{"Level":47,"ID":359}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Sudowoodo +Number|185 +ExperienceType|1 +BaseExperience|144 +Type1|Rock +Type2| +CatchRate|65 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|438 +IsGenderLess|0 +CanBreed|1 +Devolution|438 +IsMale|50 +Ability1|5 +Ability2|69 +HiddenAbility|155 +EggMoves|174,111,203,106,29,205,328,120,446 +Machines|223,29,174,205,92,249,244,237,241,173,63,182,203,218,89,216,91,189,104,8,207,214,201,111,9,197,156,213,168,7,5,34,36,38,6,66,68,69,99,102,117,118,120,153,157,164,264,347,269,280,317,259,263,290,374,416,397,444,446,445,363,479,496,523,267,612,590,70 +BaseHP|70 +BaseAttack|100 +BaseDefense|115 +BaseSpAttack|30 +BaseSpDefense|65 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Although it always pretends to be a tree, its composition appears more similar to rock than to vegetation.\Imitation Pokémon\38\1.2\0,148,0 +Scale|1.08 +Move|1,452 +Move|1,383 +Move|1,175 +Move|1,67 +Move|1,88 +Move|5,175 +Move|8,67 +Move|12,88 +Move|15,102 +Move|15,21 +Move|19,185 +Move|22,317 +Move|26,335 +Move|29,157 +Move|33,68 +Move|36,389 +Move|40,38 +Move|43,444 +Move|47,359 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/186.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/186.dat index c0c743c00..8a4e34eb8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/186.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/186.dat @@ -1 +1,46 @@ -{"Name":"Politoed","Number":186,"ExperienceType":"MediumSlow","BaseExperience":225,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":60,"Devolution":61,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[11,6],"HiddenAbility":2,"EggMoves":[61,227,283,203,114,301,170,54,341,287,150,352,346],"Machines":[223,29,174,92,249,237,173,59,63,196,182,240,203,218,89,216,91,94,189,104,8,207,214,111,197,156,213,168,5,25,34,36,38,61,55,58,66,68,69,99,72,102,117,130,149,164,264,352,258,280,263,290,411,374,371,416,445,363,496,497,503,523,612,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":75,"Def":75,"SpAtk":90,"SpDef":100,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If POLIWAG and POLIWHIRL hear its echoing cry, they respond by gathering from far and wide.","Species":"Frog Pokémon","Height":1.1,"Weight":33.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":55,"Moves":[{"Level":1,"ID":61},{"Level":2,"ID":95},{"Level":3,"ID":3},{"Level":4,"ID":195},{"Level":27,"ID":207},{"Level":37,"ID":340},{"Level":48,"ID":304}],"EvolutionConditions":[],"Items":[{"Id":82,"Chance":5}]} \ No newline at end of file +Name|Politoed +Number|186 +ExperienceType|2 +BaseExperience|225 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|60 +IsGenderLess|0 +CanBreed|1 +Devolution|61 +IsMale|50 +Ability1|11 +Ability2|6 +HiddenAbility|2 +EggMoves|61,227,283,203,114,301,170,54,341,287,150,352,346 +Machines|223,29,174,92,249,237,173,59,63,196,182,240,203,218,89,216,91,94,189,104,8,207,214,111,197,156,213,168,5,25,34,36,38,61,55,58,66,68,69,99,72,102,117,130,149,164,264,352,258,280,263,290,411,374,371,416,445,363,496,497,503,523,612,590,57,70,250,127,291 +BaseHP|90 +BaseAttack|75 +BaseDefense|75 +BaseSpAttack|90 +BaseSpDefense|100 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If POLIWAG and POLIWHIRL hear its echoing cry, they respond by gathering from far and wide.\Frog Pokémon\33.9\1.1\0,148,0 +Scale|1.04 +Move|1,61 +Move|1,95 +Move|1,3 +Move|1,195 +Move|27,207 +Move|37,340 +Move|48,304 +TradeValue|55 +Item|5,82 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/187.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/187.dat index c1ee66b73..43a1d81e2 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/187.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/187.dat @@ -1 +1,58 @@ -{"Name":"Hoppip","Number":187,"ExperienceType":"MediumSlow","BaseExperience":50,"Type1":"Grass","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":187,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,102],"HiddenAbility":151,"EggMoves":[133,312,93,538,38,580,270,402,388,227,203,244,115,45,6],"Machines":[29,174,92,244,237,241,230,173,63,182,202,203,218,76,216,104,207,214,111,197,156,213,13,14,18,99,72,102,115,117,164,331,332,263,290,412,318,416,445,363,447,369,496,512,611,605,590,148],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":35,"Def":40,"SpAtk":35,"SpDef":55,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"To keep from being blown away by the wind, they gather in clusters. But they do enjoy gentle breezes.","Species":"Cottonweed Pokémon","Height":0.4,"Weight":0.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":5,"Moves":[{"Level":1,"ID":150},{"Level":4,"ID":235},{"Level":6,"ID":39},{"Level":8,"ID":33},{"Level":10,"ID":584},{"Level":12,"ID":77},{"Level":14,"ID":78},{"Level":16,"ID":79},{"Level":19,"ID":331},{"Level":22,"ID":73},{"Level":25,"ID":72},{"Level":28,"ID":512},{"Level":31,"ID":1},{"Level":34,"ID":178},{"Level":37,"ID":369},{"Level":40,"ID":1},{"Level":43,"ID":202},{"Level":46,"ID":340},{"Level":49,"ID":262}],"EvolutionConditions":[{"Condition":"18","ConditionType":"Level","Evolution":188,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Hoppip +Number|187 +ExperienceType|2 +BaseExperience|50 +Type1|Grass +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|187 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|34 +Ability2|102 +HiddenAbility|151 +EggMoves|133,312,93,538,38,580,270,402,388,227,203,244,115,45,6 +Machines|29,174,92,244,237,241,230,173,63,182,202,203,218,76,216,104,207,214,111,197,156,213,13,14,18,99,72,102,115,117,164,331,332,263,290,412,318,416,445,363,447,369,496,512,611,605,590,148 +BaseHP|35 +BaseAttack|35 +BaseDefense|40 +BaseSpAttack|35 +BaseSpDefense|55 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|To keep from being blown away by the wind, they gather in clusters. But they do enjoy gentle breezes.\Cottonweed Pokémon\0.5\0.4\0,148,0 +Scale|0.7 +Move|1,150 +Move|4,235 +Move|6,39 +Move|8,33 +Move|10,584 +Move|12,77 +Move|14,78 +Move|16,79 +Move|19,331 +Move|22,73 +Move|25,72 +Move|28,512 +Move|31,476 +Move|34,178 +Move|37,369 +Move|40,388 +Move|43,202 +Move|46,340 +Move|49,262 +TradeValue|5 +EvolutionCondition|188,Level,18,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/188.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/188.dat index 7f934c386..70d03b749 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/188.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/188.dat @@ -1 +1,61 @@ -{"Name":"Skiploom","Number":188,"ExperienceType":"MediumSlow","BaseExperience":119,"Type1":"Grass","Type2":"Flying","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":187,"Devolution":187,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,102],"HiddenAbility":151,"EggMoves":[133,312,93,538,38,580,270,402,388,227,203,244,115,45,6],"Machines":[29,174,92,244,237,241,230,173,63,182,202,203,218,76,216,104,207,214,111,197,156,213,13,14,18,99,72,102,115,117,164,331,332,263,290,412,318,416,445,363,447,369,496,512,611,605,590,148],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":45,"Def":50,"SpAtk":45,"SpDef":65,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"The bloom on top of its head opens and closes as the temperature fluctuates up and down.","Species":"Cottonweed Pokémon","Height":0.6,"Weight":1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":150},{"Level":2,"ID":235},{"Level":3,"ID":39},{"Level":4,"ID":33},{"Level":5,"ID":235},{"Level":6,"ID":39},{"Level":8,"ID":33},{"Level":10,"ID":584},{"Level":12,"ID":77},{"Level":14,"ID":78},{"Level":16,"ID":79},{"Level":20,"ID":331},{"Level":24,"ID":73},{"Level":28,"ID":72},{"Level":32,"ID":512},{"Level":36,"ID":1},{"Level":40,"ID":178},{"Level":44,"ID":369},{"Level":48,"ID":1},{"Level":52,"ID":202},{"Level":56,"ID":340},{"Level":60,"ID":262}],"EvolutionConditions":[{"Condition":"27","ConditionType":"Level","Evolution":189,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Skiploom +Number|188 +ExperienceType|2 +BaseExperience|119 +Type1|Grass +Type2|Flying +CatchRate|120 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|187 +IsGenderLess|0 +CanBreed|1 +Devolution|187 +IsMale|50 +Ability1|34 +Ability2|102 +HiddenAbility|151 +EggMoves|133,312,93,538,38,580,270,402,388,227,203,244,115,45,6 +Machines|29,174,92,244,237,241,230,173,63,182,202,203,218,76,216,104,207,214,111,197,156,213,13,14,18,99,72,102,115,117,164,331,332,263,290,412,318,416,445,363,447,369,496,512,611,605,590,148 +BaseHP|55 +BaseAttack|45 +BaseDefense|50 +BaseSpAttack|45 +BaseSpDefense|65 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|1 +CanSwim|0 +Pokedex|The bloom on top of its head opens and closes as the temperature fluctuates up and down.\Cottonweed Pokémon\1\0.6\0,148,0 +Scale|0.84 +Move|1,150 +Move|1,235 +Move|1,39 +Move|1,33 +Move|4,235 +Move|6,39 +Move|8,33 +Move|10,584 +Move|12,77 +Move|14,78 +Move|16,79 +Move|20,331 +Move|24,73 +Move|28,72 +Move|32,512 +Move|36,476 +Move|40,178 +Move|44,369 +Move|48,388 +Move|52,202 +Move|56,340 +Move|60,262 +TradeValue|15 +EvolutionCondition|189,Level,27,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/189.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/189.dat index 924ab2684..52e5bf5ee 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/189.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/189.dat @@ -1 +1,60 @@ -{"Name":"Jumpluff","Number":189,"ExperienceType":"MediumSlow","BaseExperience":203,"Type1":"Grass","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":187,"Devolution":188,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,102],"HiddenAbility":151,"EggMoves":[133,312,93,538,38,580,270,402,388,227,203,244,115,45,6],"Machines":[29,174,92,244,237,241,230,173,63,182,202,203,218,76,216,104,207,214,111,197,156,213,13,14,18,99,72,102,115,117,161,164,331,332,263,290,412,318,416,445,363,447,369,496,512,611,605,590,148],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":55,"Def":70,"SpAtk":55,"SpDef":95,"Speed":110},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":3},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"Once it catches the wind, it deftly controls its cotton-puff spores to float, even around the world.","Species":"Cottonweed Pokémon","Height":0.8,"Weight":3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":20,"Moves":[{"Level":1,"ID":150},{"Level":2,"ID":235},{"Level":3,"ID":39},{"Level":4,"ID":33},{"Level":5,"ID":235},{"Level":6,"ID":39},{"Level":8,"ID":33},{"Level":10,"ID":584},{"Level":12,"ID":77},{"Level":14,"ID":78},{"Level":16,"ID":79},{"Level":20,"ID":331},{"Level":24,"ID":73},{"Level":29,"ID":72},{"Level":34,"ID":512},{"Level":39,"ID":1},{"Level":44,"ID":178},{"Level":49,"ID":369},{"Level":54,"ID":1},{"Level":59,"ID":202},{"Level":64,"ID":340},{"Level":69,"ID":262}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Jumpluff +Number|189 +ExperienceType|2 +BaseExperience|203 +Type1|Grass +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|187 +IsGenderLess|0 +CanBreed|1 +Devolution|188 +IsMale|50 +Ability1|34 +Ability2|102 +HiddenAbility|151 +EggMoves|133,312,93,538,38,580,270,402,388,227,203,244,115,45,6 +Machines|29,174,92,244,237,241,230,173,63,182,202,203,218,76,216,104,207,214,111,197,156,213,13,14,18,99,72,102,115,117,161,164,331,332,263,290,412,318,416,445,363,447,369,496,512,611,605,590,148 +BaseHP|75 +BaseAttack|55 +BaseDefense|70 +BaseSpAttack|55 +BaseSpDefense|95 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|1 +CanSwim|0 +Pokedex|Once it catches the wind, it deftly controls its cotton-puff spores to float, even around the world.\Cottonweed Pokémon\3\0.8\0,148,0 +Scale|0.92 +Move|1,150 +Move|1,235 +Move|1,39 +Move|1,33 +Move|4,235 +Move|6,39 +Move|8,33 +Move|10,584 +Move|12,77 +Move|14,78 +Move|16,79 +Move|20,331 +Move|24,73 +Move|29,72 +Move|34,512 +Move|39,476 +Move|44,178 +Move|49,369 +Move|54,388 +Move|59,202 +Move|64,340 +Move|69,262 +TradeValue|20 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/18_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/18_mega.dat new file mode 100644 index 000000000..5b9d82ad9 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/18_mega.dat @@ -0,0 +1,54 @@ +Name|Mega Pidgeot +Number|18 +ExperienceType|2 +BaseExperience|211 +Type1|Normal +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|16 +IsGenderLess|0 +IsMale|50 +Ability1|99 +Ability2|Nothing +HiddenAbility|99 +EggMoves|314,403,413,432,185,193,228,211,253 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,38,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,526,590,19 +BaseHP|83 +BaseAttack|80 +BaseDefense|80 +BaseSpAttack|135 +BaseSpDefense|80 +BaseSpeed|121 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|0 +CanSwim|0 +Pokedex|Its well-developed chest muscles make it strong enough to whip up a gusty windstorm with just a few flaps.\Bird Pokémon\50.5\2.2\0,148,0 +Scale|1.3 +Move|1,16 +Move|1,28 +Move|1,33 +Move|1,98 +Move|1,542 +Move|5,28 +Move|9,16 +Move|13,98 +Move|17,18 +Move|22,239 +Move|27,297 +Move|32,97 +Move|38,17 +Move|44,355 +Move|50,366 +Move|56,119 +Move|62,403 +Move|68,542 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/19.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/19.dat index fdaaccf1f..7631456cb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/19.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/19.dat @@ -1 +1,51 @@ -{"Name":"Rattata","Number":19,"ExperienceType":"MediumFast","BaseExperience":51,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":19,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,62],"HiddenAbility":55,"EggMoves":[207,44,68,515,172,154,387,382,279,179,103,253],"Machines":[29,174,92,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,34,36,61,55,58,68,99,85,102,117,130,86,164,269,351,263,290,451,416,445,363,447,365,369,496,526,528,590,15],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":56,"Def":35,"SpAtk":25,"SpDef":35,"Speed":72},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It eats anything. Wherever food is available, it will settle down and produce offspring continuously.","Species":"Mouse Pokémon","Height":0.3,"Weight":3.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":39},{"Level":4,"ID":98},{"Level":7,"ID":116},{"Level":10,"ID":44},{"Level":13,"ID":228},{"Level":16,"ID":158},{"Level":19,"ID":389},{"Level":22,"ID":242},{"Level":25,"ID":372},{"Level":28,"ID":162},{"Level":31,"ID":38},{"Level":34,"ID":283}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":20,"Trigger":"LevelUp"}],"Items":[{"Id":2051,"Chance":5}]} \ No newline at end of file +Name|Rattata +Number|19 +ExperienceType|1 +BaseExperience|51 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|19 +IsGenderLess|0 +IsMale|50 +Ability1|50 +Ability2|62 +HiddenAbility|55 +EggMoves|207,44,68,515,172,154,387,382,279,179,103,253 +Machines|29,174,92,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,34,36,61,55,58,68,99,85,102,117,130,86,164,269,351,263,290,451,416,445,363,447,365,369,496,526,528,590,15 +BaseHP|30 +BaseAttack|56 +BaseDefense|35 +BaseSpAttack|25 +BaseSpDefense|35 +BaseSpeed|72 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It eats anything. Wherever food is available, it will settle down and produce offspring continuously.\Mouse Pokémon\3.5\0.3\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,39 +Move|4,98 +Move|7,116 +Move|10,44 +Move|13,228 +Move|16,158 +Move|19,389 +Move|22,242 +Move|25,372 +Move|28,162 +Move|31,38 +Move|34,283 +EvolutionCondition|20,Level,20,Level +Item|5,2051 +TradeValue|10 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/190.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/190.dat index 89d711b2b..13f64baba 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/190.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/190.dat @@ -1 +1,53 @@ -{"Name":"Aipom","Number":190,"ExperienceType":"Fast","BaseExperience":72,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":190,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,53],"HiddenAbility":92,"EggMoves":[97,340,68,343,3,252,228,501,279,103,21,180,415,251],"Machines":[223,29,174,92,192,249,237,241,173,63,182,203,218,231,216,189,104,8,207,214,129,111,9,197,156,213,7,210,171,5,34,36,6,66,68,69,99,102,117,118,130,161,164,264,352,351,263,290,289,416,445,363,468,496,514,526,612,590,70],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":70,"Def":55,"SpAtk":40,"SpDef":55,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its tail is so powerful that it can use it to grab a tree branch and hold itself up in the air.","Species":"Long Tail Pokémon","Height":0.8,"Weight":11.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":25,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":39},{"Level":4,"ID":28},{"Level":8,"ID":310},{"Level":11,"ID":226},{"Level":15,"ID":321},{"Level":18,"ID":154},{"Level":22,"ID":129},{"Level":25,"ID":103},{"Level":29,"ID":97},{"Level":32,"ID":458},{"Level":36,"ID":374},{"Level":39,"ID":417},{"Level":43,"ID":387}],"EvolutionConditions":[{"Condition":"458","ConditionType":"Move","Evolution":424,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Aipom +Number|190 +ExperienceType|0 +BaseExperience|72 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|190 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|50 +Ability2|53 +HiddenAbility|92 +EggMoves|97,340,68,343,3,252,228,501,279,103,21,180,415,251 +Machines|223,29,174,92,192,249,237,241,173,63,182,203,218,231,216,189,104,8,207,214,129,111,9,197,156,213,7,210,171,5,34,36,6,66,68,69,99,102,117,118,130,161,164,264,352,351,263,290,289,416,445,363,468,496,514,526,612,590,70 +BaseHP|55 +BaseAttack|70 +BaseDefense|55 +BaseSpAttack|40 +BaseSpDefense|55 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Its tail is so powerful that it can use it to grab a tree branch and hold itself up in the air.\Long Tail Pokémon\11.5\0.8\0,148,0 +Scale|0.92 +Move|1,10 +Move|1,39 +Move|4,28 +Move|8,310 +Move|11,226 +Move|15,321 +Move|18,154 +Move|22,129 +Move|25,103 +Move|29,97 +Move|32,458 +Move|36,374 +Move|39,417 +Move|43,387 +TradeValue|25 +EvolutionCondition|424,move,458,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/191.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/191.dat index c273834dd..d2449fcd5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/191.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/191.dat @@ -1 +1,56 @@ -{"Name":"Sunkern","Number":191,"ExperienceType":"MediumSlow","BaseExperience":36,"Type1":"Grass","Type2":"Blank","CatchRate":235,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":191,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,94],"HiddenAbility":48,"EggMoves":[117,174,227,203,320,580,270,275,73,234,363,267,230],"Machines":[174,92,237,241,230,173,63,182,202,203,218,216,104,207,214,197,156,213,99,72,102,117,164,331,263,290,412,416,445,363,496,267,590,148],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":30,"Def":30,"SpAtk":30,"SpDef":30,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It may plummet from the sky. If attacked by a SPEAROW, it will violently shake its leaves.","Species":"Seed Pokémon","Height":0.3,"Weight":1.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":71},{"Level":2,"ID":74},{"Level":4,"ID":275},{"Level":7,"ID":320},{"Level":10,"ID":72},{"Level":13,"ID":73},{"Level":16,"ID":75},{"Level":19,"ID":1},{"Level":22,"ID":202},{"Level":25,"ID":283},{"Level":28,"ID":235},{"Level":31,"ID":363},{"Level":34,"ID":76},{"Level":37,"ID":38},{"Level":40,"ID":241},{"Level":43,"ID":402}],"EvolutionConditions":[{"Condition":"169","ConditionType":"Item","Evolution":192,"Trigger":"ItemUse"}],"Items":[{"Id":2043,"Chance":5}]} \ No newline at end of file +Name|Sunkern +Number|191 +ExperienceType|2 +BaseExperience|36 +Type1|Grass +Type2| +CatchRate|235 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|191 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|34 +Ability2|94 +HiddenAbility|48 +EggMoves|117,174,227,203,320,580,270,275,73,234,363,267,230 +Machines|174,92,237,241,230,173,63,182,202,203,218,216,104,207,214,197,156,213,99,72,102,117,164,331,263,290,412,416,445,363,496,267,590,148 +BaseHP|30 +BaseAttack|30 +BaseDefense|30 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It may plummet from the sky. If attacked by a SPEAROW, it will violently shake its leaves.\Seed Pokémon\1.8\0.3\0,148,0 +Scale|0.7 +Move|1,71 +Move|1,74 +Move|4,275 +Move|7,320 +Move|10,72 +Move|13,73 +Move|16,75 +Move|19,388 +Move|22,202 +Move|25,283 +Move|28,235 +Move|31,363 +Move|34,76 +Move|37,38 +Move|40,241 +Move|43,402 +TradeValue|15 +Item|5,2043 +EvolutionCondition|192,item,169,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/192.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/192.dat index 022f4c389..7cde97793 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/192.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/192.dat @@ -1 +1,57 @@ -{"Name":"Sunflora","Number":192,"ExperienceType":"MediumSlow","BaseExperience":149,"Type1":"Grass","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":191,"Devolution":191,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,94],"HiddenAbility":48,"EggMoves":[117,174,227,203,320,580,270,275,73,234,363,267,230],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,197,156,213,36,99,72,102,117,164,331,263,290,412,416,445,363,496,267,590,148],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":75,"Def":55,"SpAtk":105,"SpDef":85,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It converts sunlight into energy. In the darkness after sunset, it closes its petals and becomes still.","Species":"Sun Pokémon","Height":0.8,"Weight":8.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":35,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":71},{"Level":3,"ID":1},{"Level":4,"ID":74},{"Level":5,"ID":275},{"Level":7,"ID":320},{"Level":10,"ID":72},{"Level":13,"ID":73},{"Level":16,"ID":75},{"Level":19,"ID":1},{"Level":22,"ID":202},{"Level":25,"ID":331},{"Level":28,"ID":80},{"Level":31,"ID":363},{"Level":34,"ID":76},{"Level":37,"ID":38},{"Level":40,"ID":241},{"Level":43,"ID":437},{"Level":50,"ID":572}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Sunflora +Number|192 +ExperienceType|2 +BaseExperience|149 +Type1|Grass +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|191 +IsGenderLess|0 +CanBreed|1 +Devolution|191 +IsMale|50 +Ability1|34 +Ability2|94 +HiddenAbility|48 +EggMoves|117,174,227,203,320,580,270,275,73,234,363,267,230 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,197,156,213,36,99,72,102,117,164,331,263,290,412,416,445,363,496,267,590,148 +BaseHP|75 +BaseAttack|75 +BaseDefense|55 +BaseSpAttack|105 +BaseSpDefense|85 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It converts sunlight into energy. In the darkness after sunset, it closes its petals and becomes still.\Sun Pokémon\8.5\0.8\0,148,0 +Scale|0.92 +Move|1,579 +Move|1,71 +Move|1,1 +Move|1,74 +Move|4,275 +Move|7,320 +Move|10,72 +Move|13,73 +Move|16,75 +Move|19,388 +Move|22,202 +Move|25,331 +Move|28,80 +Move|31,363 +Move|34,76 +Move|37,38 +Move|40,241 +Move|43,437 +Move|50,572 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/193.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/193.dat index d5fb64ad7..724041a1e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/193.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/193.dat @@ -1 +1,56 @@ -{"Name":"Yanma","Number":193,"ExperienceType":"MediumFast","BaseExperience":78,"Type1":"Bug","Type2":"Flying","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":193,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[3,14],"HiddenAbility":119,"EggMoves":[38,364,185,141,228,179,290,324,318,18],"Machines":[29,174,92,237,241,173,63,182,202,203,218,76,216,94,247,104,207,214,129,138,197,156,213,168,211,13,18,36,99,72,102,117,164,332,263,290,355,318,416,432,445,363,369,496,590,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":65,"Def":45,"SpAtk":75,"SpDef":45,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"If it flaps its wings really fast it can generate shock waves that will shatter windows in the area.","Species":"Clear Wing Pokémon","Height":1.2,"Weight":38,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":35,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":193},{"Level":6,"ID":98},{"Level":11,"ID":104},{"Level":14,"ID":49},{"Level":17,"ID":197},{"Level":22,"ID":48},{"Level":27,"ID":253},{"Level":30,"ID":228},{"Level":33,"ID":246},{"Level":38,"ID":95},{"Level":43,"ID":17},{"Level":46,"ID":103},{"Level":49,"ID":369},{"Level":54,"ID":403},{"Level":57,"ID":405}],"EvolutionConditions":[{"Condition":"246","ConditionType":"Move","Evolution":469,"Trigger":"LevelUp"}],"Items":[{"Id":171,"Chance":5}]} \ No newline at end of file +Name|Yanma +Number|193 +ExperienceType|1 +BaseExperience|78 +Type1|Bug +Type2|Flying +CatchRate|75 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|193 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|3 +Ability2|14 +HiddenAbility|119 +EggMoves|38,364,185,141,228,179,290,324,318,18 +Machines|29,174,92,237,241,173,63,182,202,203,218,76,216,94,247,104,207,214,129,138,197,156,213,168,211,13,18,36,99,72,102,117,164,332,263,290,355,318,416,432,445,363,369,496,590,148 +BaseHP|65 +BaseAttack|65 +BaseDefense|45 +BaseSpAttack|75 +BaseSpDefense|45 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|1 +CanSwim|0 +Pokedex|If it flaps its wings really fast it can generate shock waves that will shatter windows in the area.\Clear Wing Pokémon\38\1.2\0,148,0 +Scale|1.08 +Move|1,33 +Move|1,193 +Move|6,98 +Move|11,104 +Move|14,49 +Move|17,197 +Move|22,48 +Move|27,253 +Move|30,228 +Move|33,246 +Move|38,95 +Move|43,17 +Move|46,103 +Move|49,369 +Move|54,403 +Move|57,405 +TradeValue|35 +Item|5,171 +EvolutionCondition|469,move,246,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/194.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/194.dat index 64c3fd412..9c88786ab 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/194.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/194.dat @@ -1 +1,52 @@ -{"Name":"Wooper","Number":194,"ExperienceType":"MediumFast","BaseExperience":42,"Type1":"Water","Type2":"Ground","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":194,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[6,11],"HiddenAbility":109,"EggMoves":[491,495,246,34,68,174,24,598,227,385,300,105,214,255,254,256,219],"Machines":[223,29,174,205,92,249,237,173,59,63,182,240,203,218,231,89,216,91,189,104,8,207,214,188,201,111,197,156,213,34,36,61,55,58,99,102,117,164,352,258,219,263,290,416,445,363,482,496,503,523,611,590,57,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":45,"Def":45,"SpAtk":25,"SpDef":25,"Speed":15},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon lives in cold water. It will leave the water to search for food when it gets cold outside.","Species":"Water Fish Pokémon","Height":0.4,"Weight":8.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":55},{"Level":2,"ID":39},{"Level":5,"ID":300},{"Level":9,"ID":341},{"Level":15,"ID":21},{"Level":19,"ID":426},{"Level":23,"ID":133},{"Level":29,"ID":281},{"Level":33,"ID":89},{"Level":37,"ID":240},{"Level":43,"ID":54},{"Level":44,"ID":114},{"Level":47,"ID":330}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":195,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Wooper +Number|194 +ExperienceType|1 +BaseExperience|42 +Type1|Water +Type2|Ground +CatchRate|255 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|194 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|6 +Ability2|11 +HiddenAbility|109 +EggMoves|491,495,246,34,68,174,24,598,227,385,300,105,214,255,254,256,219 +Machines|223,29,174,205,92,249,237,173,59,63,182,240,203,218,231,89,216,91,189,104,8,207,214,188,201,111,197,156,213,34,36,61,55,58,99,102,117,164,352,258,219,263,290,416,445,363,482,496,503,523,611,590,57,148,250,127,291 +BaseHP|55 +BaseAttack|45 +BaseDefense|45 +BaseSpAttack|25 +BaseSpDefense|25 +BaseSpeed|15 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon lives in cold water. It will leave the water to search for food when it gets cold outside.\Water Fish Pokémon\8.5\0.4\0,148,0 +Scale|0.7 +Move|1,55 +Move|1,39 +Move|5,300 +Move|9,341 +Move|15,21 +Move|19,426 +Move|23,133 +Move|29,281 +Move|33,89 +Move|37,240 +Move|43,54 +Move|43,114 +Move|47,330 +TradeValue|10 +EvolutionCondition|195,Level,20,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/195.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/195.dat index 99f71bbb5..efb5ad737 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/195.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/195.dat @@ -1 +1,52 @@ -{"Name":"Quagsire","Number":195,"ExperienceType":"MediumFast","BaseExperience":151,"Type1":"Water","Type2":"Ground","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":194,"Devolution":194,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[6,11],"HiddenAbility":109,"EggMoves":[491,495,246,34,68,174,24,598,227,385,300,214,105,255,254,256,219],"Machines":[223,29,174,205,92,249,237,173,59,63,182,240,203,218,231,89,216,91,189,104,8,207,214,188,201,111,197,156,213,168,5,34,36,38,61,55,58,6,68,69,99,90,102,117,130,157,164,264,352,258,219,280,317,263,290,411,374,416,444,445,363,482,496,503,523,611,612,590,57,70,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":85,"Def":85,"SpAtk":65,"SpDef":65,"Speed":35},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This carefree Pokémon has an easy-going nature. While swimming, it always bumps into boat hulls.","Species":"Water Fish Pokémon","Height":1.4,"Weight":75,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":25,"Moves":[{"Level":1,"ID":55},{"Level":2,"ID":39},{"Level":3,"ID":300},{"Level":5,"ID":300},{"Level":9,"ID":341},{"Level":15,"ID":21},{"Level":19,"ID":426},{"Level":24,"ID":133},{"Level":31,"ID":281},{"Level":36,"ID":89},{"Level":41,"ID":240},{"Level":48,"ID":54},{"Level":49,"ID":114},{"Level":53,"ID":330}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Quagsire +Number|195 +ExperienceType|1 +BaseExperience|151 +Type1|Water +Type2|Ground +CatchRate|90 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|194 +IsGenderLess|0 +CanBreed|1 +Devolution|194 +IsMale|50 +Ability1|6 +Ability2|11 +HiddenAbility|109 +EggMoves|491,495,246,34,68,174,24,598,227,385,300,214,105,255,254,256,219 +Machines|223,29,174,205,92,249,237,173,59,63,182,240,203,218,231,89,216,91,189,104,8,207,214,188,201,111,197,156,213,168,5,34,36,38,61,55,58,6,68,69,99,90,102,117,130,157,164,264,352,258,219,280,317,263,290,411,374,416,444,445,363,482,496,503,523,611,612,590,57,70,148,250,127,291 +BaseHP|95 +BaseAttack|85 +BaseDefense|85 +BaseSpAttack|65 +BaseSpDefense|65 +BaseSpeed|35 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This carefree Pokémon has an easy-going nature. While swimming, it always bumps into boat hulls.\Water Fish Pokémon\75\1.4\0,148,0 +Scale|1.16 +Move|1,55 +Move|1,39 +Move|1,300 +Move|5,300 +Move|9,341 +Move|15,21 +Move|19,426 +Move|24,133 +Move|31,281 +Move|36,89 +Move|41,240 +Move|48,54 +Move|48,114 +Move|53,330 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/196.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/196.dat index badae5fad..c7d1d4ea5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/196.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/196.dat @@ -1 +1,52 @@ -{"Name":"Espeon","Number":196,"ExperienceType":"MediumFast","BaseExperience":184,"Type1":"Psychic","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":133,"Devolution":133,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[28],"HiddenAbility":156,"EggMoves":[445,204,343,174,197,203,313,175,363,500,485,321,273,281],"Machines":[29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,91,94,247,189,104,207,214,129,138,197,156,213,171,25,34,36,38,99,100,102,115,117,130,149,164,347,113,263,290,285,416,445,363,447,433,473,477,496,497,514,526,605,590,15,148,560],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":65,"Def":60,"SpAtk":130,"SpDef":95,"Speed":110},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It uses the fine hair that covers its body to sense air currents and predict its enemy's actions.","Species":"Sun Pokémon","Height":0.9,"Weight":26.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":39},{"Level":5,"ID":28},{"Level":9,"ID":93},{"Level":13,"ID":98},{"Level":17,"ID":129},{"Level":20,"ID":60},{"Level":25,"ID":248},{"Level":29,"ID":244},{"Level":33,"ID":234},{"Level":37,"ID":94},{"Level":41,"ID":387},{"Level":45,"ID":384}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Espeon +Number|196 +ExperienceType|1 +BaseExperience|184 +Type1|Psychic +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|133 +IsGenderLess|0 +CanBreed|1 +Devolution|133 +IsMale|87.5 +Ability1|28 +Ability2|Nothing +HiddenAbility|156 +EggMoves|445,204,343,174,197,203,313,175,363,500,485,321,273,281 +Machines|29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,91,94,247,189,104,207,214,129,138,197,156,213,171,25,34,36,38,99,100,102,115,117,130,149,164,347,113,263,290,285,416,445,363,447,433,473,477,496,497,514,526,605,590,15,148,560 +BaseHP|65 +BaseAttack|65 +BaseDefense|60 +BaseSpAttack|130 +BaseSpDefense|95 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It uses the fine hair that covers its body to sense air currents and predict its enemy's actions.\Sun Pokémon\26.5\0.9\0,148,0 +Scale|0.96 +Move|1,270 +Move|1,33 +Move|1,39 +Move|5,28 +Move|9,93 +Move|13,98 +Move|17,129 +Move|20,60 +Move|25,248 +Move|29,244 +Move|33,234 +Move|37,94 +Move|41,387 +Move|45,384 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/197.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/197.dat index 024a04ed3..0b62c1611 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/197.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/197.dat @@ -1 +1,52 @@ -{"Name":"Umbreon","Number":197,"ExperienceType":"MediumFast","BaseExperience":184,"Type1":"Dark","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":133,"Devolution":133,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[28],"HiddenAbility":39,"EggMoves":[445,204,343,174,197,203,313,175,363,500,485,321,273,281],"Machines":[15,63,29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,91,94,247,189,104,207,214,129,138,197,156,213,171,25,34,36,38,99,102,117,130,164,269,259,263,290,289,371,416,445,399,363,496,497,514,526,555,590,15,148,56091,92,94,104,138,148,156,164,182,207,213,216,218,237,240,241,244,247,259,263,269,371,416,496,497,514,526,555,29,189,560],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":65,"Def":110,"SpAtk":60,"SpDef":130,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When agitated, this Pokémon protects itself by spraying poisonous sweat from its pores.","Species":"Moonlight Pokémon","Height":1,"Weight":27,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":39},{"Level":5,"ID":28},{"Level":9,"ID":228},{"Level":13,"ID":98},{"Level":17,"ID":109},{"Level":20,"ID":185},{"Level":25,"ID":372},{"Level":29,"ID":103},{"Level":33,"ID":236},{"Level":37,"ID":212},{"Level":41,"ID":387},{"Level":45,"ID":385}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Umbreon +Number|197 +ExperienceType|1 +BaseExperience|184 +Type1|Dark +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|133 +IsGenderLess|0 +CanBreed|1 +Devolution|133 +IsMale|87.5 +Ability1|28 +Ability2|Nothing +HiddenAbility|39 +EggMoves|445,204,343,174,197,203,313,175,363,500,485,321,273,281 +Machines|15,63,29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,91,94,247,189,104,207,214,129,138,197,156,213,171,25,34,36,38,99,102,117,130,164,269,259,263,290,289,371,416,445,399,363,496,497,514,526,555,590,15,148,56091,92,94,104,138,148,156,164,182,207,213,216,218,237,240,241,244,247,259,263,269,371,416,496,497,514,526,555,29,189,560 +BaseHP|95 +BaseAttack|65 +BaseDefense|110 +BaseSpAttack|60 +BaseSpDefense|130 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When agitated, this Pokémon protects itself by spraying poisonous sweat from its pores.\Moonlight Pokémon\27\1\0,148,0 +Scale|1 +Move|1,270 +Move|1,33 +Move|1,39 +Move|5,28 +Move|9,228 +Move|13,98 +Move|17,109 +Move|20,185 +Move|25,372 +Move|29,103 +Move|33,236 +Move|37,212 +Move|41,387 +Move|45,385 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/198.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/198.dat index 2f0316725..7468aa07c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/198.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/198.dat @@ -1 +1,54 @@ -{"Name":"Murkrow","Number":198,"ExperienceType":"MediumSlow","BaseExperience":81,"Type1":"Dark","Type2":"Flying","CatchRate":30,"BaseFriendship":35,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":198,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[15,105],"HiddenAbility":158,"EggMoves":[372,413,109,65,297,185,260,119,195,375,355,103,143,18,17,98],"Machines":[174,92,244,237,241,173,63,196,182,203,218,216,94,247,189,104,207,214,129,138,197,156,213,168,211,171,13,18,36,6,99,102,117,143,86,164,347,269,332,259,263,290,289,355,373,371,416,432,445,399,363,365,477,496,511,514,555,590,19],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":85,"Def":42,"SpAtk":85,"SpDef":42,"Speed":91},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Feared and loathed by many, it is believed to bring misfortune to all those who see it at night.","Species":"Darkness Pokémon","Height":0.5,"Weight":2.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":64},{"Level":2,"ID":310},{"Level":5,"ID":228},{"Level":11,"ID":114},{"Level":15,"ID":17},{"Level":21,"ID":101},{"Level":25,"ID":372},{"Level":31,"ID":269},{"Level":35,"ID":185},{"Level":41,"ID":212},{"Level":45,"ID":1},{"Level":50,"ID":366},{"Level":55,"ID":389},{"Level":61,"ID":259},{"Level":65,"ID":1}],"EvolutionConditions":[{"Condition":"136","ConditionType":"Item","Evolution":430,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Murkrow +Number|198 +ExperienceType|2 +BaseExperience|81 +Type1|Dark +Type2|Flying +CatchRate|30 +BaseFriendship|35 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|198 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|15 +Ability2|105 +HiddenAbility|158 +EggMoves|372,413,109,65,297,185,260,119,195,375,355,103,143,18,17,98 +Machines|174,92,244,237,241,173,63,196,182,203,218,216,94,247,189,104,207,214,129,138,197,156,213,168,211,171,13,18,36,6,99,102,117,143,86,164,347,269,332,259,263,290,289,355,373,371,416,432,445,399,363,365,477,496,511,514,555,590,19 +BaseHP|60 +BaseAttack|85 +BaseDefense|42 +BaseSpAttack|85 +BaseSpDefense|42 +BaseSpeed|91 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Feared and loathed by many, it is believed to bring misfortune to all those who see it at night.\Darkness Pokémon\2.1\0.5\0,148,0 +Scale|0.7 +Move|1,64 +Move|1,310 +Move|5,228 +Move|11,114 +Move|15,17 +Move|21,101 +Move|25,372 +Move|31,269 +Move|35,185 +Move|41,212 +Move|45,492 +Move|50,366 +Move|55,389 +Move|61,259 +Move|65,511 +TradeValue|35 +EvolutionCondition|430,item,136,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/199.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/199.dat index 3cf4d4e6d..3d75b64ba 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/199.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/199.dat @@ -1 +1,58 @@ -{"Name":"Slowking","Number":199,"ExperienceType":"MediumFast","BaseExperience":172,"Type1":"Water","Type2":"Psychic","CatchRate":70,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":79,"Devolution":79,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[12,20],"HiddenAbility":144,"EggMoves":[562,187,335,248,382,300,214,173,23,472,428,219],"Machines":[223,29,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,231,89,216,91,94,247,189,104,8,207,214,129,138,197,156,213,210,171,5,34,36,38,61,55,58,6,66,68,69,99,90,100,102,117,130,86,149,161,164,264,352,347,258,113,219,280,53,263,290,285,411,362,374,409,278,416,419,445,363,447,433,473,477,496,497,503,510,511,523,525,612,590,57,70,148,250,291],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":75,"Def":80,"SpAtk":100,"SpDef":110,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has incredible intellect and intuition. Whatever the situation, it remains calm and collected.","Species":"Royal Pokémon","Height":2,"Weight":79.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":50,"Moves":[{"Level":1,"ID":505},{"Level":2,"ID":408},{"Level":3,"ID":237},{"Level":4,"ID":174},{"Level":5,"ID":281},{"Level":6,"ID":33},{"Level":7,"ID":45},{"Level":9,"ID":55},{"Level":14,"ID":93},{"Level":19,"ID":1},{"Level":23,"ID":29},{"Level":28,"ID":352},{"Level":32,"ID":428},{"Level":36,"ID":417},{"Level":41,"ID":207},{"Level":45,"ID":94},{"Level":49,"ID":376},{"Level":54,"ID":244},{"Level":58,"ID":505}],"EvolutionConditions":[],"Items":[{"Id":82,"Chance":5}]} \ No newline at end of file +Name|Slowking +Number|199 +ExperienceType|1 +BaseExperience|172 +Type1|Water +Type2|Psychic +CatchRate|70 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|79 +IsGenderLess|0 +CanBreed|1 +Devolution|79 +IsMale|50 +Ability1|12 +Ability2|20 +HiddenAbility|144 +EggMoves|562,187,335,248,382,300,214,173,23,472,428,219 +Machines|223,29,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,231,89,216,91,94,247,189,104,8,207,214,129,138,197,156,213,210,171,5,34,36,38,61,55,58,6,66,68,69,99,90,100,102,117,130,86,149,161,164,264,352,347,258,113,219,280,53,263,290,285,411,362,374,409,278,416,419,445,363,447,433,473,477,496,497,503,510,511,523,525,612,590,57,70,148,250,291 +BaseHP|95 +BaseAttack|75 +BaseDefense|80 +BaseSpAttack|100 +BaseSpDefense|110 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has incredible intellect and intuition. Whatever the situation, it remains calm and collected.\Royal Pokémon\79.5\2\0,148,0 +Scale|1.4 +Move|1,505 +Move|1,408 +Move|1,237 +Move|1,174 +Move|1,281 +Move|1,33 +Move|5,45 +Move|9,55 +Move|14,93 +Move|19,50 +Move|23,29 +Move|28,352 +Move|32,428 +Move|36,417 +Move|41,207 +Move|45,94 +Move|49,376 +Move|54,244 +Move|58,505 +TradeValue|50 +Item|5,82 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/2.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/2.dat index b3929eea2..02e8941d9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/2.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/2.dat @@ -1 +1,53 @@ -{"Name":"Ivysaur","Number":2,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Grass","Type2":"Poison","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":1,"Devolution":1,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":34,"EggMoves":[133,204,174,203,202,320,275,437,345,267,80,438,130,124,580],"Machines":[29,174,92,249,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,188,111,197,156,213,210,14,34,36,99,72,102,117,164,331,113,219,263,290,412,416,445,363,447,474,496,497,267,590,15,70,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":62,"Def":63,"SpAtk":80,"SpDef":80,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Exposure to sunlight adds to its strength. Sunlight also makes the bud on its back grow larger.","Species":"Seed Pokémon","Height":1,"Weight":13,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":3,"ID":73},{"Level":4,"ID":45},{"Level":7,"ID":73},{"Level":9,"ID":22},{"Level":13,"ID":77},{"Level":14,"ID":79},{"Level":15,"ID":36},{"Level":20,"ID":75},{"Level":23,"ID":230},{"Level":28,"ID":74},{"Level":31,"ID":38},{"Level":36,"ID":1},{"Level":39,"ID":235},{"Level":44,"ID":76}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":3,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Ivysaur +Number|2 +ExperienceType|2 +BaseExperience|142 +Type1|Grass +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|1 +IsGenderLess|0 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|34 +EggMoves|133,204,174,203,202,320,275,437,345,267,80,438,130,124,580 +Machines|29,174,92,249,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,188,111,197,156,213,210,14,34,36,99,72,102,117,164,331,113,219,263,290,412,416,445,363,447,474,496,497,267,590,15,70,148 +BaseHP|60 +BaseAttack|62 +BaseDefense|63 +BaseSpAttack|80 +BaseSpDefense|80 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Exposure to sunlight adds to its strength. Sunlight also makes the bud on its back grow larger.\Seed Pokémon\13\1\0,148,0 +Scale|1 +Move|1,33 +Move|1,45 +Move|1,73 +Move|3,45 +Move|7,73 +Move|9,22 +Move|13,77 +Move|13,79 +Move|15,36 +Move|20,75 +Move|23,230 +Move|28,74 +Move|31,38 +Move|36,388 +Move|39,235 +Move|44,76 +EvolutionCondition|3,Level,32,Level +TradeValue|60 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/20.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/20.dat index 72d55da9b..80d57153b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/20.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/20.dat @@ -1 +1,54 @@ -{"Name":"Raticate","Number":20,"ExperienceType":"MediumFast","BaseExperience":145,"Type1":"Normal","Type2":"Blank","CatchRate":127,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":19,"Devolution":19,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,62],"HiddenAbility":55,"EggMoves":[207,44,68,515,172,154,387,382,279,179,103,253],"Machines":[29,174,92,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,34,36,38,61,55,58,68,99,85,102,117,130,86,164,269,351,263,290,451,416,445,363,447,365,369,496,526,528,590,15,70],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":81,"Def":60,"SpAtk":50,"SpDef":70,"Speed":97},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Gnaws on anything with its tough fangs. It can even topple concrete buildings by gnawing on them.","Species":"Mouse Pokémon","Height":0.7,"Weight":18.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":20,"Moves":[{"Level":1,"ID":14},{"Level":2,"ID":33},{"Level":3,"ID":39},{"Level":4,"ID":98},{"Level":5,"ID":116},{"Level":6,"ID":98},{"Level":7,"ID":116},{"Level":10,"ID":44},{"Level":13,"ID":228},{"Level":16,"ID":158},{"Level":19,"ID":389},{"Level":20,"ID":184},{"Level":24,"ID":242},{"Level":29,"ID":372},{"Level":34,"ID":162},{"Level":39,"ID":38},{"Level":44,"ID":283}],"EvolutionConditions":[],"Items":[{"Id":2051,"Chance":5}]} \ No newline at end of file +Name|Raticate +Number|20 +ExperienceType|1 +BaseExperience|145 +Type1|Normal +Type2| +CatchRate|127 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|19 +IsGenderLess|0 +IsMale|50 +Ability1|50 +Ability2|62 +HiddenAbility|55 +EggMoves|207,44,68,515,172,154,387,382,279,179,103,253 +Machines|29,174,92,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,34,36,38,61,55,58,68,99,85,102,117,130,86,164,269,351,263,290,451,416,445,363,447,365,369,496,526,528,590,15,70 +BaseHP|55 +BaseAttack|81 +BaseDefense|60 +BaseSpAttack|50 +BaseSpDefense|70 +BaseSpeed|97 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Gnaws on anything with its tough fangs. It can even topple concrete buildings by gnawing on them.\Mouse Pokémon\18.5\0.7\0,148,0 +Scale|0.88 +Move|1,14 +Move|1,33 +Move|1,39 +Move|1,98 +Move|1,116 +Move|4,98 +Move|7,116 +Move|10,44 +Move|13,228 +Move|16,158 +Move|19,389 +Move|20,184 +Move|24,242 +Move|29,372 +Move|34,162 +Move|39,38 +Move|44,283 +Item|5,2051 +TradeValue|20 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/200.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/200.dat index aefc279f6..e7eeb7349 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/200.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/200.dat @@ -1 +1,53 @@ -{"Name":"Misdreavus","Number":200,"ExperienceType":"Fast","BaseExperience":87,"Type1":"Ghost","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":200,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[174,194,286,262,417,466,103,425,285,180,389,472,244],"Machines":[29,174,92,192,244,237,241,173,63,182,240,203,218,87,216,94,247,104,207,214,129,111,138,197,156,213,168,171,58,99,85,102,117,86,149,164,347,269,351,332,259,263,290,285,289,451,261,373,371,416,445,399,363,433,477,496,497,605,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":60,"Def":60,"SpAtk":85,"SpDef":85,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"It likes playing mischievous tricks such as screaming and wailing to startle people at night. ","Species":"Screech Pokémon","Height":0.7,"Weight":1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":25,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":149},{"Level":5,"ID":180},{"Level":10,"ID":310},{"Level":14,"ID":109},{"Level":19,"ID":212},{"Level":23,"ID":506},{"Level":28,"ID":60},{"Level":32,"ID":220},{"Level":37,"ID":371},{"Level":41,"ID":247},{"Level":46,"ID":195},{"Level":50,"ID":1},{"Level":55,"ID":408}],"EvolutionConditions":[{"Condition":"136","ConditionType":"Item","Evolution":429,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Misdreavus +Number|200 +ExperienceType|0 +BaseExperience|87 +Type1|Ghost +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|200 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|174,194,286,262,417,466,103,425,285,180,389,472,244 +Machines|29,174,92,192,244,237,241,173,63,182,240,203,218,87,216,94,247,104,207,214,129,111,138,197,156,213,168,171,58,99,85,102,117,86,149,164,347,269,351,332,259,263,290,285,289,451,261,373,371,416,445,399,363,433,477,496,497,605,590,148 +BaseHP|60 +BaseAttack|60 +BaseDefense|60 +BaseSpAttack|85 +BaseSpDefense|85 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|It likes playing mischievous tricks such as screaming and wailing to startle people at night. \Screech Pokémon\1\0.7\0,148,0 +Scale|0.88 +Move|1,45 +Move|1,149 +Move|5,180 +Move|10,310 +Move|14,109 +Move|19,212 +Move|23,506 +Move|28,60 +Move|32,220 +Move|37,371 +Move|41,247 +Move|46,195 +Move|50,288 +Move|55,408 +TradeValue|25 +EvolutionCondition|429,item,136,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/201.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/201.dat index 89e67fb31..c22ac9a67 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/201.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/201.dat @@ -1 +1,38 @@ -{"Name":"Unown","Number":201,"ExperienceType":"MediumFast","BaseExperience":118,"Type1":"Psychic","Type2":"Blank","CatchRate":225,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":201,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":48,"Atk":72,"Def":48,"SpAtk":72,"SpDef":48,"Speed":48},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"Their shapes look like hieroglyphs on ancient tablets. It is said that the two are somehow related.","Species":"Symbol Pokémon","Height":0.5,"Weight":5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":237}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Unown +Number|201 +ExperienceType|1 +BaseExperience|118 +Type1|Psychic +Type2| +CatchRate|225 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|201 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines| +BaseHP|48 +BaseAttack|72 +BaseDefense|48 +BaseSpAttack|72 +BaseSpDefense|48 +BaseSpeed|48 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|Their shapes look like hieroglyphs on ancient tablets. It is said that the two are somehow related.\Symbol Pokémon\5\0.5\0,148,0 +Scale|0.7 +Move|1,237 +TradeValue|10 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/202.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/202.dat index 2e5e05fd2..1185bb3ee 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/202.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/202.dat @@ -1 +1,41 @@ -{"Name":"Wobbuffet","Number":202,"ExperienceType":"MediumFast","BaseExperience":142,"Type1":"Psychic","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":360,"Devolution":360,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[23],"HiddenAbility":140,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":190,"Atk":33,"Def":58,"SpAtk":33,"SpDef":58,"Speed":33},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It hates light and shock. If attacked, it inflates its body to build up its counterstrike.","Species":"Patient Pokémon","Height":1.3,"Weight":28.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":30,"Moves":[{"Level":1,"ID":68},{"Level":2,"ID":243},{"Level":3,"ID":219},{"Level":4,"ID":194}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Wobbuffet +Number|202 +ExperienceType|1 +BaseExperience|142 +Type1|Psychic +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|360 +IsGenderLess|0 +CanBreed|1 +Devolution|360 +IsMale|50 +Ability1|23 +Ability2|Nothing +HiddenAbility|140 +Machines| +BaseHP|190 +BaseAttack|33 +BaseDefense|58 +BaseSpAttack|33 +BaseSpDefense|58 +BaseSpeed|33 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It hates light and shock. If attacked, it inflates its body to build up its counterstrike.\Patient Pokémon\28.5\1.3\0,148,0 +Scale|1.12 +Move|1,68 +Move|1,243 +Move|1,219 +Move|1,194 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/203.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/203.dat index 25293ba89..2c7cda972 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/203.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/203.dat @@ -1 +1,55 @@ -{"Name":"Girafarig","Number":203,"ExperienceType":"MediumFast","BaseExperience":159,"Type1":"Normal","Type2":"Psychic","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":203,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[39,48],"HiddenAbility":157,"EggMoves":[133,251,24,193,248,277,212,243,13,290,285,36,273,244],"Machines":[29,174,92,192,249,244,237,241,173,63,182,203,218,231,87,216,104,207,214,129,138,197,156,213,168,171,34,36,38,99,85,90,100,102,117,130,149,161,164,347,351,263,290,285,412,278,416,445,363,433,473,477,496,523,526,590,70,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":80,"Def":65,"SpAtk":90,"SpDef":65,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its tail has a small brain of its own. Beware! If you get close, it may react to your scent by biting.","Species":"Long Neck Pokémon","Height":1.5,"Weight":41.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":25,"Moves":[{"Level":1,"ID":384},{"Level":2,"ID":385},{"Level":3,"ID":310},{"Level":4,"ID":33},{"Level":5,"ID":45},{"Level":6,"ID":93},{"Level":7,"ID":316},{"Level":10,"ID":23},{"Level":14,"ID":97},{"Level":19,"ID":60},{"Level":23,"ID":226},{"Level":28,"ID":372},{"Level":32,"ID":458},{"Level":37,"ID":94},{"Level":41,"ID":428},{"Level":46,"ID":242}],"EvolutionConditions":[],"Items":[{"Id":2007,"Chance":5}]} \ No newline at end of file +Name|Girafarig +Number|203 +ExperienceType|1 +BaseExperience|159 +Type1|Normal +Type2|Psychic +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|203 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|39 +Ability2|48 +HiddenAbility|157 +EggMoves|133,251,24,193,248,277,212,243,13,290,285,36,273,244 +Machines|29,174,92,192,249,244,237,241,173,63,182,203,218,231,87,216,104,207,214,129,138,197,156,213,168,171,34,36,38,99,85,90,100,102,117,130,149,161,164,347,351,263,290,285,412,278,416,445,363,433,473,477,496,523,526,590,70,148 +BaseHP|70 +BaseAttack|80 +BaseDefense|65 +BaseSpAttack|90 +BaseSpDefense|65 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its tail has a small brain of its own. Beware! If you get close, it may react to your scent by biting.\Long Neck Pokémon\41.5\1.5\0,148,0 +Scale|1.2 +Move|1,384 +Move|1,385 +Move|1,310 +Move|1,33 +Move|1,45 +Move|1,93 +Move|5,316 +Move|10,23 +Move|14,97 +Move|19,60 +Move|23,226 +Move|28,372 +Move|32,458 +Move|37,94 +Move|41,428 +Move|46,242 +TradeValue|25 +Item|5,2007 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/204.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/204.dat index e4148698e..70a209be1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/204.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/204.dat @@ -1 +1,53 @@ -{"Name":"Pineco","Number":204,"ExperienceType":"MediumFast","BaseExperience":58,"Type1":"Bug","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":204,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5],"HiddenAbility":142,"EggMoves":[68,38,203,175,42,379,279,328,446,129,390,115],"Machines":[29,174,205,92,249,237,241,230,173,63,182,202,203,218,216,104,207,214,111,197,156,213,32,34,36,68,99,102,117,120,153,164,263,290,416,360,446,445,363,496,522,523,590,70],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":65,"Def":90,"SpAtk":35,"SpDef":35,"Speed":15},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It likes to make its shell thicker by adding layers of tree bark. The additional weight doesn't bother it.","Species":"Bagworm Pokémon","Height":0.6,"Weight":7.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":182},{"Level":6,"ID":120},{"Level":9,"ID":450},{"Level":12,"ID":36},{"Level":17,"ID":229},{"Level":20,"ID":117},{"Level":23,"ID":363},{"Level":28,"ID":191},{"Level":31,"ID":371},{"Level":34,"ID":153},{"Level":39,"ID":334},{"Level":42,"ID":360},{"Level":45,"ID":38}],"EvolutionConditions":[{"Condition":"31","ConditionType":"Level","Evolution":205,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Pineco +Number|204 +ExperienceType|1 +BaseExperience|58 +Type1|Bug +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|204 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|5 +Ability2|Nothing +HiddenAbility|142 +EggMoves|68,38,203,175,42,379,279,328,446,129,390,115 +Machines|29,174,205,92,249,237,241,230,173,63,182,202,203,218,216,104,207,214,111,197,156,213,32,34,36,68,99,102,117,120,153,164,263,290,416,360,446,445,363,496,522,523,590,70 +BaseHP|50 +BaseAttack|65 +BaseDefense|90 +BaseSpAttack|35 +BaseSpDefense|35 +BaseSpeed|15 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It likes to make its shell thicker by adding layers of tree bark. The additional weight doesn't bother it.\Bagworm Pokémon\7.2\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|1,182 +Move|6,120 +Move|9,450 +Move|12,36 +Move|17,229 +Move|20,117 +Move|23,363 +Move|28,191 +Move|31,371 +Move|34,153 +Move|39,334 +Move|42,360 +Move|45,38 +TradeValue|15 +EvolutionCondition|205,Level,31,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/205.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/205.dat index 97ed3b177..467e857bb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/205.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/205.dat @@ -1 +1,61 @@ -{"Name":"Forretress","Number":205,"ExperienceType":"MediumFast","BaseExperience":163,"Type1":"Bug","Type2":"Steel","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":204,"Devolution":204,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5],"HiddenAbility":142,"EggMoves":[68,38,203,175,42,379,279,328,446,129,390,115],"Machines":[29,174,205,92,249,237,241,230,173,63,182,202,203,218,216,104,207,214,111,197,156,213,34,36,38,68,99,102,117,120,153,157,164,263,290,416,360,446,445,363,496,522,523,590,70],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":90,"Def":140,"SpAtk":60,"SpDef":60,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its entire body is shielded by a steel-hard shell. What lurks inside this shell is a total mystery.","Species":"Bagworm Pokémon","Height":1.2,"Weight":125.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":30,"Moves":[{"Level":1,"ID":484},{"Level":2,"ID":192},{"Level":3,"ID":1},{"Level":4,"ID":390},{"Level":5,"ID":33},{"Level":6,"ID":182},{"Level":7,"ID":120},{"Level":8,"ID":450},{"Level":12,"ID":36},{"Level":17,"ID":229},{"Level":20,"ID":117},{"Level":23,"ID":363},{"Level":28,"ID":191},{"Level":31,"ID":429},{"Level":32,"ID":1},{"Level":36,"ID":371},{"Level":42,"ID":153},{"Level":46,"ID":334},{"Level":50,"ID":360},{"Level":56,"ID":38},{"Level":60,"ID":1},{"Level":64,"ID":192},{"Level":70,"ID":484}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Forretress +Number|205 +ExperienceType|1 +BaseExperience|163 +Type1|Bug +Type2|Steel +CatchRate|75 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|204 +IsGenderLess|0 +CanBreed|1 +Devolution|204 +IsMale|50 +Ability1|5 +Ability2|Nothing +HiddenAbility|142 +EggMoves|68,38,203,175,42,379,279,328,446,129,390,115 +Machines|29,174,205,92,249,237,241,230,173,63,182,202,203,218,216,104,207,214,111,197,156,213,34,36,38,68,99,102,117,120,153,157,164,263,290,416,360,446,445,363,496,522,523,590,70 +BaseHP|75 +BaseAttack|90 +BaseDefense|140 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its entire body is shielded by a steel-hard shell. What lurks inside this shell is a total mystery.\Bagworm Pokémon\125.8\1.2\0,148,0 +Scale|1.08 +Move|1,484 +Move|1,192 +Move|1,393 +Move|1,390 +Move|1,33 +Move|1,182 +Move|1,120 +Move|1,450 +Move|12,36 +Move|17,229 +Move|20,117 +Move|23,363 +Move|28,191 +Move|31,429 +Move|32,475 +Move|36,371 +Move|42,153 +Move|46,334 +Move|50,360 +Move|56,38 +Move|60,393 +Move|64,192 +Move|70,484 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/206.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/206.dat index dec2b8c22..8b2e4913f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/206.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/206.dat @@ -1 +1,56 @@ -{"Name":"Dunsparce","Number":206,"ExperienceType":"MediumFast","BaseExperience":145,"Type1":"Normal","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":206,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[32,50],"HiddenAbility":155,"EggMoves":[97,246,310,44,117,174,29,506,277,290,214,173,376,157],"Machines":[29,174,205,92,192,249,244,237,241,173,59,63,182,240,203,218,76,231,87,89,216,91,247,189,104,207,214,126,111,138,197,156,213,168,171,32,34,36,38,61,55,58,68,99,85,90,102,117,86,149,157,164,352,347,351,53,317,263,290,355,451,416,360,446,445,363,398,496,510,514,523,528,590,70],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":70,"Def":70,"SpAtk":65,"SpDef":65,"Speed":45},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When spotted backward by furiously boring into the ground with its tail.","Species":"Land Snake Pokémon","Height":1.5,"Weight":14,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":35,"Moves":[{"Level":1,"ID":99},{"Level":2,"ID":111},{"Level":4,"ID":205},{"Level":7,"ID":180},{"Level":10,"ID":228},{"Level":13,"ID":103},{"Level":16,"ID":281},{"Level":19,"ID":246},{"Level":22,"ID":36},{"Level":25,"ID":355},{"Level":28,"ID":137},{"Level":31,"ID":91},{"Level":34,"ID":38},{"Level":37,"ID":489},{"Level":40,"ID":203},{"Level":43,"ID":529},{"Level":46,"ID":283},{"Level":49,"ID":175}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Dunsparce +Number|206 +ExperienceType|1 +BaseExperience|145 +Type1|Normal +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|206 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|32 +Ability2|50 +HiddenAbility|155 +EggMoves|97,246,310,44,117,174,29,506,277,290,214,173,376,157 +Machines|29,174,205,92,192,249,244,237,241,173,59,63,182,240,203,218,76,231,87,89,216,91,247,189,104,207,214,126,111,138,197,156,213,168,171,32,34,36,38,61,55,58,68,99,85,90,102,117,86,149,157,164,352,347,351,53,317,263,290,355,451,416,360,446,445,363,398,496,510,514,523,528,590,70 +BaseHP|100 +BaseAttack|70 +BaseDefense|70 +BaseSpAttack|65 +BaseSpDefense|65 +BaseSpeed|45 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When spotted backward by furiously boring into the ground with its tail.\Land Snake Pokémon\14\1.5\0,148,0 +Scale|1.2 +Move|1,99 +Move|1,111 +Move|4,205 +Move|7,180 +Move|10,228 +Move|13,103 +Move|16,281 +Move|19,246 +Move|22,36 +Move|25,355 +Move|28,137 +Move|31,91 +Move|34,38 +Move|37,489 +Move|40,203 +Move|43,529 +Move|46,283 +Move|49,175 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/207.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/207.dat index 3af272e9f..d0a648632 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/207.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/207.dat @@ -1 +1,55 @@ -{"Name":"Gligar","Number":207,"ExperienceType":"MediumSlow","BaseExperience":86,"Type1":"Ground","Type2":"Flying","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":207,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[52,8],"HiddenAbility":17,"EggMoves":[97,226,68,440,38,364,232,400,342,379,13,431,328,17],"Machines":[29,174,92,249,237,241,173,63,182,203,218,231,89,216,91,104,207,214,188,129,197,156,213,168,211,210,13,14,18,36,38,68,99,90,102,117,130,157,164,269,280,317,332,259,263,290,355,374,371,416,397,432,444,446,445,399,404,363,398,369,468,474,496,512,522,523,590,15,70],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":75,"Def":105,"SpAtk":35,"SpDef":65,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It flies straight at its target's face, then clamps down on the startled victim to inject poison.","Species":"FlyScorpion Pokémon","Height":1.1,"Weight":64.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":20,"Moves":[{"Level":1,"ID":40},{"Level":4,"ID":28},{"Level":7,"ID":106},{"Level":10,"ID":282},{"Level":13,"ID":98},{"Level":16,"ID":210},{"Level":19,"ID":185},{"Level":22,"ID":512},{"Level":27,"ID":163},{"Level":30,"ID":369},{"Level":35,"ID":103},{"Level":40,"ID":404},{"Level":45,"ID":327},{"Level":50,"ID":14},{"Level":55,"ID":12}],"EvolutionConditions":[{"Condition":"183","ConditionType":"HoldItem","Evolution":472,"Trigger":"LevelUp"},{"Condition":"0","ConditionType":"DayTime","Evolution":472,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Gligar +Number|207 +ExperienceType|2 +BaseExperience|86 +Type1|Ground +Type2|Flying +CatchRate|60 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|207 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|52 +Ability2|8 +HiddenAbility|17 +EggMoves|97,226,68,440,38,364,232,400,342,379,13,431,328,17 +Machines|29,174,92,249,237,241,173,63,182,203,218,231,89,216,91,104,207,214,188,129,197,156,213,168,211,210,13,14,18,36,38,68,99,90,102,117,130,157,164,269,280,317,332,259,263,290,355,374,371,416,397,432,444,446,445,399,404,363,398,369,468,474,496,512,522,523,590,15,70 +BaseHP|65 +BaseAttack|75 +BaseDefense|105 +BaseSpAttack|35 +BaseSpDefense|65 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It flies straight at its target's face, then clamps down on the startled victim to inject poison.\FlyScorpion Pokémon\64.8\1.1\0,148,0 +Scale|1.04 +Move|1,40 +Move|4,28 +Move|7,106 +Move|10,282 +Move|13,98 +Move|16,210 +Move|19,185 +Move|22,512 +Move|27,163 +Move|30,369 +Move|35,103 +Move|40,404 +Move|45,327 +Move|50,14 +Move|55,12 +TradeValue|20 +EvolutionCondition|472,holditem,183,Level +EvolutionCondition|472,daytime,0,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/208.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/208.dat index f9e9e09cd..62e9db50e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/208.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/208.dat @@ -1 +1,64 @@ -{"Name":"Steelix","Number":208,"ExperienceType":"MediumFast","BaseExperience":179,"Type1":"Steel","Type2":"Ground","CatchRate":25,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":95,"Devolution":95,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[69,5],"HiddenAbility":125,"EggMoves":[335,111,175,484,350,431,205,563,446,153,157],"Machines":[29,174,205,46,92,249,244,237,241,173,63,182,203,218,231,225,89,216,91,189,104,207,214,201,111,197,156,213,34,36,38,99,82,90,102,117,120,130,153,157,164,269,317,259,263,290,406,371,416,397,444,360,446,445,399,363,430,479,496,523,525,267,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":85,"Def":200,"SpAtk":55,"SpDef":65,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its body has been compressed deep under the ground. As a result, it is even harder than a diamond.","Species":"Iron Snake Pokémon","Height":9.2,"Weight":400,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":60,"Moves":[{"Level":1,"ID":422},{"Level":2,"ID":423},{"Level":3,"ID":424},{"Level":4,"ID":300},{"Level":5,"ID":33},{"Level":6,"ID":106},{"Level":7,"ID":20},{"Level":8,"ID":174},{"Level":9,"ID":88},{"Level":10,"ID":317},{"Level":13,"ID":99},{"Level":16,"ID":446},{"Level":19,"ID":1},{"Level":20,"ID":360},{"Level":22,"ID":479},{"Level":25,"ID":225},{"Level":28,"ID":21},{"Level":31,"ID":103},{"Level":34,"ID":157},{"Level":37,"ID":242},{"Level":40,"ID":231},{"Level":43,"ID":91},{"Level":46,"ID":444},{"Level":49,"ID":38},{"Level":52,"ID":201}],"EvolutionConditions":[],"Items":[{"Id":143,"Chance":5}]} \ No newline at end of file +Name|Steelix +Number|208 +ExperienceType|1 +BaseExperience|179 +Type1|Steel +Type2|Ground +CatchRate|25 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|95 +IsGenderLess|0 +CanBreed|1 +Devolution|95 +IsMale|50 +Ability1|69 +Ability2|5 +HiddenAbility|125 +EggMoves|335,111,175,484,350,431,205,563,446,153,157 +Machines|29,174,205,46,92,249,244,237,241,173,63,182,203,218,231,225,89,216,91,189,104,207,214,201,111,197,156,213,34,36,38,99,82,90,102,117,120,130,153,157,164,269,317,259,263,290,406,371,416,397,444,360,446,445,399,363,430,479,496,523,525,267,590,15,70,431,560 +BaseHP|75 +BaseAttack|85 +BaseDefense|200 +BaseSpAttack|55 +BaseSpDefense|65 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its body has been compressed deep under the ground. As a result, it is even harder than a diamond.\Iron Snake Pokémon\400\9.2\0,148,0 +Scale|2 +Move|1,422 +Move|1,423 +Move|1,424 +Move|1,300 +Move|1,33 +Move|1,106 +Move|1,20 +Move|4,174 +Move|7,88 +Move|10,317 +Move|13,99 +Move|16,446 +Move|19,475 +Move|20,360 +Move|22,479 +Move|25,225 +Move|28,21 +Move|31,103 +Move|34,157 +Move|37,242 +Move|40,231 +Move|43,91 +Move|46,444 +Move|49,38 +Move|52,201 +TradeValue|60 +Item|5,143 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/208_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/208_mega.dat new file mode 100644 index 000000000..348285f4d --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/208_mega.dat @@ -0,0 +1,64 @@ +Name|Mega Steelix +Number|208 +ExperienceType|1 +BaseExperience|179 +Type1|Steel +Type2|Ground +CatchRate|25 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|95 +IsGenderLess|0 +CanBreed|1 +Devolution|95 +IsMale|50 +Ability1|159 +Ability2|Nothing +HiddenAbility|159 +EggMoves|335,111,175,484,350,431,205,563,446,153,157 +Machines|29,174,205,46,92,249,244,237,241,173,63,182,203,218,231,225,89,216,91,189,104,207,214,201,111,197,156,213,34,36,38,99,82,90,102,117,120,130,153,157,164,269,317,259,263,290,406,371,416,397,444,360,446,445,399,363,430,479,496,523,525,267,590,15,70,431,560 +BaseHP|75 +BaseAttack|125 +BaseDefense|230 +BaseSpAttack|55 +BaseSpDefense|95 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its body has been compressed deep under the ground. As a result, it is even harder than a diamond.\Iron Snake Pokémon\740\10.5\0,148,0 +Scale|2 +Move|1,422 +Move|1,423 +Move|1,424 +Move|1,300 +Move|1,33 +Move|1,106 +Move|1,20 +Move|4,174 +Move|7,88 +Move|10,317 +Move|13,99 +Move|16,446 +Move|19,475 +Move|20,360 +Move|22,479 +Move|25,225 +Move|28,21 +Move|31,103 +Move|34,157 +Move|37,242 +Move|40,231 +Move|43,91 +Move|46,444 +Move|49,38 +Move|52,201 +TradeValue|60 +Item|5,143 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/209.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/209.dat index cfb15588c..7ac34aced 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/209.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/209.dat @@ -1 +1,54 @@ -{"Name":"Snubbull","Number":209,"ExperienceType":"Fast","BaseExperience":60,"Type1":"Fairy","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Fairy","BaseEggSteps":5355,"EggPokemon":209,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[22,50],"HiddenAbility":155,"EggMoves":[370,242,38,313,185,424,264,215,423,118,102,217,265,173,115,422,43,122],"Machines":[223,29,174,46,92,192,249,237,241,173,63,182,240,203,218,76,87,89,216,91,247,189,104,8,207,214,188,126,111,9,197,156,213,168,7,5,25,34,36,6,66,68,69,99,85,102,115,117,118,130,86,164,264,352,339,269,280,351,53,259,263,290,315,374,371,416,445,363,496,510,514,523,526,528,555,612,605,590,70],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":80,"Def":50,"SpAtk":40,"SpDef":40,"Speed":30},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Although it looks frightening, it is actually kind and affectionate. It is very popular among women.","Species":"Fairy Pokémon","Height":0.6,"Weight":7.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":423},{"Level":2,"ID":424},{"Level":3,"ID":422},{"Level":4,"ID":33},{"Level":5,"ID":184},{"Level":6,"ID":39},{"Level":7,"ID":204},{"Level":8,"ID":44},{"Level":13,"ID":122},{"Level":19,"ID":29},{"Level":25,"ID":46},{"Level":31,"ID":99},{"Level":37,"ID":583},{"Level":43,"ID":371},{"Level":49,"ID":242}],"EvolutionConditions":[{"Condition":"23","ConditionType":"Level","Evolution":210,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Snubbull +Number|209 +ExperienceType|0 +BaseExperience|60 +Type1|Fairy +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Fairy +BaseEggSteps|5355 +EggPokemon|209 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|22 +Ability2|50 +HiddenAbility|155 +EggMoves|370,242,38,313,185,424,264,215,423,118,102,217,265,173,115,422,43,122 +Machines|223,29,174,46,92,192,249,237,241,173,63,182,240,203,218,76,87,89,216,91,247,189,104,8,207,214,188,126,111,9,197,156,213,168,7,5,25,34,36,6,66,68,69,99,85,102,115,117,118,130,86,164,264,352,339,269,280,351,53,259,263,290,315,374,371,416,445,363,496,510,514,523,526,528,555,612,605,590,70 +BaseHP|60 +BaseAttack|80 +BaseDefense|50 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|30 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Although it looks frightening, it is actually kind and affectionate. It is very popular among women.\Fairy Pokémon\7.8\0.6\0,148,0 +Scale|0.84 +Move|1,423 +Move|1,424 +Move|1,422 +Move|1,33 +Move|1,184 +Move|1,39 +Move|1,204 +Move|7,44 +Move|13,122 +Move|19,29 +Move|25,46 +Move|31,99 +Move|37,583 +Move|43,371 +Move|49,242 +TradeValue|25 +EvolutionCondition|210,Level,23,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/21.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/21.dat index 215d88ac4..075d8b9ac 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/21.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/21.dat @@ -1 +1,48 @@ -{"Name":"Spearow","Number":21,"ExperienceType":"MediumFast","BaseExperience":52,"Type1":"Normal","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":21,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51],"HiddenAbility":97,"EggMoves":[310,297,185,98,13,184,143,161,253,18,211,206],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,206,416,432,445,363,365,369,496,497,526,590,19],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":60,"Def":30,"SpAtk":31,"SpDef":31,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It flaps its short wings to flush out insects from tall grass. It then plucks them with its stubby beak.","Species":"Tiny Bird Pokémon","Height":0.3,"Weight":2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":64},{"Level":5,"ID":43},{"Level":9,"ID":31},{"Level":13,"ID":228},{"Level":17,"ID":332},{"Level":21,"ID":119},{"Level":25,"ID":97},{"Level":29,"ID":372},{"Level":33,"ID":355},{"Level":37,"ID":65}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":22,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Spearow +Number|21 +ExperienceType|1 +BaseExperience|52 +Type1|Normal +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|21 +IsGenderLess|0 +IsMale|50 +Ability1|51 +Ability2|Nothing +HiddenAbility|97 +EggMoves|310,297,185,98,13,184,143,161,253,18,211,206 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,206,416,432,445,363,365,369,496,497,526,590,19 +BaseHP|40 +BaseAttack|60 +BaseDefense|30 +BaseSpAttack|31 +BaseSpDefense|31 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It flaps its short wings to flush out insects from tall grass. It then plucks them with its stubby beak.\Tiny Bird Pokémon\2\0.3\0,148,0 +Scale|0.7 +Move|1,45 +Move|1,64 +Move|5,43 +Move|9,31 +Move|13,228 +Move|17,332 +Move|21,119 +Move|25,97 +Move|29,372 +Move|33,355 +Move|37,65 +EvolutionCondition|22,Level,20,Level +TradeValue|10 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/210.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/210.dat index ca5892f21..8403a846c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/210.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/210.dat @@ -1 +1,55 @@ -{"Name":"Granbull","Number":210,"ExperienceType":"Fast","BaseExperience":158,"Type1":"Fairy","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Fairy","BaseEggSteps":5355,"EggPokemon":209,"Devolution":209,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[22,95],"HiddenAbility":155,"EggMoves":[370,242,38,313,185,424,264,215,423,118,102,217,265,173,422,115,43,122],"Machines":[223,29,174,46,92,192,249,237,241,173,63,182,240,203,218,76,231,87,89,216,91,247,189,104,8,207,214,188,126,111,9,197,156,213,168,7,5,25,34,36,38,6,66,68,69,99,82,85,102,115,117,118,130,86,157,164,264,352,339,269,280,351,53,317,259,263,290,315,411,374,371,416,444,445,363,496,510,514,523,526,528,555,612,605,590,70,431],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":120,"Def":75,"SpAtk":60,"SpDef":60,"Speed":45},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is actually timid and easily spooked. If attacked, it flails about to fend off its attacker.","Species":"Fairy Pokémon","Height":1.4,"Weight":48.7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":35,"Moves":[{"Level":1,"ID":200},{"Level":2,"ID":423},{"Level":3,"ID":424},{"Level":4,"ID":422},{"Level":5,"ID":33},{"Level":6,"ID":184},{"Level":7,"ID":39},{"Level":8,"ID":204},{"Level":9,"ID":44},{"Level":13,"ID":122},{"Level":19,"ID":29},{"Level":27,"ID":46},{"Level":35,"ID":99},{"Level":43,"ID":583},{"Level":51,"ID":371},{"Level":59,"ID":242},{"Level":67,"ID":200}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Granbull +Number|210 +ExperienceType|0 +BaseExperience|158 +Type1|Fairy +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Fairy +BaseEggSteps|5355 +EggPokemon|209 +IsGenderLess|0 +CanBreed|1 +Devolution|209 +IsMale|25 +Ability1|22 +Ability2|95 +HiddenAbility|155 +EggMoves|370,242,38,313,185,424,264,215,423,118,102,217,265,173,422,115,43,122 +Machines|223,29,174,46,92,192,249,237,241,173,63,182,240,203,218,76,231,87,89,216,91,247,189,104,8,207,214,188,126,111,9,197,156,213,168,7,5,25,34,36,38,6,66,68,69,99,82,85,102,115,117,118,130,86,157,164,264,352,339,269,280,351,53,317,259,263,290,315,411,374,371,416,444,445,363,496,510,514,523,526,528,555,612,605,590,70,431 +BaseHP|90 +BaseAttack|120 +BaseDefense|75 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|45 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is actually timid and easily spooked. If attacked, it flails about to fend off its attacker.\Fairy Pokémon\48.7\1.4\0,148,0 +Scale|1.16 +Move|1,200 +Move|1,423 +Move|1,424 +Move|1,422 +Move|1,33 +Move|1,184 +Move|1,39 +Move|1,204 +Move|7,44 +Move|13,122 +Move|19,29 +Move|27,46 +Move|35,99 +Move|43,583 +Move|51,371 +Move|59,242 +Move|67,200 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/211.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/211.dat index a5115e28e..ca1d6f7db 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/211.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/211.dat @@ -1 +1,62 @@ -{"Name":"Qwilfish","Number":211,"ExperienceType":"MediumFast","BaseExperience":86,"Type1":"Water","Type2":"Poison","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":211,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[38,33],"HiddenAbility":22,"EggMoves":[491,453,310,362,61,175,114,324,48,352,398],"Machines":[29,174,205,92,237,173,59,63,196,182,240,203,218,216,247,104,207,214,188,129,111,197,156,213,36,61,55,58,99,72,102,117,120,86,153,164,352,258,269,351,263,290,362,371,416,360,445,363,398,474,482,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":95,"Def":75,"SpAtk":55,"SpDef":55,"Speed":85},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"To fire its poison spikes inflate its body by drinking over 2.6 gallons of water all at once.","Species":"Balloon Pokémon","Height":0.5,"Weight":3.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":56},{"Level":3,"ID":194},{"Level":4,"ID":55},{"Level":5,"ID":191},{"Level":6,"ID":33},{"Level":7,"ID":40},{"Level":9,"ID":106},{"Level":10,"ID":107},{"Level":13,"ID":145},{"Level":17,"ID":205},{"Level":21,"ID":390},{"Level":25,"ID":254},{"Level":26,"ID":255},{"Level":29,"ID":279},{"Level":33,"ID":362},{"Level":37,"ID":42},{"Level":41,"ID":36},{"Level":45,"ID":401},{"Level":49,"ID":398},{"Level":53,"ID":194},{"Level":57,"ID":56},{"Level":60,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Qwilfish +Number|211 +ExperienceType|1 +BaseExperience|86 +Type1|Water +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|211 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|38 +Ability2|33 +HiddenAbility|22 +EggMoves|491,453,310,362,61,175,114,324,48,352,398 +Machines|29,174,205,92,237,173,59,63,196,182,240,203,218,216,247,104,207,214,188,129,111,197,156,213,36,61,55,58,99,72,102,117,120,86,153,164,352,258,269,351,263,290,362,371,416,360,445,363,398,474,482,496,503,590,57,250,127,291 +BaseHP|65 +BaseAttack|95 +BaseDefense|75 +BaseSpAttack|55 +BaseSpDefense|55 +BaseSpeed|85 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|To fire its poison spikes inflate its body by drinking over 2.6 gallons of water all at once.\Balloon Pokémon\3.9\0.5\0,148,0 +Scale|0.7 +Move|1,565 +Move|1,56 +Move|1,194 +Move|1,55 +Move|1,191 +Move|1,33 +Move|1,40 +Move|9,106 +Move|9,107 +Move|13,145 +Move|17,205 +Move|21,390 +Move|25,254 +Move|25,255 +Move|29,279 +Move|33,362 +Move|37,42 +Move|41,36 +Move|45,401 +Move|49,398 +Move|53,194 +Move|57,56 +Move|60,565 +TradeValue|25 +Item|5,81 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/212.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/212.dat index 206c2f0a1..05187af60 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/212.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/212.dat @@ -1 +1,57 @@ -{"Name":"Scizor","Number":212,"ExperienceType":"MediumFast","BaseExperience":175,"Type1":"Bug","Type2":"Steel","CatchRate":25,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":123,"Devolution":123,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,101],"HiddenAbility":135,"EggMoves":[226,405,68,432,203,400,501,13,179,318,211,113,219],"Machines":[29,174,92,249,237,241,173,63,182,240,203,218,216,104,207,214,201,129,197,156,213,168,211,210,14,36,38,68,99,102,117,130,164,113,219,280,332,263,290,355,206,374,416,432,445,404,363,369,430,474,496,512,522,590,15,70],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":130,"Def":100,"SpAtk":55,"SpDef":80,"Speed":65},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It swings its eye-patterned pincers up to scare its foes. This makes it look like it has three heads.","Species":"Pincer Pokémon","Height":1.8,"Weight":118,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":90,"Moves":[{"Level":1,"ID":364},{"Level":2,"ID":418},{"Level":3,"ID":98},{"Level":4,"ID":43},{"Level":5,"ID":116},{"Level":9,"ID":228},{"Level":13,"ID":206},{"Level":17,"ID":97},{"Level":21,"ID":232},{"Level":25,"ID":210},{"Level":29,"ID":163},{"Level":33,"ID":13},{"Level":37,"ID":334},{"Level":41,"ID":404},{"Level":45,"ID":400},{"Level":49,"ID":458},{"Level":50,"ID":442},{"Level":57,"ID":14},{"Level":61,"ID":364}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Scizor +Number|212 +ExperienceType|1 +BaseExperience|175 +Type1|Bug +Type2|Steel +CatchRate|25 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|123 +IsGenderLess|0 +CanBreed|1 +Devolution|123 +IsMale|50 +Ability1|68 +Ability2|101 +HiddenAbility|135 +EggMoves|226,405,68,432,203,400,501,13,179,318,211,113,219 +Machines|29,174,92,249,237,241,173,63,182,240,203,218,216,104,207,214,201,129,197,156,213,168,211,210,14,36,38,68,99,102,117,130,164,113,219,280,332,263,290,355,206,374,416,432,445,404,363,369,430,474,496,512,522,590,15,70 +BaseHP|70 +BaseAttack|130 +BaseDefense|100 +BaseSpAttack|55 +BaseSpDefense|80 +BaseSpeed|65 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It swings its eye-patterned pincers up to scare its foes. This makes it look like it has three heads.\Pincer Pokémon\118\1.8\0,148,0 +Scale|1.32 +Move|1,364 +Move|1,418 +Move|1,98 +Move|1,43 +Move|5,116 +Move|9,228 +Move|13,206 +Move|17,97 +Move|21,232 +Move|25,210 +Move|29,163 +Move|33,13 +Move|37,334 +Move|41,404 +Move|45,400 +Move|49,458 +Move|50,442 +Move|57,14 +Move|61,364 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/212_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/212_mega.dat new file mode 100644 index 000000000..72aab95c1 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/212_mega.dat @@ -0,0 +1,57 @@ +Name|Mega Scizor +Number|212 +ExperienceType|1 +BaseExperience|175 +Type1|Bug +Type2|Steel +CatchRate|25 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|123 +IsGenderLess|0 +CanBreed|1 +Devolution|123 +IsMale|50 +Ability1|101 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|226,405,68,432,203,400,501,13,179,318,211,113,219 +Machines|29,174,92,249,237,241,173,63,182,240,203,218,216,104,207,214,201,129,197,156,213,168,211,210,14,36,38,68,99,102,117,130,164,113,219,280,332,263,290,355,206,374,416,432,445,404,363,369,430,474,496,512,522,590,15,70 +BaseHP|70 +BaseAttack|150 +BaseDefense|140 +BaseSpAttack|65 +BaseSpDefense|100 +BaseSpeed|75 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It swings its eye-patterned pincers up to scare its foes. This makes it look like it has three heads.\Pincer Pokémon\125\2\0,148,0 +Scale|1.4 +Move|1,364 +Move|1,418 +Move|1,98 +Move|1,43 +Move|5,116 +Move|9,228 +Move|13,206 +Move|17,97 +Move|21,232 +Move|25,210 +Move|29,163 +Move|33,13 +Move|37,334 +Move|41,404 +Move|45,400 +Move|49,458 +Move|50,442 +Move|57,14 +Move|61,364 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/213.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/213.dat index b99f5d2fb..7bb6e3430 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/213.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/213.dat @@ -1 +1,59 @@ -{"Name":"Shuckle","Number":213,"ExperienceType":"MediumSlow","BaseExperience":177,"Type1":"Bug","Type2":"Rock","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":213,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5,82],"HiddenAbility":126,"EggMoves":[51,367,515,270,282,189,350,328,230],"Machines":[29,174,205,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,188,201,111,197,156,213,34,36,99,90,102,117,157,164,219,317,263,290,416,397,444,360,446,445,363,474,479,482,496,522,523,611,590,70,148],"TutorMoves":[],"BaseStats":{"HP":20,"Atk":10,"Def":230,"SpAtk":10,"SpDef":230,"Speed":5},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The berries it stores in its vase-like shell decompose and become a gooey liquid.","Species":"Mold Pokémon","Height":0.6,"Weight":20.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":110},{"Level":3,"ID":132},{"Level":4,"ID":117},{"Level":5,"ID":205},{"Level":6,"ID":227},{"Level":9,"ID":35},{"Level":12,"ID":522},{"Level":16,"ID":219},{"Level":20,"ID":156},{"Level":23,"ID":88},{"Level":27,"ID":1},{"Level":31,"ID":379},{"Level":34,"ID":504},{"Level":38,"ID":157},{"Level":42,"ID":450},{"Level":45,"ID":1},{"Level":46,"ID":1},{"Level":49,"ID":444},{"Level":53,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":139,"Chance":100}]} \ No newline at end of file +Name|Shuckle +Number|213 +ExperienceType|2 +BaseExperience|177 +Type1|Bug +Type2|Rock +CatchRate|190 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|213 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|5 +Ability2|82 +HiddenAbility|126 +EggMoves|51,367,515,270,282,189,350,328,230 +Machines|29,174,205,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,188,201,111,197,156,213,34,36,99,90,102,117,157,164,219,317,263,290,416,397,444,360,446,445,363,474,479,482,496,522,523,611,590,70,148 +BaseHP|20 +BaseAttack|10 +BaseDefense|230 +BaseSpAttack|10 +BaseSpDefense|230 +BaseSpeed|5 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The berries it stores in its vase-like shell decompose and become a gooey liquid.\Mold Pokémon\20.5\0.6\0,148,0 +Scale|0.84 +Move|1,564 +Move|1,110 +Move|1,132 +Move|1,117 +Move|1,205 +Move|5,227 +Move|9,35 +Move|12,522 +Move|16,219 +Move|20,156 +Move|23,88 +Move|27,380 +Move|31,379 +Move|34,504 +Move|38,157 +Move|42,450 +Move|45,471 +Move|45,470 +Move|49,444 +Move|53,564 +TradeValue|25 +Item|100,139 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/214.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/214.dat index 86305ca49..2ef547361 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/214.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/214.dat @@ -1 +1,56 @@ -{"Name":"Heracross","Number":214,"ExperienceType":"Slow","BaseExperience":175,"Type1":"Bug","Type2":"Fighting","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":214,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,62],"HiddenAbility":153,"EggMoves":[117,38,175,264,106,224,228,279,350,69,206],"Machines":[29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,207,214,197,156,213,168,210,5,14,32,34,36,38,66,68,69,99,102,117,157,164,264,339,280,317,332,263,290,411,206,374,421,416,444,445,363,474,479,496,514,522,523,526,590,15,70],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":125,"Def":75,"SpAtk":40,"SpDef":95,"Speed":85},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This powerful Pokémon thrusts its prized horn under its enemies' bellies, then lifts and throws them.","Species":"Single Horn Pokémon","Height":1.5,"Weight":54,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":40,"Moves":[{"Level":1,"ID":292},{"Level":2,"ID":331},{"Level":3,"ID":400},{"Level":4,"ID":33},{"Level":5,"ID":43},{"Level":6,"ID":30},{"Level":7,"ID":203},{"Level":8,"ID":31},{"Level":10,"ID":332},{"Level":16,"ID":498},{"Level":19,"ID":68},{"Level":25,"ID":280},{"Level":28,"ID":36},{"Level":31,"ID":42},{"Level":34,"ID":370},{"Level":37,"ID":364},{"Level":43,"ID":179},{"Level":46,"ID":224}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Heracross +Number|214 +ExperienceType|3 +BaseExperience|175 +Type1|Bug +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|214 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|68 +Ability2|62 +HiddenAbility|153 +EggMoves|117,38,175,264,106,224,228,279,350,69,206 +Machines|29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,207,214,197,156,213,168,210,5,14,32,34,36,38,66,68,69,99,102,117,157,164,264,339,280,317,332,263,290,411,206,374,421,416,444,445,363,474,479,496,514,522,523,526,590,15,70 +BaseHP|80 +BaseAttack|125 +BaseDefense|75 +BaseSpAttack|40 +BaseSpDefense|95 +BaseSpeed|85 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This powerful Pokémon thrusts its prized horn under its enemies' bellies, then lifts and throws them.\Single Horn Pokémon\54\1.5\0,148,0 +Scale|1.2 +Move|1,292 +Move|1,331 +Move|1,400 +Move|1,33 +Move|1,43 +Move|1,30 +Move|1,203 +Move|7,31 +Move|10,332 +Move|16,498 +Move|19,68 +Move|25,280 +Move|28,36 +Move|31,42 +Move|34,370 +Move|37,364 +Move|43,179 +Move|46,224 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/214_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/214_mega.dat new file mode 100644 index 000000000..39996789d --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/214_mega.dat @@ -0,0 +1,56 @@ +Name|Mega Heracross +Number|214 +ExperienceType|3 +BaseExperience|175 +Type1|Bug +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|214 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|92 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|117,38,175,264,106,224,228,279,350,69,206 +Machines|29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,207,214,197,156,213,168,210,5,14,32,34,36,38,66,68,69,99,102,117,157,164,264,339,280,317,332,263,290,411,206,374,421,416,444,445,363,474,479,496,514,522,523,526,590,15,70 +BaseHP|80 +BaseAttack|185 +BaseDefense|115 +BaseSpAttack|40 +BaseSpDefense|105 +BaseSpeed|75 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This powerful Pokémon thrusts its prized horn under its enemies' bellies, then lifts and throws them.\Single Horn Pokémon\65\1.7\0,148,0 +Scale|1.2 +Move|1,292 +Move|1,331 +Move|1,400 +Move|1,33 +Move|1,43 +Move|1,30 +Move|1,203 +Move|7,31 +Move|10,332 +Move|16,498 +Move|19,68 +Move|25,280 +Move|28,36 +Move|31,42 +Move|34,370 +Move|37,364 +Move|43,179 +Move|46,224 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/215.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/215.dat index d0d6c8419..0ccc0a0b2 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/215.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/215.dat @@ -1 +1,58 @@ -{"Name":"Sneasel","Number":215,"ExperienceType":"MediumSlow","BaseExperience":86,"Type1":"Dark","Type2":"Ice","CatchRate":60,"BaseFriendship":35,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":215,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[39,51],"HiddenAbility":124,"EggMoves":[223,29,174,92,249,244,237,241,173,59,63,196,182,240,203,218,231,216,91,247,189,104,8,207,214,129,111,138,197,156,213,168,210,171,14,36,58,6,68,99,102,115,117,130,164,264,347,258,269,280,332,259,263,290,289,206,374,373,421,371,416,419,445,399,404,363,398,468,490,496,514,555,612,590,15,57,70,250],"Machines":[14,15,57,58,59,70,91,92,104,115,138,156,164,168,182,206,207,213,216,218,237,240,241,244,247,249,258,259,263,269,280,332,347,371,373,374,398,404,421,468,490,496,514,555,210,29,189,8,250],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":95,"Def":55,"SpAtk":35,"SpDef":75,"Speed":115},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its paws conceal sharp claws. If attacked, it suddenly extends the claws and startles its enemy.","Species":"Sharp Claw Pokémon","Height":0.9,"Weight":28,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":40,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":3,"ID":269},{"Level":8,"ID":98},{"Level":10,"ID":185},{"Level":14,"ID":196},{"Level":16,"ID":154},{"Level":20,"ID":97},{"Level":22,"ID":232},{"Level":25,"ID":468},{"Level":28,"ID":251},{"Level":32,"ID":103},{"Level":35,"ID":163},{"Level":40,"ID":289},{"Level":44,"ID":386},{"Level":47,"ID":420}],"EvolutionConditions":[{"Condition":"184","ConditionType":"HoldItem","Evolution":461,"Trigger":"LevelUp"},{"Condition":"0","ConditionType":"DayTime","Evolution":461,"Trigger":"LevelUp"}],"Items":[{"Id":176,"Chance":50},{"Id":73,"Chance":5}]} \ No newline at end of file +Name|Sneasel +Number|215 +ExperienceType|2 +BaseExperience|86 +Type1|Dark +Type2|Ice +CatchRate|60 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|215 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|39 +Ability2|51 +HiddenAbility|124 +EggMoves|223,29,174,92,249,244,237,241,173,59,63,196,182,240,203,218,231,216,91,247,189,104,8,207,214,129,111,138,197,156,213,168,210,171,14,36,58,6,68,99,102,115,117,130,164,264,347,258,269,280,332,259,263,290,289,206,374,373,421,371,416,419,445,399,404,363,398,468,490,496,514,555,612,590,15,57,70,250 +Machines|14,15,57,58,59,70,91,92,104,115,138,156,164,168,182,206,207,213,216,218,237,240,241,244,247,249,258,259,263,269,280,332,347,371,373,374,398,404,421,468,490,496,514,555,210,29,189,8,250 +BaseHP|55 +BaseAttack|95 +BaseDefense|55 +BaseSpAttack|35 +BaseSpDefense|75 +BaseSpeed|115 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Its paws conceal sharp claws. If attacked, it suddenly extends the claws and startles its enemy.\Sharp Claw Pokémon\28\0.9\0,148,0 +Scale|0.96 +Move|1,10 +Move|1,43 +Move|1,269 +Move|8,98 +Move|10,185 +Move|14,196 +Move|16,154 +Move|20,97 +Move|22,232 +Move|25,468 +Move|28,251 +Move|32,103 +Move|35,163 +Move|40,289 +Move|44,386 +Move|47,420 +TradeValue|40 +Item|50,176 +Item|5,73 +EvolutionCondition|461,holditem,184,Level +EvolutionCondition|461,daytime,0,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/216.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/216.dat index 05b0ffab9..83f85b0c5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/216.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/216.dat @@ -1 +1,55 @@ -{"Name":"Teddiursa","Number":216,"ExperienceType":"MediumFast","BaseExperience":66,"Type1":"Normal","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":216,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[53,95],"HiddenAbility":118,"EggMoves":[187,498,370,68,238,242,38,313,232,400,583,69,214,36,281,116],"Machines":[223,29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,129,111,9,197,156,213,168,7,210,5,14,25,34,36,66,68,69,99,102,117,118,130,157,164,264,339,269,280,317,332,259,263,290,374,421,371,416,445,363,468,496,514,523,526,612,590,15,70],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":80,"Def":50,"SpAtk":50,"SpDef":50,"Speed":40},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it finds honey, its crescent mark glows. It always licks its paws because they are soaked with honey.","Species":"Little Bear Pokémon","Height":0.6,"Weight":8.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":374},{"Level":2,"ID":343},{"Level":3,"ID":10},{"Level":4,"ID":608},{"Level":5,"ID":122},{"Level":6,"ID":313},{"Level":8,"ID":154},{"Level":15,"ID":185},{"Level":22,"ID":230},{"Level":25,"ID":589},{"Level":29,"ID":163},{"Level":36,"ID":204},{"Level":43,"ID":156},{"Level":44,"ID":173},{"Level":50,"ID":37},{"Level":57,"ID":374}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":217,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Teddiursa +Number|216 +ExperienceType|1 +BaseExperience|66 +Type1|Normal +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|216 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|95 +HiddenAbility|118 +EggMoves|187,498,370,68,238,242,38,313,232,400,583,69,214,36,281,116 +Machines|223,29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,129,111,9,197,156,213,168,7,210,5,14,25,34,36,66,68,69,99,102,117,118,130,157,164,264,339,269,280,317,332,259,263,290,374,421,371,416,445,363,468,496,514,523,526,612,590,15,70 +BaseHP|60 +BaseAttack|80 +BaseDefense|50 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|40 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it finds honey, its crescent mark glows. It always licks its paws because they are soaked with honey.\Little Bear Pokémon\8.8\0.6\0,148,0 +Scale|0.84 +Move|1,374 +Move|1,343 +Move|1,10 +Move|1,608 +Move|1,122 +Move|1,313 +Move|8,154 +Move|15,185 +Move|22,230 +Move|25,589 +Move|29,163 +Move|36,204 +Move|43,156 +Move|43,173 +Move|50,37 +Move|57,374 +TradeValue|15 +EvolutionCondition|217,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/217.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/217.dat index 5d6c72320..b698d60c1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/217.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/217.dat @@ -1 +1,54 @@ -{"Name":"Ursaring","Number":217,"ExperienceType":"MediumFast","BaseExperience":175,"Type1":"Normal","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":216,"Devolution":216,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[62,95],"HiddenAbility":127,"EggMoves":[187,498,370,68,238,242,38,313,232,400,583,69,214,36,281,116],"Machines":[223,29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,129,111,9,197,156,213,168,7,210,5,14,25,34,36,38,66,68,69,99,82,102,117,118,130,157,164,264,337,339,269,280,317,332,259,263,290,411,374,421,371,416,444,419,445,363,468,479,496,514,523,526,612,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":130,"Def":75,"SpAtk":75,"SpDef":75,"Speed":55},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Although it is a good climber it prefers to snap trees with its forelegs and eat fallen berries.","Species":"Hibernator Pokémon","Height":1.8,"Weight":125.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":25,"Moves":[{"Level":1,"ID":359},{"Level":2,"ID":343},{"Level":3,"ID":10},{"Level":4,"ID":43},{"Level":5,"ID":122},{"Level":6,"ID":313},{"Level":8,"ID":154},{"Level":15,"ID":185},{"Level":22,"ID":230},{"Level":25,"ID":589},{"Level":29,"ID":163},{"Level":38,"ID":184},{"Level":47,"ID":156},{"Level":49,"ID":173},{"Level":58,"ID":37},{"Level":67,"ID":359}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Ursaring +Number|217 +ExperienceType|1 +BaseExperience|175 +Type1|Normal +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|216 +IsGenderLess|0 +CanBreed|1 +Devolution|216 +IsMale|50 +Ability1|62 +Ability2|95 +HiddenAbility|127 +EggMoves|187,498,370,68,238,242,38,313,232,400,583,69,214,36,281,116 +Machines|223,29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,129,111,9,197,156,213,168,7,210,5,14,25,34,36,38,66,68,69,99,82,102,117,118,130,157,164,264,337,339,269,280,317,332,259,263,290,411,374,421,371,416,444,419,445,363,468,479,496,514,523,526,612,590,15,70,431 +BaseHP|90 +BaseAttack|130 +BaseDefense|75 +BaseSpAttack|75 +BaseSpDefense|75 +BaseSpeed|55 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Although it is a good climber it prefers to snap trees with its forelegs and eat fallen berries.\Hibernator Pokémon\125.8\1.8\0,148,0 +Scale|1.32 +Move|1,359 +Move|1,343 +Move|1,10 +Move|1,43 +Move|1,122 +Move|1,313 +Move|8,154 +Move|15,185 +Move|22,230 +Move|25,589 +Move|29,163 +Move|38,184 +Move|47,156 +Move|49,173 +Move|58,37 +Move|67,359 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/218.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/218.dat index 0aa85fab2..e03867f42 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/218.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/218.dat @@ -1 +1,53 @@ -{"Name":"Slugma","Number":218,"ExperienceType":"MediumFast","BaseExperience":50,"Type1":"Fire","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":218,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[40,49],"HiddenAbility":133,"EggMoves":[151,174,385,257,517,262,205,255,254,256,414],"Machines":[174,205,92,249,237,241,173,63,182,203,218,216,189,104,207,214,126,111,197,156,213,34,36,99,102,115,117,120,157,164,113,53,317,263,290,315,261,416,445,363,488,496,510,611,267,590],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":40,"Def":40,"SpAtk":70,"SpDef":40,"Speed":20},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It never sleeps. It has to keep moving because if it stopped, its magma body would cool and harden.","Species":"Lava Pokémon","Height":0.7,"Weight":35,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":20,"Moves":[{"Level":1,"ID":281},{"Level":2,"ID":123},{"Level":5,"ID":52},{"Level":10,"ID":88},{"Level":14,"ID":106},{"Level":19,"ID":105},{"Level":23,"ID":481},{"Level":28,"ID":246},{"Level":32,"ID":133},{"Level":37,"ID":436},{"Level":41,"ID":157},{"Level":46,"ID":34},{"Level":50,"ID":53},{"Level":55,"ID":414}],"EvolutionConditions":[{"Condition":"38","ConditionType":"Level","Evolution":219,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Slugma +Number|218 +ExperienceType|1 +BaseExperience|50 +Type1|Fire +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|218 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|40 +Ability2|49 +HiddenAbility|133 +EggMoves|151,174,385,257,517,262,205,255,254,256,414 +Machines|174,205,92,249,237,241,173,63,182,203,218,216,189,104,207,214,126,111,197,156,213,34,36,99,102,115,117,120,157,164,113,53,317,263,290,315,261,416,445,363,488,496,510,611,267,590 +BaseHP|40 +BaseAttack|40 +BaseDefense|40 +BaseSpAttack|70 +BaseSpDefense|40 +BaseSpeed|20 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It never sleeps. It has to keep moving because if it stopped, its magma body would cool and harden.\Lava Pokémon\35\0.7\0,148,0 +Scale|0.88 +Move|1,281 +Move|1,123 +Move|5,52 +Move|10,88 +Move|14,106 +Move|19,105 +Move|23,481 +Move|28,246 +Move|32,133 +Move|37,436 +Move|41,157 +Move|46,34 +Move|50,53 +Move|55,414 +TradeValue|20 +EvolutionCondition|219,Level,38,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/219.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/219.dat index 6ddddf5a1..bb7390cde 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/219.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/219.dat @@ -1 +1,56 @@ -{"Name":"Magcargo","Number":219,"ExperienceType":"MediumFast","BaseExperience":144,"Type1":"Fire","Type2":"Rock","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":218,"Devolution":218,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[40,49],"HiddenAbility":133,"EggMoves":[151,174,385,257,517,262,205,255,254,256,414],"Machines":[174,205,92,249,237,241,173,63,182,203,218,76,89,216,189,104,207,214,201,126,111,197,156,213,34,36,38,99,90,102,115,117,120,153,157,164,113,53,317,263,290,315,261,416,397,444,360,446,445,363,479,488,496,510,523,611,267,590,70],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":50,"Def":120,"SpAtk":80,"SpDef":80,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The shell on its back is just skin that has cooled and hardened. It breaks easily with a slight touch.","Species":"Lava Pokémon","Height":0.8,"Weight":55,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":30,"Moves":[{"Level":1,"ID":414},{"Level":2,"ID":281},{"Level":3,"ID":123},{"Level":4,"ID":52},{"Level":5,"ID":88},{"Level":6,"ID":52},{"Level":10,"ID":88},{"Level":14,"ID":106},{"Level":19,"ID":105},{"Level":23,"ID":481},{"Level":28,"ID":246},{"Level":32,"ID":133},{"Level":37,"ID":436},{"Level":38,"ID":504},{"Level":44,"ID":157},{"Level":52,"ID":34},{"Level":59,"ID":53},{"Level":67,"ID":414}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Magcargo +Number|219 +ExperienceType|1 +BaseExperience|144 +Type1|Fire +Type2|Rock +CatchRate|75 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|218 +IsGenderLess|0 +CanBreed|1 +Devolution|218 +IsMale|50 +Ability1|40 +Ability2|49 +HiddenAbility|133 +EggMoves|151,174,385,257,517,262,205,255,254,256,414 +Machines|174,205,92,249,237,241,173,63,182,203,218,76,89,216,189,104,207,214,201,126,111,197,156,213,34,36,38,99,90,102,115,117,120,153,157,164,113,53,317,263,290,315,261,416,397,444,360,446,445,363,479,488,496,510,523,611,267,590,70 +BaseHP|50 +BaseAttack|50 +BaseDefense|120 +BaseSpAttack|80 +BaseSpDefense|80 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The shell on its back is just skin that has cooled and hardened. It breaks easily with a slight touch.\Lava Pokémon\55\0.8\0,148,0 +Scale|0.92 +Move|1,414 +Move|1,281 +Move|1,123 +Move|1,52 +Move|1,88 +Move|5,52 +Move|10,88 +Move|14,106 +Move|19,105 +Move|23,481 +Move|28,246 +Move|32,133 +Move|37,436 +Move|38,504 +Move|44,157 +Move|52,34 +Move|59,53 +Move|67,414 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/22.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/22.dat index f03fd4380..8567668a9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/22.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/22.dat @@ -1 +1,53 @@ -{"Name":"Fearow","Number":22,"ExperienceType":"MediumFast","BaseExperience":155,"Type1":"Normal","Type2":"Flying","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":21,"Devolution":21,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51],"HiddenAbility":97,"EggMoves":[310,297,185,98,13,184,143,161,253,18,211,206],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,38,99,102,117,143,164,332,263,290,355,206,416,432,445,363,365,369,496,497,526,590,19],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":90,"Def":65,"SpAtk":61,"SpDef":61,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"It shoots itself suddenly high into the sky, then plummets down in one fell swoop to strike its prey.","Species":"Beak Pokémon","Height":1.2,"Weight":38,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":35,"Moves":[{"Level":1,"ID":31},{"Level":2,"ID":43},{"Level":3,"ID":45},{"Level":4,"ID":64},{"Level":5,"ID":365},{"Level":6,"ID":529},{"Level":7,"ID":43},{"Level":9,"ID":31},{"Level":13,"ID":228},{"Level":17,"ID":332},{"Level":23,"ID":119},{"Level":29,"ID":97},{"Level":35,"ID":372},{"Level":41,"ID":355},{"Level":47,"ID":65},{"Level":53,"ID":529}],"EvolutionConditions":[],"Items":[{"Id":77,"Chance":5}]} \ No newline at end of file +Name|Fearow +Number|22 +ExperienceType|1 +BaseExperience|155 +Type1|Normal +Type2|Flying +CatchRate|90 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|21 +IsGenderLess|0 +IsMale|50 +Ability1|51 +Ability2|Nothing +HiddenAbility|97 +EggMoves|310,297,185,98,13,184,143,161,253,18,211,206 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,38,99,102,117,143,164,332,263,290,355,206,416,432,445,363,365,369,496,497,526,590,19 +BaseHP|65 +BaseAttack|90 +BaseDefense|65 +BaseSpAttack|61 +BaseSpDefense|61 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|1 +CanSwim|0 +Pokedex|It shoots itself suddenly high into the sky, then plummets down in one fell swoop to strike its prey.\Beak Pokémon\38\1.2\0,148,0 +Scale|1.08 +Move|1,31 +Move|1,43 +Move|1,45 +Move|1,64 +Move|1,365 +Move|1,529 +Move|5,43 +Move|9,31 +Move|13,228 +Move|17,332 +Move|23,119 +Move|29,97 +Move|35,372 +Move|41,355 +Move|47,65 +Move|53,529 +Item|5,77 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/220.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/220.dat index 83aff1d11..53f967e26 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/220.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/220.dat @@ -1 +1,54 @@ -{"Name":"Swinub","Number":220,"ExperienceType":"Slow","BaseExperience":50,"Type1":"Ice","Type2":"Ground","CatchRate":225,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":220,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[12,81],"HiddenAbility":47,"EggMoves":[246,419,44,34,174,38,90,573,556,333,341,446,36,157],"Machines":[29,174,46,92,249,237,173,59,63,196,182,203,218,89,216,91,189,104,207,214,201,111,197,156,213,34,36,58,99,102,115,117,157,164,258,113,317,263,290,416,446,445,363,496,523,590,70],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":50,"Def":40,"SpAtk":30,"SpDef":30,"Speed":50},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It rubs its snout on the ground to find and dig up food. It sometimes discovers hot springs.","Species":"Pig Pokémon","Height":0.4,"Weight":6.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":316},{"Level":5,"ID":300},{"Level":8,"ID":181},{"Level":11,"ID":189},{"Level":14,"ID":203},{"Level":18,"ID":426},{"Level":21,"ID":196},{"Level":24,"ID":420},{"Level":28,"ID":36},{"Level":35,"ID":54},{"Level":37,"ID":89},{"Level":40,"ID":175},{"Level":44,"ID":59},{"Level":48,"ID":133}],"EvolutionConditions":[{"Condition":"33","ConditionType":"Level","Evolution":221,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Swinub +Number|220 +ExperienceType|3 +BaseExperience|50 +Type1|Ice +Type2|Ground +CatchRate|225 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|220 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|12 +Ability2|81 +HiddenAbility|47 +EggMoves|246,419,44,34,174,38,90,573,556,333,341,446,36,157 +Machines|29,174,46,92,249,237,173,59,63,196,182,203,218,89,216,91,189,104,207,214,201,111,197,156,213,34,36,58,99,102,115,117,157,164,258,113,317,263,290,416,446,445,363,496,523,590,70 +BaseHP|50 +BaseAttack|50 +BaseDefense|40 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It rubs its snout on the ground to find and dig up food. It sometimes discovers hot springs.\Pig Pokémon\6.5\0.4\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,316 +Move|5,300 +Move|8,181 +Move|11,189 +Move|14,203 +Move|18,426 +Move|21,196 +Move|24,420 +Move|28,36 +Move|35,54 +Move|37,89 +Move|40,175 +Move|44,59 +Move|48,133 +TradeValue|10 +EvolutionCondition|221,Level,33,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/221.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/221.dat index 922594bde..1ccee023b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/221.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/221.dat @@ -1 +1,58 @@ -{"Name":"Piloswine","Number":221,"ExperienceType":"Slow","BaseExperience":158,"Type1":"Ice","Type2":"Ground","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":220,"Devolution":220,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[12,81],"HiddenAbility":47,"EggMoves":[246,419,44,34,174,38,90,573,556,333,341,446,36,157],"Machines":[29,174,46,92,249,237,173,59,63,196,182,203,218,89,216,91,189,104,207,214,201,111,197,156,213,34,36,38,58,99,90,102,115,117,130,157,164,258,113,317,263,290,416,444,419,446,445,363,496,523,590,70,560],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":100,"Def":80,"SpAtk":60,"SpDef":60,"Speed":50},"RewardEV":{"HP":1,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Because the long hair all over its body obscures its sight, it just keeps charging repeatedly.","Species":"Swine Pokémon","Height":1.1,"Weight":55.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":20,"Moves":[{"Level":1,"ID":246},{"Level":2,"ID":64},{"Level":3,"ID":316},{"Level":4,"ID":300},{"Level":5,"ID":181},{"Level":6,"ID":300},{"Level":8,"ID":181},{"Level":11,"ID":189},{"Level":14,"ID":203},{"Level":18,"ID":426},{"Level":21,"ID":196},{"Level":24,"ID":423},{"Level":28,"ID":36},{"Level":33,"ID":31},{"Level":37,"ID":54},{"Level":41,"ID":37},{"Level":46,"ID":89},{"Level":52,"ID":59},{"Level":58,"ID":133}],"EvolutionConditions":[{"Condition":"246","ConditionType":"Move","Evolution":473,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Piloswine +Number|221 +ExperienceType|3 +BaseExperience|158 +Type1|Ice +Type2|Ground +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|220 +IsGenderLess|0 +CanBreed|1 +Devolution|220 +IsMale|50 +Ability1|12 +Ability2|81 +HiddenAbility|47 +EggMoves|246,419,44,34,174,38,90,573,556,333,341,446,36,157 +Machines|29,174,46,92,249,237,173,59,63,196,182,203,218,89,216,91,189,104,207,214,201,111,197,156,213,34,36,38,58,99,90,102,115,117,130,157,164,258,113,317,263,290,416,444,419,446,445,363,496,523,590,70,560 +BaseHP|100 +BaseAttack|100 +BaseDefense|80 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|50 +FPHP|1 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Because the long hair all over its body obscures its sight, it just keeps charging repeatedly.\Swine Pokémon\55.8\1.1\0,148,0 +Scale|1.04 +Move|1,246 +Move|1,64 +Move|1,316 +Move|1,300 +Move|1,181 +Move|5,300 +Move|8,181 +Move|11,189 +Move|14,203 +Move|18,426 +Move|21,196 +Move|24,423 +Move|28,36 +Move|33,31 +Move|37,54 +Move|41,37 +Move|46,89 +Move|52,59 +Move|58,133 +TradeValue|20 +EvolutionCondition|473,move,246,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/222.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/222.dat index 98ed924c4..fbb52c66c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/222.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/222.dat @@ -1 +1,56 @@ -{"Name":"Corsola","Number":222,"ExperienceType":"Fast","BaseExperience":133,"Type1":"Water","Type2":"Rock","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water3","BaseEggSteps":5355,"EggPokemon":222,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[55,30],"HiddenAbility":144,"EggMoves":[133,392,112,117,293,109,174,457,333,275,54,267,103,352,157,219],"Machines":[29,174,205,92,249,237,241,173,59,63,182,240,203,218,89,216,91,94,247,189,104,207,214,201,111,197,156,213,34,36,61,55,58,99,102,115,117,120,153,157,164,352,347,258,113,219,317,263,290,362,416,397,444,446,445,363,496,503,523,267,590,57,70,250],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":55,"Def":85,"SpAtk":65,"SpDef":85,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It continuously sheds and grows. The tip of its head is prized as a treasure because of its beauty.","Species":"Coral Pokémon","Height":0.6,"Weight":5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":30,"Moves":[{"Level":1,"ID":33},{"Level":4,"ID":106},{"Level":8,"ID":145},{"Level":10,"ID":105},{"Level":13,"ID":287},{"Level":17,"ID":61},{"Level":20,"ID":246},{"Level":23,"ID":1},{"Level":27,"ID":131},{"Level":29,"ID":334},{"Level":31,"ID":350},{"Level":35,"ID":203},{"Level":38,"ID":392},{"Level":41,"ID":408},{"Level":45,"ID":243},{"Level":47,"ID":414},{"Level":50,"ID":175}],"EvolutionConditions":[],"Items":[{"Id":125,"Chance":5}]} \ No newline at end of file +Name|Corsola +Number|222 +ExperienceType|0 +BaseExperience|133 +Type1|Water +Type2|Rock +CatchRate|60 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|5355 +EggPokemon|222 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|55 +Ability2|30 +HiddenAbility|144 +EggMoves|133,392,112,117,293,109,174,457,333,275,54,267,103,352,157,219 +Machines|29,174,205,92,249,237,241,173,59,63,182,240,203,218,89,216,91,94,247,189,104,207,214,201,111,197,156,213,34,36,61,55,58,99,102,115,117,120,153,157,164,352,347,258,113,219,317,263,290,362,416,397,444,446,445,363,496,503,523,267,590,57,70,250 +BaseHP|55 +BaseAttack|55 +BaseDefense|85 +BaseSpAttack|65 +BaseSpDefense|85 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It continuously sheds and grows. The tip of its head is prized as a treasure because of its beauty.\Coral Pokémon\5\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|4,106 +Move|8,145 +Move|10,105 +Move|13,287 +Move|17,61 +Move|20,246 +Move|23,381 +Move|27,131 +Move|29,334 +Move|31,350 +Move|35,203 +Move|38,392 +Move|41,408 +Move|45,243 +Move|47,414 +Move|50,175 +TradeValue|30 +Item|5,125 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/223.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/223.dat index 3ddaf773e..034b6a5c1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/223.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/223.dat @@ -1 +1,52 @@ -{"Name":"Remoraid","Number":223,"ExperienceType":"MediumFast","BaseExperience":60,"Type1":"Water","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water2","BaseEggSteps":5355,"EggPokemon":223,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[55,97],"HiddenAbility":141,"EggMoves":[491,62,494,175,114,341,190,350,103,173,48,129,352,323,86],"Machines":[174,92,237,241,173,59,63,182,240,203,218,216,94,189,104,207,214,129,111,197,156,213,168,36,61,55,58,99,102,117,86,164,352,331,53,263,290,362,451,416,445,363,479,496,503,510,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":65,"Def":35,"SpAtk":65,"SpDef":35,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"It has superb accuracy. The water it shoots out can strike moving prey from more than 300 feet away.","Species":"Jet Pokémon","Height":0.6,"Weight":12,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":55},{"Level":6,"ID":199},{"Level":10,"ID":60},{"Level":14,"ID":62},{"Level":18,"ID":61},{"Level":22,"ID":116},{"Level":26,"ID":352},{"Level":30,"ID":324},{"Level":34,"ID":58},{"Level":38,"ID":331},{"Level":42,"ID":56},{"Level":46,"ID":63},{"Level":50,"ID":1}],"EvolutionConditions":[{"Condition":"25","ConditionType":"Level","Evolution":224,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Remoraid +Number|223 +ExperienceType|1 +BaseExperience|60 +Type1|Water +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water2 +BaseEggSteps|5355 +EggPokemon|223 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|55 +Ability2|97 +HiddenAbility|141 +EggMoves|491,62,494,175,114,341,190,350,103,173,48,129,352,323,86 +Machines|174,92,237,241,173,59,63,182,240,203,218,216,94,189,104,207,214,129,111,197,156,213,168,36,61,55,58,99,102,117,86,164,352,331,53,263,290,362,451,416,445,363,479,496,503,510,590,57,250,127,291 +BaseHP|35 +BaseAttack|65 +BaseDefense|35 +BaseSpAttack|65 +BaseSpDefense|35 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|It has superb accuracy. The water it shoots out can strike moving prey from more than 300 feet away.\Jet Pokémon\12\0.6\0,148,0 +Scale|0.84 +Move|1,55 +Move|6,199 +Move|10,60 +Move|14,62 +Move|18,61 +Move|22,116 +Move|26,352 +Move|30,324 +Move|34,58 +Move|38,331 +Move|42,56 +Move|46,63 +Move|50,487 +TradeValue|15 +EvolutionCondition|224,Level,25,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/224.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/224.dat index c8c7f6b9e..ec8395738 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/224.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/224.dat @@ -1 +1,57 @@ -{"Name":"Octillery","Number":224,"ExperienceType":"MediumFast","BaseExperience":168,"Type1":"Water","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water2","BaseEggSteps":5355,"EggPokemon":223,"Devolution":223,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[21,97],"HiddenAbility":141,"EggMoves":[491,62,494,175,114,341,190,350,103,173,48,129,352,323,86],"Machines":[174,92,237,241,173,59,63,182,240,203,218,216,94,189,104,207,214,188,129,111,197,156,213,168,36,61,55,58,66,69,99,102,117,86,164,352,331,53,263,290,412,362,451,371,416,445,363,430,479,482,496,503,510,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":105,"Def":75,"SpAtk":105,"SpDef":75,"Speed":45},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It traps foes with the suction cups on its tentacles, then smashes them with its rock-hard head.","Species":"Jet Pokémon","Height":0.9,"Weight":28.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":25,"Moves":[{"Level":1,"ID":441},{"Level":2,"ID":350},{"Level":3,"ID":55},{"Level":4,"ID":132},{"Level":5,"ID":60},{"Level":6,"ID":62},{"Level":7,"ID":132},{"Level":10,"ID":60},{"Level":14,"ID":62},{"Level":18,"ID":61},{"Level":22,"ID":116},{"Level":25,"ID":190},{"Level":28,"ID":378},{"Level":34,"ID":324},{"Level":40,"ID":58},{"Level":46,"ID":331},{"Level":52,"ID":56},{"Level":58,"ID":63},{"Level":64,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Octillery +Number|224 +ExperienceType|1 +BaseExperience|168 +Type1|Water +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water2 +BaseEggSteps|5355 +EggPokemon|223 +IsGenderLess|0 +CanBreed|1 +Devolution|223 +IsMale|50 +Ability1|21 +Ability2|97 +HiddenAbility|141 +EggMoves|491,62,494,175,114,341,190,350,103,173,48,129,352,323,86 +Machines|174,92,237,241,173,59,63,182,240,203,218,216,94,189,104,207,214,188,129,111,197,156,213,168,36,61,55,58,66,69,99,102,117,86,164,352,331,53,263,290,412,362,451,371,416,445,363,430,479,482,496,503,510,590,57,250,127,291 +BaseHP|75 +BaseAttack|105 +BaseDefense|75 +BaseSpAttack|105 +BaseSpDefense|75 +BaseSpeed|45 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It traps foes with the suction cups on its tentacles, then smashes them with its rock-hard head.\Jet Pokémon\28.5\0.9\0,148,0 +Scale|0.96 +Move|1,441 +Move|1,350 +Move|1,55 +Move|1,132 +Move|1,60 +Move|1,62 +Move|6,132 +Move|10,60 +Move|14,62 +Move|18,61 +Move|22,116 +Move|25,190 +Move|28,378 +Move|34,324 +Move|40,58 +Move|46,331 +Move|52,56 +Move|58,63 +Move|64,487 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/225.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/225.dat index 1bf2f4707..5f5d8bf8b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/225.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/225.dat @@ -1 +1,39 @@ -{"Name":"Delibird","Number":225,"ExperienceType":"Fast","BaseExperience":116,"Type1":"Ice","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":225,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[72,55],"HiddenAbility":15,"EggMoves":[62,516,194,573,301,420,229,191,252,248,8,196,98,150],"Machines":[29,174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,168,5,34,36,58,66,68,69,99,102,117,121,143,164,264,352,258,280,332,263,290,374,278,416,432,419,445,363,365,496,524,612,590,19],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":55,"Def":45,"SpAtk":65,"SpDef":45,"Speed":75},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It carries food all day long. There are tales about lost people who were saved by its stored food.","Species":"Delivery Pokémon","Height":0.9,"Weight":16,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":50,"Moves":[{"Level":1,"ID":217}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Delibird +Number|225 +ExperienceType|0 +BaseExperience|116 +Type1|Ice +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|225 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|72 +Ability2|55 +HiddenAbility|15 +EggMoves|62,516,194,573,301,420,229,191,252,248,8,196,98,150 +Machines|29,174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,168,5,34,36,58,66,68,69,99,102,117,121,143,164,264,352,258,280,332,263,290,374,278,416,432,419,445,363,365,496,524,612,590,19 +BaseHP|45 +BaseAttack|55 +BaseDefense|45 +BaseSpAttack|65 +BaseSpDefense|45 +BaseSpeed|75 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It carries food all day long. There are tales about lost people who were saved by its stored food.\Delivery Pokémon\16\0.9\0,148,0 +Scale|0.96 +Move|1,217 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/226.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/226.dat index 8f45b8958..6d3984c80 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/226.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/226.dat @@ -1 +1,58 @@ -{"Name":"Mantine","Number":226,"ExperienceType":"Slow","BaseExperience":163,"Type1":"Water","Type2":"Flying","CatchRate":25,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":458,"Devolution":458,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,11],"HiddenAbility":41,"EggMoves":[133,114,56,243,300,324,21,150,366,239,346,469,157],"Machines":[29,174,92,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,129,197,156,213,13,18,34,36,38,61,55,58,99,102,117,130,157,164,352,258,331,317,332,263,290,362,416,432,445,363,496,503,512,523,590,19,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":40,"Def":70,"SpAtk":80,"SpDef":140,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"As it majestically swims care if REMORAID attach to it for scavenging its leftovers.","Species":"Kite Pokémon","Height":2.1,"Weight":220,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.44,"Y":1.44,"Z":1.44},"TradeValue":50,"Moves":[{"Level":1,"ID":60},{"Level":2,"ID":331},{"Level":3,"ID":324},{"Level":4,"ID":33},{"Level":5,"ID":145},{"Level":6,"ID":48},{"Level":7,"ID":61},{"Level":8,"ID":48},{"Level":9,"ID":61},{"Level":11,"ID":109},{"Level":14,"ID":17},{"Level":16,"ID":29},{"Level":19,"ID":352},{"Level":23,"ID":1},{"Level":27,"ID":36},{"Level":32,"ID":97},{"Level":36,"ID":403},{"Level":39,"ID":392},{"Level":46,"ID":340},{"Level":49,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Mantine +Number|226 +ExperienceType|3 +BaseExperience|163 +Type1|Water +Type2|Flying +CatchRate|25 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|458 +IsGenderLess|0 +CanBreed|1 +Devolution|458 +IsMale|50 +Ability1|33 +Ability2|11 +HiddenAbility|41 +EggMoves|133,114,56,243,300,324,21,150,366,239,346,469,157 +Machines|29,174,92,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,129,197,156,213,13,18,34,36,38,61,55,58,99,102,117,130,157,164,352,258,331,317,332,263,290,362,416,432,445,363,496,503,512,523,590,19,57,250,127,291 +BaseHP|65 +BaseAttack|40 +BaseDefense|70 +BaseSpAttack|80 +BaseSpDefense|140 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|As it majestically swims care if REMORAID attach to it for scavenging its leftovers.\Kite Pokémon\220\2.1\0,148,0 +Scale|1.44 +Move|1,60 +Move|1,331 +Move|1,324 +Move|1,33 +Move|1,145 +Move|1,48 +Move|1,61 +Move|3,48 +Move|7,61 +Move|11,109 +Move|14,17 +Move|16,29 +Move|19,352 +Move|23,469 +Move|27,36 +Move|32,97 +Move|36,403 +Move|39,392 +Move|46,340 +Move|49,56 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/227.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/227.dat index 7bbb009ec..05a01414d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/227.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/227.dat @@ -1 +1,53 @@ -{"Name":"Skarmory","Number":227,"ExperienceType":"Slow","BaseExperience":163,"Type1":"Steel","Type2":"Flying","CatchRate":25,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":227,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51,5],"HiddenAbility":133,"EggMoves":[372,413,174,65,203,385,228,143,446,18,355],"Machines":[174,46,92,249,237,241,173,63,182,203,218,216,189,104,207,214,201,129,197,156,213,168,211,13,14,18,32,36,38,68,99,102,117,130,143,157,164,269,317,332,259,263,290,355,371,416,432,446,445,399,404,363,365,430,496,507,590,15,19,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":80,"Def":140,"SpAtk":40,"SpDef":70,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its sturdy wings look heavy, but they are actually hollow and light, allowing it to fly freely in the sky.","Species":"Armor Bird Pokémon","Height":1.7,"Weight":50.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":65,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":64},{"Level":6,"ID":28},{"Level":9,"ID":129},{"Level":12,"ID":97},{"Level":17,"ID":31},{"Level":20,"ID":364},{"Level":23,"ID":314},{"Level":28,"ID":191},{"Level":31,"ID":319},{"Level":34,"ID":211},{"Level":39,"ID":1},{"Level":42,"ID":403},{"Level":45,"ID":163},{"Level":50,"ID":400}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Skarmory +Number|227 +ExperienceType|3 +BaseExperience|163 +Type1|Steel +Type2|Flying +CatchRate|25 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|227 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|51 +Ability2|5 +HiddenAbility|133 +EggMoves|372,413,174,65,203,385,228,143,446,18,355 +Machines|174,46,92,249,237,241,173,63,182,203,218,216,189,104,207,214,201,129,197,156,213,168,211,13,14,18,32,36,38,68,99,102,117,130,143,157,164,269,317,332,259,263,290,355,371,416,432,446,445,399,404,363,365,430,496,507,590,15,19,148 +BaseHP|65 +BaseAttack|80 +BaseDefense|140 +BaseSpAttack|40 +BaseSpDefense|70 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its sturdy wings look heavy, but they are actually hollow and light, allowing it to fly freely in the sky.\Armor Bird Pokémon\50.5\1.7\0,148,0 +Scale|1.28 +Move|1,43 +Move|1,64 +Move|6,28 +Move|9,129 +Move|12,97 +Move|17,31 +Move|20,364 +Move|23,314 +Move|28,191 +Move|31,319 +Move|34,211 +Move|39,475 +Move|42,403 +Move|45,163 +Move|50,400 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/228.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/228.dat index 8e2096cbe..38735d8a0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/228.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/228.dat @@ -1 +1,55 @@ -{"Name":"Houndour","Number":228,"ExperienceType":"Slow","BaseExperience":66,"Type1":"Dark","Type2":"Fire","CatchRate":120,"BaseFriendship":35,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":228,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[48,18],"HiddenAbility":127,"EggMoves":[251,68,194,364,424,83,417,386,228,99,179,180,389,422,261],"Machines":[29,174,46,92,249,237,241,173,63,182,203,218,76,231,216,247,189,104,207,214,188,126,129,138,197,156,213,168,171,34,36,68,99,102,117,130,164,269,53,259,263,290,289,315,261,373,371,416,445,399,363,488,496,510,514,555,590,560],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":60,"Def":30,"SpAtk":80,"SpDef":50,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It uses different kinds of cries for communicating with others of its kind and for pursuing its prey.","Species":"Dark Pokémon","Height":0.6,"Weight":10.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":52},{"Level":4,"ID":336},{"Level":8,"ID":123},{"Level":13,"ID":46},{"Level":16,"ID":44},{"Level":20,"ID":316},{"Level":25,"ID":251},{"Level":28,"ID":424},{"Level":32,"ID":185},{"Level":37,"ID":373},{"Level":40,"ID":1},{"Level":44,"ID":53},{"Level":49,"ID":242},{"Level":52,"ID":417},{"Level":56,"ID":517}],"EvolutionConditions":[{"Condition":"24","ConditionType":"Level","Evolution":229,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Houndour +Number|228 +ExperienceType|3 +BaseExperience|66 +Type1|Dark +Type2|Fire +CatchRate|120 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|228 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|48 +Ability2|18 +HiddenAbility|127 +EggMoves|251,68,194,364,424,83,417,386,228,99,179,180,389,422,261 +Machines|29,174,46,92,249,237,241,173,63,182,203,218,76,231,216,247,189,104,207,214,188,126,129,138,197,156,213,168,171,34,36,68,99,102,117,130,164,269,53,259,263,290,289,315,261,373,371,416,445,399,363,488,496,510,514,555,590,560 +BaseHP|45 +BaseAttack|60 +BaseDefense|30 +BaseSpAttack|80 +BaseSpDefense|50 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It uses different kinds of cries for communicating with others of its kind and for pursuing its prey.\Dark Pokémon\10.8\0.6\0,148,0 +Scale|0.84 +Move|1,43 +Move|1,52 +Move|4,336 +Move|8,123 +Move|13,46 +Move|16,44 +Move|20,316 +Move|25,251 +Move|28,424 +Move|32,185 +Move|37,373 +Move|40,492 +Move|44,53 +Move|49,242 +Move|52,417 +Move|56,517 +TradeValue|15 +EvolutionCondition|229,Level,24,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/229.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/229.dat index fae585a66..a3b5a9cb4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/229.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/229.dat @@ -1 +1,59 @@ -{"Name":"Houndoom","Number":229,"ExperienceType":"Slow","BaseExperience":175,"Type1":"Dark","Type2":"Fire","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":228,"Devolution":228,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[48,18],"HiddenAbility":127,"EggMoves":[251,68,194,364,424,83,417,386,228,99,179,180,389,422,261],"Machines":[29,174,46,92,249,237,241,173,63,182,203,218,76,231,216,247,189,104,207,214,188,126,129,138,197,156,213,168,171,25,32,34,36,38,68,99,82,102,117,130,164,269,53,259,263,290,289,315,261,373,371,416,445,399,363,488,496,510,514,555,590,70,560],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":90,"Def":50,"SpAtk":110,"SpDef":80,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If you are burned by the flames it shoots from its mouth, the pain will never go away.","Species":"Dark Pokémon","Height":1.4,"Weight":35,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":30,"Moves":[{"Level":1,"ID":517},{"Level":2,"ID":417},{"Level":3,"ID":422},{"Level":4,"ID":43},{"Level":5,"ID":52},{"Level":6,"ID":336},{"Level":7,"ID":123},{"Level":8,"ID":336},{"Level":9,"ID":123},{"Level":13,"ID":46},{"Level":16,"ID":44},{"Level":20,"ID":316},{"Level":26,"ID":251},{"Level":30,"ID":424},{"Level":35,"ID":185},{"Level":41,"ID":373},{"Level":45,"ID":1},{"Level":50,"ID":53},{"Level":56,"ID":242},{"Level":60,"ID":417},{"Level":65,"ID":517}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Houndoom +Number|229 +ExperienceType|3 +BaseExperience|175 +Type1|Dark +Type2|Fire +CatchRate|45 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|228 +IsGenderLess|0 +CanBreed|1 +Devolution|228 +IsMale|50 +Ability1|48 +Ability2|18 +HiddenAbility|127 +EggMoves|251,68,194,364,424,83,417,386,228,99,179,180,389,422,261 +Machines|29,174,46,92,249,237,241,173,63,182,203,218,76,231,216,247,189,104,207,214,188,126,129,138,197,156,213,168,171,25,32,34,36,38,68,99,82,102,117,130,164,269,53,259,263,290,289,315,261,373,371,416,445,399,363,488,496,510,514,555,590,70,560 +BaseHP|75 +BaseAttack|90 +BaseDefense|50 +BaseSpAttack|110 +BaseSpDefense|80 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If you are burned by the flames it shoots from its mouth, the pain will never go away.\Dark Pokémon\35\1.4\0,148,0 +Scale|1.16 +Move|1,517 +Move|1,417 +Move|1,422 +Move|1,43 +Move|1,52 +Move|1,336 +Move|1,123 +Move|4,336 +Move|8,123 +Move|13,46 +Move|16,44 +Move|20,316 +Move|26,251 +Move|30,424 +Move|35,185 +Move|41,373 +Move|45,492 +Move|50,53 +Move|56,242 +Move|60,417 +Move|65,517 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/229_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/229_mega.dat new file mode 100644 index 000000000..27f8a44ab --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/229_mega.dat @@ -0,0 +1,59 @@ +Name|Mega Houndoom +Number|229 +ExperienceType|3 +BaseExperience|175 +Type1|Dark +Type2|Fire +CatchRate|45 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|228 +IsGenderLess|0 +CanBreed|1 +Devolution|228 +IsMale|50 +Ability1|94 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|251,68,194,364,424,83,417,386,228,99,179,180,389,422,261 +Machines|29,174,46,92,249,237,241,173,63,182,203,218,76,231,216,247,189,104,207,214,188,126,129,138,197,156,213,168,171,25,32,34,36,38,68,99,82,102,117,130,164,269,53,259,263,290,289,315,261,373,371,416,445,399,363,488,496,510,514,555,590,70,560 +BaseHP|75 +BaseAttack|90 +BaseDefense|90 +BaseSpAttack|140 +BaseSpDefense|90 +BaseSpeed|115 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If you are burned by the flames it shoots from its mouth, the pain will never go away.\Dark Pokémon\49.5\1.9\0,148,0 +Scale|1.16 +Move|1,517 +Move|1,417 +Move|1,422 +Move|1,43 +Move|1,52 +Move|1,336 +Move|1,123 +Move|4,336 +Move|8,123 +Move|13,46 +Move|16,44 +Move|20,316 +Move|26,251 +Move|30,424 +Move|35,185 +Move|41,373 +Move|45,492 +Move|50,53 +Move|56,242 +Move|60,417 +Move|65,517 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/23.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/23.dat index a12d478ed..80475ba6f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/23.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/23.dat @@ -1 +1,54 @@ -{"Name":"Ekans","Number":23,"ExperienceType":"MediumFast","BaseExperience":58,"Type1":"Poison","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":23,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22,61],"HiddenAbility":127,"EggMoves":[251,50,231,342,305,228,184,21,289,180,389,415],"Machines":[29,174,92,237,241,173,63,182,240,202,203,218,231,89,216,91,104,207,214,188,197,156,213,168,34,36,99,72,90,102,117,130,157,164,317,259,263,290,289,371,416,445,399,363,398,474,482,496,523,611,590,70],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":60,"Def":44,"SpAtk":40,"SpDef":54,"Speed":55},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can freely detach its jaw to swallow large prey whole. It can become too heavy to move, however.","Species":"Snake Pokémon","Height":2,"Weight":6.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":10,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":35},{"Level":4,"ID":40},{"Level":9,"ID":44},{"Level":12,"ID":137},{"Level":17,"ID":103},{"Level":20,"ID":51},{"Level":25,"ID":254},{"Level":26,"ID":255},{"Level":27,"ID":256},{"Level":28,"ID":491},{"Level":33,"ID":426},{"Level":36,"ID":1},{"Level":38,"ID":1},{"Level":41,"ID":114},{"Level":44,"ID":489},{"Level":49,"ID":441}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Level","Evolution":24,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Ekans +Number|23 +ExperienceType|1 +BaseExperience|58 +Type1|Poison +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|23 +IsGenderLess|0 +IsMale|50 +Ability1|22 +Ability2|61 +HiddenAbility|127 +EggMoves|251,50,231,342,305,228,184,21,289,180,389,415 +Machines|29,174,92,237,241,173,63,182,240,202,203,218,231,89,216,91,104,207,214,188,197,156,213,168,34,36,99,72,90,102,117,130,157,164,317,259,263,290,289,371,416,445,399,363,398,474,482,496,523,611,590,70 +BaseHP|35 +BaseAttack|60 +BaseDefense|44 +BaseSpAttack|40 +BaseSpDefense|54 +BaseSpeed|55 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can freely detach its jaw to swallow large prey whole. It can become too heavy to move, however.\Snake Pokémon\6.9\2\0,148,0 +Scale|1.4 +Move|1,43 +Move|1,35 +Move|4,40 +Move|9,44 +Move|12,137 +Move|17,103 +Move|20,51 +Move|25,254 +Move|25,255 +Move|25,256 +Move|28,491 +Move|33,426 +Move|36,380 +Move|38,562 +Move|41,114 +Move|44,489 +Move|49,441 +EvolutionCondition|24,Level,22,Level +TradeValue|10 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/230.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/230.dat index 5e5a1ba25..ec96304db 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/230.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/230.dat @@ -1 +1,57 @@ -{"Name":"Kingdra","Number":230,"ExperienceType":"MediumFast","BaseExperience":243,"Type1":"Water","Type2":"Dragon","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":116,"Devolution":117,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,97],"HiddenAbility":6,"EggMoves":[62,499,50,225,82,175,330,190,200,13,324,150,352],"Machines":[29,174,92,237,173,59,63,196,182,240,203,218,225,216,104,207,214,129,197,156,213,34,36,38,61,55,58,68,99,82,102,117,130,164,352,258,263,290,362,406,416,445,363,430,496,503,511,590,57,250,127,291],"TutorMoves":[434],"BaseStats":{"HP":75,"Atk":95,"Def":95,"SpAtk":95,"SpDef":95,"Speed":85},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"It is said that it usually hides in underwater caves. It can create whirlpools by yawning.","Species":"Dragon Pokémon","Height":1.8,"Weight":152,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":75,"Moves":[{"Level":1,"ID":406},{"Level":2,"ID":281},{"Level":3,"ID":55},{"Level":4,"ID":108},{"Level":5,"ID":43},{"Level":6,"ID":145},{"Level":7,"ID":108},{"Level":8,"ID":43},{"Level":11,"ID":145},{"Level":14,"ID":116},{"Level":18,"ID":61},{"Level":23,"ID":97},{"Level":26,"ID":239},{"Level":30,"ID":362},{"Level":40,"ID":56},{"Level":48,"ID":349},{"Level":57,"ID":406}],"EvolutionConditions":[],"Items":[{"Id":151,"Chance":5}]} \ No newline at end of file +Name|Kingdra +Number|230 +ExperienceType|1 +BaseExperience|243 +Type1|Water +Type2|Dragon +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|116 +IsGenderLess|0 +CanBreed|1 +Devolution|117 +IsMale|50 +Ability1|33 +Ability2|97 +HiddenAbility|6 +EggMoves|62,499,50,225,82,175,330,190,200,13,324,150,352 +Machines|29,174,92,237,173,59,63,196,182,240,203,218,225,216,104,207,214,129,197,156,213,34,36,38,61,55,58,68,99,82,102,117,130,164,352,258,263,290,362,406,416,445,363,430,496,503,511,590,57,250,127,291 +TutorMoves|434 +BaseHP|75 +BaseAttack|95 +BaseDefense|95 +BaseSpAttack|95 +BaseSpDefense|95 +BaseSpeed|85 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|It is said that it usually hides in underwater caves. It can create whirlpools by yawning.\Dragon Pokémon\152\1.8\0,148,0 +Scale|1.32 +Move|1,406 +Move|1,281 +Move|1,55 +Move|1,108 +Move|1,43 +Move|1,145 +Move|4,108 +Move|8,43 +Move|11,145 +Move|14,116 +Move|18,61 +Move|23,97 +Move|26,239 +Move|30,362 +Move|40,56 +Move|48,349 +Move|57,406 +TradeValue|75 +Item|5,151 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/231.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/231.dat index 11c1031a7..7955ede19 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/231.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/231.dat @@ -1 +1,53 @@ -{"Name":"Phanpy","Number":231,"ExperienceType":"MediumFast","BaseExperience":66,"Type1":"Ground","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":231,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[53],"HiddenAbility":8,"EggMoves":[246,34,68,283,90,116,457,484,420,189,583,173,55],"Machines":[29,174,205,46,92,249,237,241,173,63,182,203,218,231,89,216,189,104,207,214,111,197,156,213,25,34,36,68,99,90,102,117,130,164,263,290,416,446,445,363,496,523,590,70,560],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":60,"Def":60,"SpAtk":40,"SpDef":40,"Speed":40},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It swings its long snout around playfully, but because it is so strong, that can be dangerous.","Species":"Long Nose Pokémon","Height":0.5,"Weight":33.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":316},{"Level":2,"ID":33},{"Level":3,"ID":45},{"Level":4,"ID":111},{"Level":6,"ID":175},{"Level":10,"ID":36},{"Level":15,"ID":205},{"Level":19,"ID":363},{"Level":24,"ID":21},{"Level":28,"ID":203},{"Level":33,"ID":204},{"Level":37,"ID":387},{"Level":42,"ID":38}],"EvolutionConditions":[{"Condition":"25","ConditionType":"Level","Evolution":232,"Trigger":"LevelUp"}],"Items":[{"Id":2036,"Chance":5}]} \ No newline at end of file +Name|Phanpy +Number|231 +ExperienceType|1 +BaseExperience|66 +Type1|Ground +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|231 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|Nothing +HiddenAbility|8 +EggMoves|246,34,68,283,90,116,457,484,420,189,583,173,55 +Machines|29,174,205,46,92,249,237,241,173,63,182,203,218,231,89,216,189,104,207,214,111,197,156,213,25,34,36,68,99,90,102,117,130,164,263,290,416,446,445,363,496,523,590,70,560 +BaseHP|90 +BaseAttack|60 +BaseDefense|60 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|40 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It swings its long snout around playfully, but because it is so strong, that can be dangerous.\Long Nose Pokémon\33.5\0.5\0,148,0 +Scale|0.7 +Move|1,316 +Move|1,33 +Move|1,45 +Move|1,111 +Move|6,175 +Move|10,36 +Move|15,205 +Move|19,363 +Move|24,21 +Move|28,203 +Move|33,204 +Move|37,387 +Move|42,38 +TradeValue|15 +Item|5,2036 +EvolutionCondition|232,Level,25,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/232.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/232.dat index 86dbcf2ab..ded558cf2 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/232.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/232.dat @@ -1 +1,55 @@ -{"Name":"Donphan","Number":232,"ExperienceType":"MediumFast","BaseExperience":175,"Type1":"Ground","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":231,"Devolution":231,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5],"HiddenAbility":8,"EggMoves":[246,34,68,283,90,116,457,484,420,189,583,173,55],"Machines":[29,174,205,46,92,249,237,241,173,63,182,203,218,231,89,216,189,104,207,214,111,197,156,213,25,32,34,36,38,68,99,90,102,117,130,164,263,290,416,446,445,363,496,523,590,70,560],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":120,"Def":120,"SpAtk":60,"SpDef":60,"Speed":50},"RewardEV":{"HP":0,"Atk":1,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has sharp rugged hide. Its tackle is strong enough to knock down a house.","Species":"Armor Pokémon","Height":1.1,"Weight":120,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":25,"Moves":[{"Level":1,"ID":424},{"Level":2,"ID":422},{"Level":3,"ID":30},{"Level":4,"ID":45},{"Level":5,"ID":111},{"Level":6,"ID":523},{"Level":7,"ID":229},{"Level":10,"ID":282},{"Level":15,"ID":205},{"Level":19,"ID":222},{"Level":24,"ID":21},{"Level":25,"ID":31},{"Level":31,"ID":372},{"Level":39,"ID":184},{"Level":46,"ID":89},{"Level":54,"ID":416}],"EvolutionConditions":[],"Items":[{"Id":2036,"Chance":5}]} \ No newline at end of file +Name|Donphan +Number|232 +ExperienceType|1 +BaseExperience|175 +Type1|Ground +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|231 +IsGenderLess|0 +CanBreed|1 +Devolution|231 +IsMale|50 +Ability1|5 +Ability2|Nothing +HiddenAbility|8 +EggMoves|246,34,68,283,90,116,457,484,420,189,583,173,55 +Machines|29,174,205,46,92,249,237,241,173,63,182,203,218,231,89,216,189,104,207,214,111,197,156,213,25,32,34,36,38,68,99,90,102,117,130,164,263,290,416,446,445,363,496,523,590,70,560 +BaseHP|90 +BaseAttack|120 +BaseDefense|120 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has sharp rugged hide. Its tackle is strong enough to knock down a house.\Armor Pokémon\120\1.1\0,148,0 +Scale|1.04 +Move|1,424 +Move|1,422 +Move|1,30 +Move|1,45 +Move|1,111 +Move|1,523 +Move|6,229 +Move|10,282 +Move|15,205 +Move|19,222 +Move|24,21 +Move|25,31 +Move|31,372 +Move|39,184 +Move|46,89 +Move|54,416 +TradeValue|25 +Item|5,2036 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/233.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/233.dat index d947cd8e6..31c98549a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/233.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/233.dat @@ -1 +1,56 @@ -{"Name":"Porygon2","Number":233,"ExperienceType":"MediumFast","BaseExperience":180,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":137,"Devolution":137,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[36,88],"HiddenAbility":148,"EggMoves":[],"Machines":[174,92,192,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,94,247,104,207,214,129,111,138,197,156,213,168,171,36,61,55,58,99,85,100,102,117,130,86,161,164,351,332,263,290,451,278,416,445,363,433,473,496,590,148],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":80,"Def":90,"SpAtk":105,"SpDef":95,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This upgraded version of PORYGON is designed for space exploration. It can't fly, however.","Species":"Virtual Pokémon","Height":0.6,"Weight":32.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":90,"Moves":[{"Level":1,"ID":192},{"Level":2,"ID":277},{"Level":3,"ID":176},{"Level":4,"ID":33},{"Level":5,"ID":160},{"Level":6,"ID":111},{"Level":7,"ID":60},{"Level":12,"ID":97},{"Level":18,"ID":105},{"Level":23,"ID":1},{"Level":29,"ID":324},{"Level":34,"ID":278},{"Level":40,"ID":435},{"Level":45,"ID":199},{"Level":50,"ID":161},{"Level":56,"ID":277},{"Level":62,"ID":192},{"Level":67,"ID":63}],"EvolutionConditions":[{"Condition":"185","ConditionType":"HoldItem","Evolution":474,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Porygon2 +Number|233 +ExperienceType|1 +BaseExperience|180 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|137 +IsGenderLess|1 +CanBreed|1 +Devolution|137 +IsMale|0.0 +Ability1|36 +Ability2|88 +HiddenAbility|148 +Machines|174,92,192,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,94,247,104,207,214,129,111,138,197,156,213,168,171,36,61,55,58,99,85,100,102,117,130,86,161,164,351,332,263,290,451,278,416,445,363,433,473,496,590,148 +BaseHP|85 +BaseAttack|80 +BaseDefense|90 +BaseSpAttack|105 +BaseSpDefense|95 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This upgraded version of PORYGON is designed for space exploration. It can't fly, however.\Virtual Pokémon\32.5\0.6\0,148,0 +Scale|0.84 +Move|1,192 +Move|1,277 +Move|1,176 +Move|1,33 +Move|1,160 +Move|1,111 +Move|7,60 +Move|12,97 +Move|18,105 +Move|23,393 +Move|29,324 +Move|34,278 +Move|40,435 +Move|45,199 +Move|50,161 +Move|56,277 +Move|62,192 +Move|67,63 +TradeValue|90 +EvolutionCondition|474,holditem,185,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/234.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/234.dat index ebf09348f..56dc1d2fb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/234.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/234.dat @@ -1 +1,54 @@ -{"Name":"Stantler","Number":234,"ExperienceType":"Slow","BaseExperience":163,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":234,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22,119],"HiddenAbility":157,"EggMoves":[44,50,24,326,224,382,300,99,180,37,428,244,207,113,115],"Machines":[29,174,46,92,244,237,241,173,63,182,203,218,231,89,216,189,104,207,214,129,197,156,213,171,25,32,34,36,38,99,90,102,117,130,164,351,263,290,285,412,416,445,363,473,496,523,526,590,560],"TutorMoves":[],"BaseStats":{"HP":73,"Atk":95,"Def":62,"SpAtk":85,"SpDef":65,"Speed":85},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The curved antlers subtly change the flow of air to create a strange space where reality is distorted.","Species":"Big Horn Pokémon","Height":1.4,"Weight":71.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":35,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":43},{"Level":7,"ID":310},{"Level":10,"ID":95},{"Level":13,"ID":23},{"Level":16,"ID":28},{"Level":21,"ID":36},{"Level":23,"ID":109},{"Level":27,"ID":347},{"Level":33,"ID":272},{"Level":38,"ID":428},{"Level":43,"ID":26},{"Level":49,"ID":1},{"Level":50,"ID":445},{"Level":55,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Stantler +Number|234 +ExperienceType|3 +BaseExperience|163 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|234 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|22 +Ability2|119 +HiddenAbility|157 +EggMoves|44,50,24,326,224,382,300,99,180,37,428,244,207,113,115 +Machines|29,174,46,92,244,237,241,173,63,182,203,218,231,89,216,189,104,207,214,129,197,156,213,171,25,32,34,36,38,99,90,102,117,130,164,351,263,290,285,412,416,445,363,473,496,523,526,590,560 +BaseHP|73 +BaseAttack|95 +BaseDefense|62 +BaseSpAttack|85 +BaseSpDefense|65 +BaseSpeed|85 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The curved antlers subtly change the flow of air to create a strange space where reality is distorted.\Big Horn Pokémon\71.2\1.4\0,148,0 +Scale|1.16 +Move|1,382 +Move|1,33 +Move|3,43 +Move|7,310 +Move|10,95 +Move|13,23 +Move|16,28 +Move|21,36 +Move|23,109 +Move|27,347 +Move|33,272 +Move|38,428 +Move|43,26 +Move|49,286 +Move|50,445 +Move|55,382 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/235.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/235.dat index cb95ae060..994ffe6ac 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/235.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/235.dat @@ -1 +1,47 @@ -{"Name":"Smeargle","Number":235,"ExperienceType":"Fast","BaseExperience":88,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":235,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[20,101],"HiddenAbility":141,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":20,"Def":35,"SpAtk":20,"SpDef":45,"Speed":75},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A special fluid oozes from the tip of its tail. It paints the fluid everywhere to mark its territory.","Species":"Painter Pokémon","Height":1.2,"Weight":58,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":50,"Moves":[{"Level":1,"ID":166},{"Level":11,"ID":166},{"Level":21,"ID":166},{"Level":31,"ID":166},{"Level":41,"ID":166},{"Level":51,"ID":166},{"Level":61,"ID":166},{"Level":71,"ID":166},{"Level":81,"ID":166},{"Level":91,"ID":166}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Smeargle +Number|235 +ExperienceType|0 +BaseExperience|88 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|235 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|20 +Ability2|101 +HiddenAbility|141 +Machines| +BaseHP|55 +BaseAttack|20 +BaseDefense|35 +BaseSpAttack|20 +BaseSpDefense|45 +BaseSpeed|75 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|A special fluid oozes from the tip of its tail. It paints the fluid everywhere to mark its territory.\Painter Pokémon\58\1.2\0,148,0 +Scale|1.08 +Move|1,166 +Move|11,166 +Move|21,166 +Move|31,166 +Move|41,166 +Move|51,166 +Move|61,166 +Move|71,166 +Move|81,166 +Move|91,166 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/236.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/236.dat index c56c5f2a6..aa718ef92 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/236.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/236.dat @@ -1 +1,48 @@ -{"Name":"Tyrogue","Number":236,"ExperienceType":"MediumFast","BaseExperience":42,"Type1":"Fighting","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":236,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[62,80],"HiddenAbility":72,"EggMoves":[418,68,203,364,270,136,183,170,228,229,410],"Machines":[29,174,92,249,237,241,173,63,182,203,218,216,189,104,207,214,197,156,213,5,25,32,34,36,66,68,69,99,102,117,130,164,339,263,290,416,445,363,490,496,523,590,70],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":35,"Def":35,"SpAtk":35,"SpDef":35,"Speed":35},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is always bursting with energy. To make itself stronger, it keeps on fighting even if it loses.","Species":"Scuffle Pokémon","Height":0.7,"Weight":21,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":20,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":1},{"Level":3,"ID":252},{"Level":4,"ID":193}],"EvolutionConditions":[{"Condition":"0","ConditionType":"AtkDef","Evolution":106,"Trigger":"LevelUp"},{"Condition":"20","ConditionType":"Level","Evolution":106,"Trigger":"LevelUp"},{"Condition":"0","ConditionType":"DefAtk","Evolution":107,"Trigger":"LevelUp"},{"Condition":"20","ConditionType":"Level","Evolution":107,"Trigger":"LevelUp"},{"Condition":"0","ConditionType":"DefEqualsAtk","Evolution":237,"Trigger":"LevelUp"},{"Condition":"20","ConditionType":"Level","Evolution":237,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Tyrogue +Number|236 +ExperienceType|1 +BaseExperience|42 +Type1|Fighting +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|236 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|100 +Ability1|62 +Ability2|80 +HiddenAbility|72 +EggMoves|418,68,203,364,270,136,183,170,228,229,410 +Machines|29,174,92,249,237,241,173,63,182,203,218,216,189,104,207,214,197,156,213,5,25,32,34,36,66,68,69,99,102,117,130,164,339,263,290,416,445,363,490,496,523,590,70 +BaseHP|35 +BaseAttack|35 +BaseDefense|35 +BaseSpAttack|35 +BaseSpDefense|35 +BaseSpeed|35 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is always bursting with energy. To make itself stronger, it keeps on fighting even if it loses.\Scuffle Pokémon\21\0.7\0,148,0 +Scale|0.88 +Move|1,33 +Move|1,270 +Move|1,252 +Move|1,193 +TradeValue|20 +EvolutionCondition|106,atkdef,0,level +EvolutionCondition|106,level,20,level +EvolutionCondition|107,defatk,0,level +EvolutionCondition|107,level,20,level +EvolutionCondition|237,defequalsatk,0,level +EvolutionCondition|237,level,20,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/237.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/237.dat index e04f6d1fb..84b33eaa4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/237.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/237.dat @@ -1 +1,56 @@ -{"Name":"Hitmontop","Number":237,"ExperienceType":"MediumFast","BaseExperience":159,"Type1":"Fighting","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":236,"Devolution":236,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[22,101],"HiddenAbility":80,"EggMoves":[418,68,203,364,270,136,183,170,228,229,410],"Machines":[29,174,92,249,237,241,173,63,182,203,218,216,91,189,104,207,214,129,197,156,213,5,25,32,34,36,38,66,68,69,99,102,117,130,161,164,339,263,290,416,445,363,490,496,514,523,526,590,70],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":95,"Def":95,"SpAtk":35,"SpDef":110,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If you are enchanted by its smooth dance-like kicks, you may get a closer experience with one than you'd like.","Species":"Handstand Pokémon","Height":1.4,"Weight":48,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":45,"Moves":[{"Level":1,"ID":283},{"Level":2,"ID":370},{"Level":3,"ID":279},{"Level":4,"ID":27},{"Level":6,"ID":116},{"Level":10,"ID":228},{"Level":15,"ID":98},{"Level":19,"ID":167},{"Level":24,"ID":229},{"Level":28,"ID":68},{"Level":33,"ID":364},{"Level":37,"ID":97},{"Level":42,"ID":360},{"Level":46,"ID":1},{"Level":47,"ID":1},{"Level":50,"ID":197},{"Level":55,"ID":370},{"Level":60,"ID":283}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Hitmontop +Number|237 +ExperienceType|1 +BaseExperience|159 +Type1|Fighting +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|236 +IsGenderLess|0 +CanBreed|1 +Devolution|236 +IsMale|100 +Ability1|22 +Ability2|101 +HiddenAbility|80 +EggMoves|418,68,203,364,270,136,183,170,228,229,410 +Machines|29,174,92,249,237,241,173,63,182,203,218,216,91,189,104,207,214,129,197,156,213,5,25,32,34,36,38,66,68,69,99,102,117,130,161,164,339,263,290,416,445,363,490,496,514,523,526,590,70 +BaseHP|50 +BaseAttack|95 +BaseDefense|95 +BaseSpAttack|35 +BaseSpDefense|110 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If you are enchanted by its smooth dance-like kicks, you may get a closer experience with one than you'd like.\Handstand Pokémon\48\1.4\0,148,0 +Scale|1.16 +Move|1,283 +Move|1,370 +Move|1,279 +Move|1,27 +Move|6,116 +Move|10,228 +Move|15,98 +Move|19,167 +Move|24,229 +Move|28,68 +Move|33,364 +Move|37,97 +Move|42,360 +Move|46,469 +Move|46,501 +Move|50,197 +Move|55,370 +Move|60,283 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/238.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/238.dat index 6b81b8a81..9c5f991f1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/238.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/238.dat @@ -1 +1,55 @@ -{"Name":"Smoochum","Number":238,"ExperienceType":"MediumFast","BaseExperience":61,"Type1":"Ice","Type2":"Psychic","CatchRate":45,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":238,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[12,108],"HiddenAbility":93,"EggMoves":[445,252,8,96,357,417,358,273,244,142],"Machines":[223,174,92,244,237,230,173,59,63,196,182,203,218,216,94,247,189,104,8,207,214,138,197,156,213,168,171,5,25,34,36,58,6,66,68,69,99,100,102,115,117,118,130,149,164,352,347,258,113,263,290,285,374,371,278,416,419,445,363,447,433,473,496,497,524,526,590,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":30,"Def":15,"SpAtk":85,"SpDef":65,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its lips are the most sensitive part of its body. It always uses its lips first to examine things.","Species":"Kiss Pokémon","Height":0.4,"Weight":6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":1},{"Level":5,"ID":122},{"Level":8,"ID":186},{"Level":11,"ID":181},{"Level":15,"ID":93},{"Level":18,"ID":47},{"Level":21,"ID":531},{"Level":25,"ID":212},{"Level":28,"ID":313},{"Level":31,"ID":1},{"Level":35,"ID":1},{"Level":38,"ID":94},{"Level":41,"ID":1},{"Level":45,"ID":195},{"Level":48,"ID":59}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":124,"Trigger":"LevelUp"}],"Items":[{"Id":2004,"Chance":100}]} \ No newline at end of file +Name|Smoochum +Number|238 +ExperienceType|1 +BaseExperience|61 +Type1|Ice +Type2|Psychic +CatchRate|45 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|238 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|0 +Ability1|12 +Ability2|108 +HiddenAbility|93 +EggMoves|445,252,8,96,357,417,358,273,244,142 +Machines|223,174,92,244,237,230,173,59,63,196,182,203,218,216,94,247,189,104,8,207,214,138,197,156,213,168,171,5,25,34,36,58,6,66,68,69,99,100,102,115,117,118,130,149,164,352,347,258,113,263,290,285,374,371,278,416,419,445,363,447,433,473,496,497,524,526,590,148 +BaseHP|45 +BaseAttack|30 +BaseDefense|15 +BaseSpAttack|85 +BaseSpDefense|65 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its lips are the most sensitive part of its body. It always uses its lips first to examine things.\Kiss Pokémon\6\0.4\0,148,0 +Scale|0.7 +Move|1,1 +Move|5,122 +Move|8,186 +Move|11,181 +Move|15,93 +Move|18,47 +Move|21,531 +Move|25,212 +Move|28,313 +Move|31,381 +Move|35,419 +Move|38,94 +Move|41,383 +Move|45,195 +Move|48,59 +TradeValue|20 +Item|100,2004 +EvolutionCondition|124,level,30,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/239.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/239.dat index 13dd7b684..11b620e92 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/239.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/239.dat @@ -1 +1,53 @@ -{"Name":"Elekid","Number":239,"ExperienceType":"MediumFast","BaseExperience":72,"Type1":"Electric","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":239,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[9],"HiddenAbility":72,"EggMoves":[112,238,223,364,7,264,359,8,2,96,27],"Machines":[223,29,174,92,192,249,237,173,63,182,240,203,218,87,216,189,104,8,207,214,129,9,197,156,213,7,5,34,36,66,68,69,99,102,117,130,86,149,164,264,351,263,290,416,445,363,496,612,590,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":63,"Def":37,"SpAtk":65,"SpDef":55,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It rotates its arms to generate electricity, but it tires easily, so it only charges up a little bit.","Species":"Electric Pokémon","Height":0.6,"Weight":23.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":20,"Moves":[{"Level":1,"ID":98},{"Level":2,"ID":43},{"Level":5,"ID":84},{"Level":8,"ID":67},{"Level":12,"ID":129},{"Level":15,"ID":351},{"Level":19,"ID":86},{"Level":22,"ID":486},{"Level":26,"ID":113},{"Level":29,"ID":9},{"Level":33,"ID":435},{"Level":36,"ID":103},{"Level":40,"ID":85},{"Level":43,"ID":87}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":125,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Elekid +Number|239 +ExperienceType|1 +BaseExperience|72 +Type1|Electric +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|239 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|75 +Ability1|9 +Ability2|Nothing +HiddenAbility|72 +EggMoves|112,238,223,364,7,264,359,8,2,96,27 +Machines|223,29,174,92,192,249,237,173,63,182,240,203,218,87,216,189,104,8,207,214,129,9,197,156,213,7,5,34,36,66,68,69,99,102,117,130,86,149,164,264,351,263,290,416,445,363,496,612,590,148 +BaseHP|45 +BaseAttack|63 +BaseDefense|37 +BaseSpAttack|65 +BaseSpDefense|55 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It rotates its arms to generate electricity, but it tires easily, so it only charges up a little bit.\Electric Pokémon\23.5\0.6\0,148,0 +Scale|0.84 +Move|1,98 +Move|1,43 +Move|5,84 +Move|8,67 +Move|12,129 +Move|15,351 +Move|19,86 +Move|22,486 +Move|26,113 +Move|29,9 +Move|33,435 +Move|36,103 +Move|40,85 +Move|43,87 +TradeValue|20 +EvolutionCondition|125,level,30,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/24.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/24.dat index 1260763ba..a0880d69d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/24.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/24.dat @@ -1 +1,59 @@ -{"Name":"Arbok","Number":24,"ExperienceType":"MediumFast","BaseExperience":153,"Type1":"Poison","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":23,"Devolution":23,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22,61],"HiddenAbility":127,"EggMoves":[251,50,231,342,305,228,184,21,289,180,389,415],"Machines":[29,174,92,237,241,173,63,182,240,202,203,218,231,89,216,91,104,207,214,188,197,156,213,168,34,36,38,99,72,90,102,117,130,157,164,317,259,263,290,289,371,416,445,399,363,398,474,482,496,523,525,611,590,70,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":85,"Def":69,"SpAtk":65,"SpDef":79,"Speed":80},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Transfixing prey with the face-like pattern on its belly, it binds and poisons the frightened victim.","Species":"Cobra Pokémon","Height":3.5,"Weight":65,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":25,"Moves":[{"Level":1,"ID":35},{"Level":2,"ID":40},{"Level":3,"ID":43},{"Level":4,"ID":44},{"Level":5,"ID":422},{"Level":6,"ID":423},{"Level":7,"ID":424},{"Level":8,"ID":40},{"Level":9,"ID":44},{"Level":12,"ID":137},{"Level":17,"ID":103},{"Level":20,"ID":51},{"Level":22,"ID":242},{"Level":27,"ID":254},{"Level":28,"ID":255},{"Level":29,"ID":256},{"Level":32,"ID":491},{"Level":39,"ID":426},{"Level":44,"ID":1},{"Level":48,"ID":1},{"Level":51,"ID":114},{"Level":56,"ID":489},{"Level":63,"ID":441}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Arbok +Number|24 +ExperienceType|1 +BaseExperience|153 +Type1|Poison +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|23 +IsGenderLess|0 +IsMale|50 +Ability1|22 +Ability2|61 +HiddenAbility|127 +EggMoves|251,50,231,342,305,228,184,21,289,180,389,415 +Machines|29,174,92,237,241,173,63,182,240,202,203,218,231,89,216,91,104,207,214,188,197,156,213,168,34,36,38,99,72,90,102,117,130,157,164,317,259,263,290,289,371,416,445,399,363,398,474,482,496,523,525,611,590,70,560 +BaseHP|60 +BaseAttack|85 +BaseDefense|69 +BaseSpAttack|65 +BaseSpDefense|79 +BaseSpeed|80 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Transfixing prey with the face-like pattern on its belly, it binds and poisons the frightened victim.\Cobra Pokémon\65\3.5\0,148,0 +Scale|2 +Move|1,35 +Move|1,40 +Move|1,43 +Move|1,44 +Move|1,422 +Move|1,423 +Move|1,424 +Move|4,40 +Move|9,44 +Move|12,137 +Move|17,103 +Move|20,51 +Move|22,242 +Move|27,254 +Move|27,255 +Move|27,256 +Move|32,491 +Move|39,426 +Move|44,380 +Move|48,562 +Move|51,114 +Move|56,489 +Move|63,441 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/240.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/240.dat index 4d7075604..071d2efa6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/240.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/240.dat @@ -1 +1,53 @@ -{"Name":"Magby","Number":240,"ExperienceType":"MediumFast","BaseExperience":73,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":240,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[49],"HiddenAbility":72,"EggMoves":[112,562,187,238,223,394,116,231,2,183,5,384,103,9],"Machines":[223,29,174,92,249,237,241,173,63,182,203,218,231,216,94,189,104,207,214,126,9,197,156,213,168,7,5,34,36,66,68,69,99,102,117,130,149,164,264,280,53,263,290,374,261,416,445,363,488,496,510,612,590],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":75,"Def":37,"SpAtk":70,"SpDef":55,"Speed":83},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Each and every time it inhales and exhales, hot embers dribble from its mouth and nostrils.","Species":"Live Coal Pokémon","Height":0.7,"Weight":21.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":20,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":123},{"Level":5,"ID":52},{"Level":8,"ID":108},{"Level":12,"ID":185},{"Level":15,"ID":83},{"Level":19,"ID":499},{"Level":22,"ID":481},{"Level":26,"ID":109},{"Level":29,"ID":7},{"Level":33,"ID":436},{"Level":36,"ID":241},{"Level":40,"ID":53},{"Level":43,"ID":126}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":126,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Magby +Number|240 +ExperienceType|1 +BaseExperience|73 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|240 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|75 +Ability1|49 +Ability2|Nothing +HiddenAbility|72 +EggMoves|112,562,187,238,223,394,116,231,2,183,5,384,103,9 +Machines|223,29,174,92,249,237,241,173,63,182,203,218,231,216,94,189,104,207,214,126,9,197,156,213,168,7,5,34,36,66,68,69,99,102,117,130,149,164,264,280,53,263,290,374,261,416,445,363,488,496,510,612,590 +BaseHP|45 +BaseAttack|75 +BaseDefense|37 +BaseSpAttack|70 +BaseSpDefense|55 +BaseSpeed|83 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Each and every time it inhales and exhales, hot embers dribble from its mouth and nostrils.\Live Coal Pokémon\21.4\0.7\0,148,0 +Scale|0.88 +Move|29,7 +Move|1,43 +Move|5,52 +Move|40,53 +Move|15,83 +Move|8,108 +Move|26,109 +Move|1,123 +Move|43,126 +Move|12,185 +Move|36,241 +Move|33,436 +Move|22,481 +Move|19,499 +TradeValue|20 +EvolutionCondition|126,level,30,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/241.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/241.dat index c7fa23d02..8facc1e0a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/241.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/241.dat @@ -1 +1,52 @@ -{"Name":"Miltank","Number":241,"ExperienceType":"Slow","BaseExperience":172,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":241,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[47,113],"HiddenAbility":157,"EggMoves":[562,174,146,38,203,359,531,270,363,217,386,179,69,214,244],"Machines":[223,29,174,205,92,192,249,244,237,241,230,173,59,63,196,182,240,203,218,76,231,87,89,216,247,189,104,8,207,214,201,111,9,197,156,213,7,5,25,32,34,36,38,61,55,58,66,68,69,99,85,90,102,117,118,130,86,157,164,264,352,280,351,317,263,290,411,374,416,360,446,445,363,496,497,514,523,526,612,590,57,70,250,560],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":80,"Def":105,"SpAtk":40,"SpDef":70,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its milk is packed with nutrition making it the ultimate beverage for the sick or weary.","Species":"Milk Cow Pokémon","Height":1.2,"Weight":75.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":40,"Moves":[{"Level":1,"ID":33},{"Level":3,"ID":45},{"Level":5,"ID":111},{"Level":8,"ID":23},{"Level":11,"ID":208},{"Level":15,"ID":117},{"Level":19,"ID":205},{"Level":24,"ID":34},{"Level":29,"ID":428},{"Level":35,"ID":445},{"Level":41,"ID":360},{"Level":48,"ID":215},{"Level":55,"ID":358}],"EvolutionConditions":[],"Items":[{"Id":72,"Chance":100}]} \ No newline at end of file +Name|Miltank +Number|241 +ExperienceType|3 +BaseExperience|172 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|241 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|0 +Ability1|47 +Ability2|113 +HiddenAbility|157 +EggMoves|562,174,146,38,203,359,531,270,363,217,386,179,69,214,244 +Machines|223,29,174,205,92,192,249,244,237,241,230,173,59,63,196,182,240,203,218,76,231,87,89,216,247,189,104,8,207,214,201,111,9,197,156,213,7,5,25,32,34,36,38,61,55,58,66,68,69,99,85,90,102,117,118,130,86,157,164,264,352,280,351,317,263,290,411,374,416,360,446,445,363,496,497,514,523,526,612,590,57,70,250,560 +BaseHP|95 +BaseAttack|80 +BaseDefense|105 +BaseSpAttack|40 +BaseSpDefense|70 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its milk is packed with nutrition making it the ultimate beverage for the sick or weary.\Milk Cow Pokémon\75.5\1.2\0,148,0 +Scale|1.08 +Move|1,33 +Move|3,45 +Move|5,111 +Move|8,23 +Move|11,208 +Move|15,117 +Move|19,205 +Move|24,34 +Move|29,428 +Move|35,445 +Move|41,360 +Move|48,215 +Move|55,358 +TradeValue|40 +Item|100,72 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/242.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/242.dat index ba26e9cfa..641d92eb0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/242.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/242.dat @@ -1 +1,57 @@ -{"Name":"Blissey","Number":242,"ExperienceType":"Fast","BaseExperience":608,"Type1":"Normal","Type2":"Blank","CatchRate":30,"BaseFriendship":140,"EggGroup1":"Fairy","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":440,"Devolution":113,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[30,32],"HiddenAbility":131,"EggMoves":[312,68,203,356,215,270,387,118,426,363,217,69,164],"Machines":[53,58,59,63,70,76,85,86,87,89,92,94,104,113,126,138,148,156,157,164,182,201,207,213,216,218,219,237,240,241,244,247,249,258,263,280,317,347,374,411,416,447,451,496,497,510,514,523,526,528,29,189],"TutorMoves":[],"BaseStats":{"HP":255,"Atk":10,"Def":10,"SpAtk":75,"SpDef":135,"Speed":55},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Anyone who takes even one taste of BLISSEY's egg becomes unfailingly caring and pleasant to everyone.","Species":"Happiness Pokémon","Height":1.5,"Weight":46.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":55,"Moves":[{"Level":1,"ID":38},{"Level":2,"ID":111},{"Level":3,"ID":1},{"Level":4,"ID":45},{"Level":5,"ID":39},{"Level":9,"ID":287},{"Level":12,"ID":3},{"Level":20,"ID":1},{"Level":23,"ID":107},{"Level":27,"ID":36},{"Level":31,"ID":47},{"Level":34,"ID":374},{"Level":38,"ID":505},{"Level":42,"ID":121},{"Level":46,"ID":113},{"Level":50,"ID":361},{"Level":54,"ID":38}],"EvolutionConditions":[],"Items":[{"Id":179,"Chance":50},{"Id":126,"Chance":5}]} \ No newline at end of file +Name|Blissey +Number|242 +ExperienceType|0 +BaseExperience|608 +Type1|Normal +Type2| +CatchRate|30 +BaseFriendship|140 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|440 +IsGenderLess|0 +CanBreed|1 +Devolution|113 +IsMale|0 +Ability1|30 +Ability2|32 +HiddenAbility|131 +EggMoves|312,68,203,356,215,270,387,118,426,363,217,69,164 +Machines|53,58,59,63,70,76,85,86,87,89,92,94,104,113,126,138,148,156,157,164,182,201,207,213,216,218,219,237,240,241,244,247,249,258,263,280,317,347,374,411,416,447,451,496,497,510,514,523,526,528,29,189 +BaseHP|255 +BaseAttack|10 +BaseDefense|10 +BaseSpAttack|75 +BaseSpDefense|135 +BaseSpeed|55 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Anyone who takes even one taste of BLISSEY's egg becomes unfailingly caring and pleasant to everyone.\Happiness Pokémon\46.8\1.5\0,148,0 +Scale|1.2 +Move|1,38 +Move|1,111 +Move|1,1 +Move|1,45 +Move|5,39 +Move|9,287 +Move|12,3 +Move|20,516 +Move|23,107 +Move|27,36 +Move|31,47 +Move|34,374 +Move|38,505 +Move|42,121 +Move|46,113 +Move|50,361 +Move|54,38 +TradeValue|55 +Item|50,179 +Item|5,126 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/243.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/243.dat index faff5a46f..e8b7da3e6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/243.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/243.dat @@ -1 +1,53 @@ -{"Name":"Raikou","Number":243,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Electric","Type2":"Blank","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":243,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":10,"EggMoves":[],"Machines":[29,174,46,92,192,249,244,237,241,173,63,182,240,203,218,231,87,89,216,247,189,104,207,214,201,129,197,156,213,25,34,36,38,99,85,102,115,117,130,86,164,352,347,113,351,263,290,451,416,445,363,496,511,521,523,528,555,590,15,70,148,431,560],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":85,"Def":75,"SpAtk":115,"SpDef":100,"Speed":115},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The rain clouds it carries let it fire thunderbolts at will. They say that it descended with lightning.","Species":"Thunder Pokémon","Height":1.9,"Weight":178,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":85,"Moves":[{"Level":1,"ID":326},{"Level":2,"ID":435},{"Level":3,"ID":44},{"Level":4,"ID":43},{"Level":8,"ID":84},{"Level":15,"ID":46},{"Level":22,"ID":98},{"Level":29,"ID":209},{"Level":36,"ID":115},{"Level":43,"ID":242},{"Level":50,"ID":422},{"Level":57,"ID":435},{"Level":64,"ID":326},{"Level":71,"ID":240},{"Level":78,"ID":347},{"Level":85,"ID":87}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Raikou +Number|243 +ExperienceType|3 +BaseExperience|261 +Type1|Electric +Type2| +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|243 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|10 +Machines|29,174,46,92,192,249,244,237,241,173,63,182,240,203,218,231,87,89,216,247,189,104,207,214,201,129,197,156,213,25,34,36,38,99,85,102,115,117,130,86,164,352,347,113,351,263,290,451,416,445,363,496,511,521,523,528,555,590,15,70,148,431,560 +BaseHP|90 +BaseAttack|85 +BaseDefense|75 +BaseSpAttack|115 +BaseSpDefense|100 +BaseSpeed|115 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|The rain clouds it carries let it fire thunderbolts at will. They say that it descended with lightning.\Thunder Pokémon\178\1.9\0,148,0 +Scale|1.36 +Move|1,326 +Move|1,435 +Move|1,44 +Move|1,43 +Move|8,84 +Move|15,46 +Move|22,98 +Move|29,209 +Move|36,115 +Move|43,242 +Move|50,422 +Move|57,435 +Move|64,326 +Move|71,240 +Move|78,347 +Move|85,87 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/244.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/244.dat index 00d435c9c..ed31ece0a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/244.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/244.dat @@ -1 +1,55 @@ -{"Name":"Entei","Number":244,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Fire","Type2":"Blank","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":244,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":18,"EggMoves":[],"Machines":[29,174,46,92,249,244,237,241,173,63,182,203,218,76,231,89,216,247,189,104,207,214,201,126,129,197,156,213,25,34,36,38,99,102,115,117,130,164,347,53,263,290,315,261,416,444,445,363,488,496,510,511,523,555,590,15,70,148,431,560],"TutorMoves":[],"BaseStats":{"HP":115,"Atk":115,"Def":85,"SpAtk":90,"SpDef":75,"Speed":100},"RewardEV":{"HP":1,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Volcanoes erupt when it barks. Unable to contain its sheer power, it races headlong around the land.","Species":"Volcano Pokémon","Height":2.1,"Weight":198,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.44,"Y":1.44,"Z":1.44},"TradeValue":85,"Moves":[{"Level":1,"ID":221},{"Level":2,"ID":284},{"Level":3,"ID":326},{"Level":4,"ID":436},{"Level":5,"ID":44},{"Level":6,"ID":43},{"Level":8,"ID":52},{"Level":15,"ID":46},{"Level":22,"ID":83},{"Level":29,"ID":23},{"Level":36,"ID":53},{"Level":43,"ID":207},{"Level":50,"ID":424},{"Level":57,"ID":436},{"Level":64,"ID":326},{"Level":71,"ID":126},{"Level":78,"ID":347},{"Level":85,"ID":284}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Entei +Number|244 +ExperienceType|3 +BaseExperience|261 +Type1|Fire +Type2| +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|244 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|18 +Machines|29,174,46,92,249,244,237,241,173,63,182,203,218,76,231,89,216,247,189,104,207,214,201,126,129,197,156,213,25,34,36,38,99,102,115,117,130,164,347,53,263,290,315,261,416,444,445,363,488,496,510,511,523,555,590,15,70,148,431,560 +BaseHP|115 +BaseAttack|115 +BaseDefense|85 +BaseSpAttack|90 +BaseSpDefense|75 +BaseSpeed|100 +FPHP|1 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Volcanoes erupt when it barks. Unable to contain its sheer power, it races headlong around the land.\Volcano Pokémon\198\2.1\0,148,0 +Scale|1.44 +Move|1,221 +Move|1,284 +Move|1,326 +Move|1,436 +Move|1,44 +Move|1,43 +Move|8,52 +Move|15,46 +Move|22,83 +Move|29,23 +Move|36,53 +Move|43,207 +Move|50,424 +Move|57,436 +Move|64,326 +Move|71,126 +Move|78,347 +Move|85,284 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/245.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/245.dat index 1643d5022..7470ee43b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/245.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/245.dat @@ -1 +1,54 @@ -{"Name":"Suicune","Number":245,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Water","Type2":"Blank","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":245,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":11,"EggMoves":[],"Machines":[29,174,46,92,249,244,237,241,173,59,63,196,182,240,203,218,231,89,216,247,189,104,207,214,201,129,197,156,213,25,34,36,38,61,55,58,99,102,115,117,130,164,352,347,258,263,290,362,416,419,445,363,496,503,511,523,555,590,15,57,70,250,127,431,560],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":75,"Def":115,"SpAtk":90,"SpDef":115,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Said to be the embodiment of north winds, it can instantly purify filthy, murky water.","Species":"Aurora Pokémon","Height":2,"Weight":187,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":85,"Moves":[{"Level":1,"ID":56},{"Level":2,"ID":326},{"Level":3,"ID":366},{"Level":4,"ID":44},{"Level":5,"ID":43},{"Level":8,"ID":61},{"Level":15,"ID":240},{"Level":22,"ID":16},{"Level":29,"ID":62},{"Level":36,"ID":54},{"Level":43,"ID":243},{"Level":50,"ID":423},{"Level":57,"ID":366},{"Level":64,"ID":326},{"Level":71,"ID":56},{"Level":78,"ID":347},{"Level":85,"ID":59}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Suicune +Number|245 +ExperienceType|3 +BaseExperience|261 +Type1|Water +Type2| +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|245 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|11 +Machines|29,174,46,92,249,244,237,241,173,59,63,196,182,240,203,218,231,89,216,247,189,104,207,214,201,129,197,156,213,25,34,36,38,61,55,58,99,102,115,117,130,164,352,347,258,263,290,362,416,419,445,363,496,503,511,523,555,590,15,57,70,250,127,431,560 +BaseHP|100 +BaseAttack|75 +BaseDefense|115 +BaseSpAttack|90 +BaseSpDefense|115 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Said to be the embodiment of north winds, it can instantly purify filthy, murky water.\Aurora Pokémon\187\2\0,148,0 +Scale|1.4 +Move|1,56 +Move|1,326 +Move|1,366 +Move|1,44 +Move|1,43 +Move|8,61 +Move|15,240 +Move|22,16 +Move|29,62 +Move|36,54 +Move|43,243 +Move|50,423 +Move|57,366 +Move|64,326 +Move|71,56 +Move|78,347 +Move|85,59 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/246.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/246.dat index 313c83592..75adc973c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/246.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/246.dat @@ -1 +1,53 @@ -{"Name":"Larvitar","Number":246,"ExperienceType":"Slow","BaseExperience":60,"Type1":"Rock","Type2":"Ground","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":246,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[62],"HiddenAbility":8,"EggMoves":[246,372,174,349,116,334,442,231,200,228,446,23],"Machines":[29,174,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,201,197,156,213,34,36,99,102,117,130,157,164,269,280,317,259,263,290,371,416,397,444,446,445,399,363,479,496,514,523,555,612,590],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":64,"Def":50,"SpAtk":45,"SpDef":50,"Speed":41},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It feeds on soil. After it has eaten a large mountain, it falls asleep so it can grow.","Species":"Rock Skin Pokémon","Height":0.6,"Weight":72,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":40,"Moves":[{"Level":1,"ID":44},{"Level":2,"ID":43},{"Level":5,"ID":201},{"Level":10,"ID":103},{"Level":14,"ID":498},{"Level":19,"ID":157},{"Level":23,"ID":184},{"Level":28,"ID":37},{"Level":32,"ID":399},{"Level":37,"ID":371},{"Level":41,"ID":242},{"Level":46,"ID":89},{"Level":50,"ID":444},{"Level":55,"ID":63}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":247,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Larvitar +Number|246 +ExperienceType|3 +BaseExperience|60 +Type1|Rock +Type2|Ground +CatchRate|45 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|246 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|62 +Ability2|Nothing +HiddenAbility|8 +EggMoves|246,372,174,349,116,334,442,231,200,228,446,23 +Machines|29,174,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,201,197,156,213,34,36,99,102,117,130,157,164,269,280,317,259,263,290,371,416,397,444,446,445,399,363,479,496,514,523,555,612,590 +BaseHP|50 +BaseAttack|64 +BaseDefense|50 +BaseSpAttack|45 +BaseSpDefense|50 +BaseSpeed|41 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It feeds on soil. After it has eaten a large mountain, it falls asleep so it can grow.\Rock Skin Pokémon\72\0.6\0,148,0 +Scale|0.84 +Move|1,44 +Move|1,43 +Move|5,201 +Move|10,103 +Move|14,498 +Move|19,157 +Move|23,184 +Move|28,37 +Move|32,399 +Move|37,371 +Move|41,242 +Move|46,89 +Move|50,444 +Move|55,63 +TradeValue|40 +EvolutionCondition|247,level,30,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/247.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/247.dat index 03b9e07d8..70a214180 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/247.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/247.dat @@ -1 +1,55 @@ -{"Name":"Pupitar","Number":247,"ExperienceType":"Slow","BaseExperience":144,"Type1":"Rock","Type2":"Ground","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":246,"Devolution":246,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61],"HiddenAbility":8,"EggMoves":[246,372,174,349,116,334,442,231,200,228,446,23],"Machines":[29,174,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,201,197,156,213,34,36,99,102,117,130,157,164,269,280,317,259,263,290,371,416,397,444,446,445,399,363,479,496,514,523,555,612,590],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":84,"Def":70,"SpAtk":65,"SpDef":70,"Speed":51},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its shell is as hard as sheet rock and it is also very strong. Its thrashing can topple a mountain.","Species":"Hard Shell Pokémon","Height":1.2,"Weight":152,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":60,"Moves":[{"Level":1,"ID":44},{"Level":2,"ID":43},{"Level":3,"ID":201},{"Level":4,"ID":103},{"Level":5,"ID":201},{"Level":10,"ID":103},{"Level":14,"ID":498},{"Level":19,"ID":157},{"Level":23,"ID":184},{"Level":28,"ID":37},{"Level":34,"ID":399},{"Level":41,"ID":371},{"Level":47,"ID":242},{"Level":54,"ID":89},{"Level":60,"ID":444},{"Level":67,"ID":63}],"EvolutionConditions":[{"Condition":"55","ConditionType":"Level","Evolution":248,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Pupitar +Number|247 +ExperienceType|3 +BaseExperience|144 +Type1|Rock +Type2|Ground +CatchRate|45 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|246 +IsGenderLess|0 +CanBreed|1 +Devolution|246 +IsMale|50 +Ability1|61 +Ability2|Nothing +HiddenAbility|8 +EggMoves|246,372,174,349,116,334,442,231,200,228,446,23 +Machines|29,174,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,201,197,156,213,34,36,99,102,117,130,157,164,269,280,317,259,263,290,371,416,397,444,446,445,399,363,479,496,514,523,555,612,590 +BaseHP|70 +BaseAttack|84 +BaseDefense|70 +BaseSpAttack|65 +BaseSpDefense|70 +BaseSpeed|51 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its shell is as hard as sheet rock and it is also very strong. Its thrashing can topple a mountain.\Hard Shell Pokémon\152\1.2\0,148,0 +Scale|1.08 +Move|1,44 +Move|1,43 +Move|1,201 +Move|1,103 +Move|5,201 +Move|10,103 +Move|14,498 +Move|19,157 +Move|23,184 +Move|28,37 +Move|34,399 +Move|41,371 +Move|47,242 +Move|54,89 +Move|60,444 +Move|67,63 +TradeValue|60 +EvolutionCondition|248,level,55,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/248.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/248.dat index 0890fc8c4..9ebb43e37 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/248.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/248.dat @@ -1 +1,58 @@ -{"Name":"Tyranitar","Number":248,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Rock","Type2":"Dark","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":246,"Devolution":247,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[45],"HiddenAbility":127,"EggMoves":[246,372,174,349,116,334,442,231,200,228,446,23],"Machines":[223,29,174,46,92,249,237,241,173,59,63,182,203,218,231,225,87,89,216,91,189,104,8,207,214,201,126,9,197,156,213,7,210,171,5,25,34,36,38,58,66,68,69,99,85,90,102,117,130,86,157,164,264,337,352,269,280,351,53,317,332,259,263,290,411,374,406,421,371,416,397,444,419,446,445,399,363,468,479,496,510,514,523,525,555,612,590,15,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":134,"Def":110,"SpAtk":95,"SpDef":100,"Speed":61},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its body can't be harmed by any sort of attack, so it is very eager to make challenges against enemies.","Species":"Armor Pokémon","Height":2,"Weight":202,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":75,"Moves":[{"Level":1,"ID":422},{"Level":2,"ID":423},{"Level":3,"ID":424},{"Level":4,"ID":44},{"Level":5,"ID":43},{"Level":6,"ID":201},{"Level":7,"ID":103},{"Level":8,"ID":201},{"Level":10,"ID":103},{"Level":14,"ID":498},{"Level":19,"ID":157},{"Level":23,"ID":184},{"Level":28,"ID":37},{"Level":34,"ID":399},{"Level":41,"ID":371},{"Level":47,"ID":242},{"Level":54,"ID":89},{"Level":63,"ID":444},{"Level":73,"ID":63},{"Level":82,"ID":416}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Tyranitar +Number|248 +ExperienceType|3 +BaseExperience|270 +Type1|Rock +Type2|Dark +CatchRate|45 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|246 +IsGenderLess|0 +CanBreed|1 +Devolution|247 +IsMale|50 +Ability1|45 +Ability2|Nothing +HiddenAbility|127 +EggMoves|246,372,174,349,116,334,442,231,200,228,446,23 +Machines|223,29,174,46,92,249,237,241,173,59,63,182,203,218,231,225,87,89,216,91,189,104,8,207,214,201,126,9,197,156,213,7,210,171,5,25,34,36,38,58,66,68,69,99,85,90,102,117,130,86,157,164,264,337,352,269,280,351,53,317,332,259,263,290,411,374,406,421,371,416,397,444,419,446,445,399,363,468,479,496,510,514,523,525,555,612,590,15,57,70,250,431,560 +BaseHP|100 +BaseAttack|134 +BaseDefense|110 +BaseSpAttack|95 +BaseSpDefense|100 +BaseSpeed|61 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its body can't be harmed by any sort of attack, so it is very eager to make challenges against enemies.\Armor Pokémon\202\2\0,148,0 +Scale|1.4 +Move|1,422 +Move|1,423 +Move|1,424 +Move|1,44 +Move|1,43 +Move|1,201 +Move|1,103 +Move|5,201 +Move|10,103 +Move|14,498 +Move|19,157 +Move|23,184 +Move|28,37 +Move|34,399 +Move|41,371 +Move|47,242 +Move|54,89 +Move|63,444 +Move|73,63 +Move|82,416 +TradeValue|75 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/248_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/248_mega.dat new file mode 100644 index 000000000..5641c7a4e --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/248_mega.dat @@ -0,0 +1,58 @@ +Name|Mega Tyranitar +Number|248 +ExperienceType|3 +BaseExperience|270 +Type1|Rock +Type2|Dark +CatchRate|45 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|246 +IsGenderLess|0 +CanBreed|1 +Devolution|247 +IsMale|50 +Ability1|45 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|246,372,174,349,116,334,442,231,200,228,446,23 +Machines|223,29,174,46,92,249,237,241,173,59,63,182,203,218,231,225,87,89,216,91,189,104,8,207,214,201,126,9,197,156,213,7,210,171,5,25,34,36,38,58,66,68,69,99,85,90,102,117,130,86,157,164,264,337,352,269,280,351,53,317,332,259,263,290,411,374,406,421,371,416,397,444,419,446,445,399,363,468,479,496,510,514,523,525,555,612,590,15,57,70,250,431,560 +BaseHP|100 +BaseAttack|164 +BaseDefense|150 +BaseSpAttack|95 +BaseSpDefense|120 +BaseSpeed|71 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its body can't be harmed by any sort of attack, so it is very eager to make challenges against enemies.\Armor Pokémon\255\2.5\0,148,0 +Scale|1.4 +Move|1,422 +Move|1,423 +Move|1,424 +Move|1,44 +Move|1,43 +Move|1,201 +Move|1,103 +Move|5,201 +Move|10,103 +Move|14,498 +Move|19,157 +Move|23,184 +Move|28,37 +Move|34,399 +Move|41,371 +Move|47,242 +Move|54,89 +Move|63,444 +Move|73,63 +Move|82,416 +TradeValue|75 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/249.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/249.dat index 718c4f973..234722112 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/249.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/249.dat @@ -1 +1,53 @@ -{"Name":"Lugia","Number":249,"ExperienceType":"Slow","BaseExperience":306,"Type1":"Psychic","Type2":"Flying","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":249,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":136,"EggMoves":[],"Machines":[29,174,46,92,192,249,244,237,241,173,59,63,196,182,240,203,218,231,225,87,89,216,94,247,189,104,207,214,201,129,138,197,156,213,211,171,13,18,34,36,38,61,55,58,99,85,102,115,117,130,143,86,149,161,164,352,347,258,113,351,332,263,290,285,355,362,451,406,416,432,419,445,363,473,477,496,497,507,523,525,590,19,57,70,148,250,127,560,291],"TutorMoves":[],"BaseStats":{"HP":106,"Atk":90,"Def":130,"SpAtk":90,"SpDef":154,"Speed":110},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"It is said that it quietly spends its time deep at the bottom of the sea because its powers are too strong.","Species":"Diving Pokémon","Height":5.2,"Weight":216,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":18},{"Level":2,"ID":311},{"Level":9,"ID":16},{"Level":15,"ID":407},{"Level":23,"ID":326},{"Level":29,"ID":240},{"Level":37,"ID":56},{"Level":43,"ID":177},{"Level":50,"ID":386},{"Level":57,"ID":246},{"Level":65,"ID":219},{"Level":71,"ID":105},{"Level":79,"ID":248},{"Level":85,"ID":363},{"Level":93,"ID":347},{"Level":99,"ID":143}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Lugia +Number|249 +ExperienceType|3 +BaseExperience|306 +Type1|Psychic +Type2|Flying +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|249 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|136 +Machines|29,174,46,92,192,249,244,237,241,173,59,63,196,182,240,203,218,231,225,87,89,216,94,247,189,104,207,214,201,129,138,197,156,213,211,171,13,18,34,36,38,61,55,58,99,85,102,115,117,130,143,86,149,161,164,352,347,258,113,351,332,263,290,285,355,362,451,406,416,432,419,445,363,473,477,496,497,507,523,525,590,19,57,70,148,250,127,560,291 +BaseHP|106 +BaseAttack|90 +BaseDefense|130 +BaseSpAttack|90 +BaseSpDefense|154 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|It is said that it quietly spends its time deep at the bottom of the sea because its powers are too strong.\Diving Pokémon\216\5.2\0,148,0 +Scale|2 +Move|1,18 +Move|1,311 +Move|9,16 +Move|15,407 +Move|23,326 +Move|29,240 +Move|37,56 +Move|43,177 +Move|50,386 +Move|57,246 +Move|65,219 +Move|71,105 +Move|79,248 +Move|85,363 +Move|93,347 +Move|99,143 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/25.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/25.dat index 628350846..b54f12b7c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/25.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/25.dat @@ -1 +1,56 @@ -{"Name":"Pikachu","Number":25,"ExperienceType":"MediumFast","BaseExperience":105,"Type1":"Electric","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Fairy","BaseEggSteps":2805,"EggPokemon":172,"Devolution":172,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[9],"HiddenAbility":31,"EggMoves":[516,117,268,574,3,227,203,252,175,381,217,179,9,321,273],"Machines":[223,29,174,205,92,192,249,237,173,63,182,240,203,218,231,87,216,91,189,104,207,214,129,111,197,156,213,5,34,36,6,66,68,69,99,85,102,117,130,86,164,264,113,280,351,263,290,374,451,416,445,363,447,496,497,521,528,590,70,148],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":55,"Def":40,"SpAtk":50,"SpDef":50,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This intelligent Pokémon roasts hard berries with electricity to make them tender enough to eat.","Species":"Mouse Pokémon","Height":0.4,"Weight":6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":39},{"Level":2,"ID":84},{"Level":5,"ID":45},{"Level":7,"ID":589},{"Level":10,"ID":98},{"Level":13,"ID":86},{"Level":18,"ID":486},{"Level":21,"ID":104},{"Level":23,"ID":609},{"Level":26,"ID":21},{"Level":29,"ID":85},{"Level":34,"ID":364},{"Level":37,"ID":97},{"Level":42,"ID":435},{"Level":45,"ID":113},{"Level":50,"ID":87}],"EvolutionConditions":[{"Condition":"23","ConditionType":"Item","Evolution":26,"Trigger":"ItemUse"}],"Items":[{"Id":163,"Chance":1},{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Pikachu +Number|25 +ExperienceType|1 +BaseExperience|105 +Type1|Electric +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Fairy +BaseEggSteps|2805 +EggPokemon|172 +Devolution|172 +IsGenderLess|0 +IsMale|50 +Ability1|9 +Ability2|Nothing +HiddenAbility|31 +EggMoves|516,117,268,574,3,227,203,252,175,381,217,179,9,321,273,6 +Machines|223,29,174,205,92,192,249,237,173,63,182,240,203,218,231,87,216,91,189,104,207,214,129,111,197,156,213,5,34,36,6,66,68,69,99,85,102,117,130,86,164,264,113,280,351,263,290,374,451,416,445,363,447,496,497,521,528,590,70,148 +BaseHP|35 +BaseAttack|55 +BaseDefense|40 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|This intelligent Pokémon roasts hard berries with electricity to make them tender enough to eat.\Mouse Pokémon\6\0.4\0,148,0 +Scale|0.7 +Move|1,39 +Move|1,84 +Move|5,45 +Move|7,589 +Move|10,98 +Move|13,86 +Move|18,486 +Move|21,104 +Move|23,609 +Move|26,21 +Move|29,85 +Move|34,364 +Move|37,97 +Move|42,435 +Move|45,113 +Move|50,87 +EvolutionCondition|26,item,23,item +Item|5,163 +Item|50,2006 +TradeValue|20 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/250.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/250.dat index 722f0bc91..71b93250c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/250.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/250.dat @@ -1 +1,54 @@ -{"Name":"Ho-oh","Number":250,"ExperienceType":"Slow","BaseExperience":306,"Type1":"Fire","Type2":"Flying","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":250,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":144,"EggMoves":[],"Machines":[174,46,92,192,249,244,237,241,173,63,182,203,218,76,225,87,89,216,189,104,207,214,126,129,197,156,213,211,171,13,18,36,38,99,85,102,117,143,86,161,164,351,53,332,263,290,315,355,416,432,445,363,365,477,488,496,507,510,590,19,70,148,560],"TutorMoves":[],"BaseStats":{"HP":106,"Atk":130,"Def":90,"SpAtk":110,"SpDef":154,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"Legends claim this Pokémon flies the world's skies continuously on its magnificent, seven-colored wings.","Species":"Rainbow Pokémon","Height":3.8,"Weight":199,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":18},{"Level":2,"ID":311},{"Level":9,"ID":16},{"Level":15,"ID":413},{"Level":23,"ID":326},{"Level":29,"ID":241},{"Level":37,"ID":126},{"Level":43,"ID":221},{"Level":50,"ID":386},{"Level":57,"ID":246},{"Level":65,"ID":219},{"Level":71,"ID":105},{"Level":79,"ID":248},{"Level":85,"ID":363},{"Level":93,"ID":347},{"Level":99,"ID":143}],"EvolutionConditions":[],"Items":[{"Id":156,"Chance":100}]} \ No newline at end of file +Name|Ho-oh +Number|250 +ExperienceType|3 +BaseExperience|306 +Type1|Fire +Type2|Flying +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|250 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|144 +Machines|174,46,92,192,249,244,237,241,173,63,182,203,218,76,225,87,89,216,189,104,207,214,126,129,197,156,213,211,171,13,18,36,38,99,85,102,117,143,86,161,164,351,53,332,263,290,315,355,416,432,445,363,365,477,488,496,507,510,590,19,70,148,560 +BaseHP|106 +BaseAttack|130 +BaseDefense|90 +BaseSpAttack|110 +BaseSpDefense|154 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|Legends claim this Pokémon flies the world's skies continuously on its magnificent, seven-colored wings.\Rainbow Pokémon\199\3.8\0,148,0 +Scale|2 +Move|1,18 +Move|1,311 +Move|9,16 +Move|15,413 +Move|23,326 +Move|29,241 +Move|37,126 +Move|43,221 +Move|50,386 +Move|57,246 +Move|65,219 +Move|71,105 +Move|79,248 +Move|85,363 +Move|93,347 +Move|99,143 +TradeValue|100 +Item|100,156 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/251.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/251.dat index b0eb2301c..8b3a09215 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/251.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/251.dat @@ -1 +1,52 @@ -{"Name":"Celebi","Number":251,"ExperienceType":"MediumSlow","BaseExperience":270,"Type1":"Psychic","Type2":"Grass","CatchRate":45,"BaseFriendship":100,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":251,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[30],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,244,237,241,230,173,63,182,202,203,218,76,216,94,189,104,207,214,129,111,138,197,156,213,171,36,99,72,100,102,117,118,86,149,161,164,352,347,351,332,263,290,285,369,412,374,451,318,416,446,445,363,433,473,477,496,267,605,590,148],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":100,"Def":100,"SpAtk":100,"SpDef":100,"Speed":100},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon wanders across time. Grass and trees flourish in the forests in which it has appeared.","Species":"Time Travel Pokémon","Height":0.6,"Weight":5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":120,"Moves":[{"Level":1,"ID":73},{"Level":2,"ID":93},{"Level":3,"ID":105},{"Level":4,"ID":215},{"Level":10,"ID":219},{"Level":19,"ID":345},{"Level":28,"ID":246},{"Level":37,"ID":226},{"Level":46,"ID":363},{"Level":55,"ID":377},{"Level":64,"ID":248},{"Level":73,"ID":361},{"Level":82,"ID":437},{"Level":91,"ID":195}],"EvolutionConditions":[],"Items":[{"Id":2008,"Chance":100}]} \ No newline at end of file +Name|Celebi +Number|251 +ExperienceType|2 +BaseExperience|270 +Type1|Psychic +Type2|Grass +CatchRate|45 +BaseFriendship|100 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|251 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|30 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,244,237,241,230,173,63,182,202,203,218,76,216,94,189,104,207,214,129,111,138,197,156,213,171,36,99,72,100,102,117,118,86,149,161,164,352,347,351,332,263,290,285,369,412,374,451,318,416,446,445,363,433,473,477,496,267,605,590,148 +BaseHP|100 +BaseAttack|100 +BaseDefense|100 +BaseSpAttack|100 +BaseSpDefense|100 +BaseSpeed|100 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|This Pokémon wanders across time. Grass and trees flourish in the forests in which it has appeared.\Time Travel Pokémon\5\0.6\0,148,0 +Scale|0.84 +Move|1,73 +Move|1,93 +Move|1,105 +Move|1,215 +Move|10,219 +Move|19,345 +Move|28,246 +Move|37,226 +Move|46,363 +Move|55,377 +Move|64,248 +Move|73,361 +Move|82,437 +Move|91,195 +TradeValue|120 +Item|100,2008 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/252.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/252.dat index 41337a4d7..10d754828 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/252.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/252.dat @@ -1 +1,51 @@ -{"Name":"Treecko","Number":252,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":252,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":84,"EggMoves":[331,242,306,24,225,283,320,580,437,73,345,300,363,13,235,388,202],"Machines":[223,174,92,249,237,241,173,63,182,202,203,218,76,231,216,91,189,104,207,214,129,9,197,156,213,210,5,25,34,36,66,68,69,99,72,102,117,130,164,264,331,280,317,332,263,290,412,374,409,416,445,363,490,496,267,612,590,15,70],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":45,"Def":35,"SpAtk":65,"SpDef":55,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Small hooks on the bottom of its feet catch on walls and ceilings. That is how it can hang from above.","Species":"Wood Gecko Pokémon","Height":0.5,"Weight":5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":43},{"Level":6,"ID":71},{"Level":11,"ID":98},{"Level":16,"ID":228},{"Level":21,"ID":103},{"Level":26,"ID":72},{"Level":31,"ID":97},{"Level":36,"ID":21},{"Level":41,"ID":197},{"Level":46,"ID":202},{"Level":50,"ID":412}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":253,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Treecko +Number|252 +ExperienceType|2 +BaseExperience|62 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|252 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|84 +EggMoves|331,242,306,24,225,283,320,580,437,73,345,300,363,13,235,388,202 +Machines|223,174,92,249,237,241,173,63,182,202,203,218,76,231,216,91,189,104,207,214,129,9,197,156,213,210,5,25,34,36,66,68,69,99,72,102,117,130,164,264,331,280,317,332,263,290,412,374,409,416,445,363,490,496,267,612,590,15,70 +BaseHP|40 +BaseAttack|45 +BaseDefense|35 +BaseSpAttack|65 +BaseSpDefense|55 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Small hooks on the bottom of its feet catch on walls and ceilings. That is how it can hang from above.\Wood Gecko Pokémon\5\0.5\0,148,0 +Scale|0.7 +Move|1,1 +Move|1,43 +Move|6,71 +Move|11,98 +Move|16,228 +Move|21,103 +Move|26,72 +Move|31,97 +Move|36,21 +Move|41,197 +Move|46,202 +Move|50,412 +TradeValue|50 +EvolutionCondition|253,level,16,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/253.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/253.dat index 2b555da87..6d2dbef28 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/253.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/253.dat @@ -1 +1,54 @@ -{"Name":"Grovyle","Number":253,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":252,"Devolution":252,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":84,"EggMoves":[331,242,306,24,225,283,320,580,437,73,345,300,363,13,235,388,202],"Machines":[223,174,92,249,237,241,173,63,182,202,203,218,76,231,216,91,189,104,207,214,129,9,197,156,213,210,5,25,34,36,66,68,69,99,72,102,117,130,164,264,331,280,317,332,263,290,412,206,374,409,416,445,363,490,496,267,612,590,15,70],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":65,"Def":45,"SpAtk":85,"SpDef":65,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It leaps from tree branch to tree branch quite swiftly. It shows astounding agility.","Species":"Wood Gecko Pokémon","Height":0.9,"Weight":21.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":60,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":43},{"Level":3,"ID":71},{"Level":4,"ID":98},{"Level":6,"ID":71},{"Level":11,"ID":98},{"Level":16,"ID":210},{"Level":17,"ID":228},{"Level":23,"ID":103},{"Level":29,"ID":348},{"Level":35,"ID":97},{"Level":41,"ID":21},{"Level":47,"ID":197},{"Level":53,"ID":206},{"Level":59,"ID":437}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":254,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Grovyle +Number|253 +ExperienceType|2 +BaseExperience|142 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|252 +IsGenderLess|0 +CanBreed|1 +Devolution|252 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|84 +EggMoves|331,242,306,24,225,283,320,580,437,73,345,300,363,13,235,388,202 +Machines|223,174,92,249,237,241,173,63,182,202,203,218,76,231,216,91,189,104,207,214,129,9,197,156,213,210,5,25,34,36,66,68,69,99,72,102,117,130,164,264,331,280,317,332,263,290,412,206,374,409,416,445,363,490,496,267,612,590,15,70 +BaseHP|50 +BaseAttack|65 +BaseDefense|45 +BaseSpAttack|85 +BaseSpDefense|65 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It leaps from tree branch to tree branch quite swiftly. It shows astounding agility.\Wood Gecko Pokémon\21.6\0.9\0,148,0 +Scale|0.96 +Move|1,1 +Move|1,43 +Move|1,71 +Move|1,98 +Move|6,71 +Move|11,98 +Move|16,210 +Move|17,228 +Move|23,103 +Move|29,348 +Move|35,97 +Move|41,21 +Move|47,197 +Move|53,206 +Move|59,437 +TradeValue|60 +EvolutionCondition|254,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/254.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/254.dat index 04092621c..0add3fc59 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/254.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/254.dat @@ -1 +1,56 @@ -{"Name":"Sceptile","Number":254,"ExperienceType":"MediumSlow","BaseExperience":239,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":252,"Devolution":253,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":84,"EggMoves":[331,242,306,24,225,283,320,580,437,73,345,300,363,13,235,388,202],"Machines":[223,174,46,92,249,237,241,173,63,182,202,203,218,76,231,216,91,189,104,207,214,129,9,197,156,213,210,5,25,34,36,38,66,68,69,99,72,102,117,130,164,264,337,331,280,317,332,263,290,411,412,206,374,406,409,416,445,363,468,490,496,267,612,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":85,"Def":65,"SpAtk":105,"SpDef":85,"Speed":120},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":3},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It agilely leaps about the jungle and uses the sharp leaves on its arms to strike its prey.","Species":"Forest Pokémon","Height":1.7,"Weight":52.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":70,"Moves":[{"Level":1,"ID":437},{"Level":2,"ID":400},{"Level":3,"ID":1},{"Level":4,"ID":43},{"Level":5,"ID":71},{"Level":6,"ID":98},{"Level":7,"ID":71},{"Level":11,"ID":98},{"Level":16,"ID":404},{"Level":17,"ID":228},{"Level":23,"ID":103},{"Level":29,"ID":348},{"Level":35,"ID":97},{"Level":43,"ID":21},{"Level":51,"ID":197},{"Level":59,"ID":206},{"Level":67,"ID":437}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Sceptile +Number|254 +ExperienceType|2 +BaseExperience|239 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|252 +IsGenderLess|0 +CanBreed|1 +Devolution|253 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|84 +EggMoves|331,242,306,24,225,283,320,580,437,73,345,300,363,13,235,388,202 +Machines|223,174,46,92,249,237,241,173,63,182,202,203,218,76,231,216,91,189,104,207,214,129,9,197,156,213,210,5,25,34,36,38,66,68,69,99,72,102,117,130,164,264,337,331,280,317,332,263,290,411,412,206,374,406,409,416,445,363,468,490,496,267,612,590,15,70,431,560 +TutorMoves|338 +BaseHP|70 +BaseAttack|85 +BaseDefense|65 +BaseSpAttack|105 +BaseSpDefense|85 +BaseSpeed|120 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|0 +CanSwim|0 +Pokedex|It agilely leaps about the jungle and uses the sharp leaves on its arms to strike its prey.\Forest Pokémon\52.2\1.7\0,148,0 +Scale|1.28 +Move|1,437 +Move|1,400 +Move|1,1 +Move|1,43 +Move|1,71 +Move|1,98 +Move|6,71 +Move|11,98 +Move|16,404 +Move|17,228 +Move|23,103 +Move|29,348 +Move|35,97 +Move|43,21 +Move|51,197 +Move|59,206 +Move|67,437 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/254_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/254_mega.dat new file mode 100644 index 000000000..0f521732b --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/254_mega.dat @@ -0,0 +1,55 @@ +Name|Mega Sceptile +Number|254 +ExperienceType|2 +BaseExperience|239 +Type1|Grass +Type2|Dragon +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|252 +IsGenderLess|0 +CanBreed|1 +Devolution|253 +IsMale|87.5 +Ability1|31 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|331,242,306,24,225,283,320,580,437,73,345,300,363,13,235,388,202 +Machines|223,174,46,92,249,237,241,173,63,182,202,203,218,76,231,216,91,189,104,207,214,129,9,197,156,213,210,5,25,34,36,38,66,68,69,99,72,102,117,130,164,264,337,331,280,317,332,263,290,411,412,206,374,406,409,416,445,363,468,490,496,267,612,590,15,70,431,560 +BaseHP|70 +BaseAttack|110 +BaseDefense|75 +BaseSpAttack|145 +BaseSpDefense|85 +BaseSpeed|145 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|0 +CanSwim|0 +Pokedex|It agilely leaps about the jungle and uses the sharp leaves on its arms to strike its prey.\Forest Pokémon\55.2\1.9\0,148,0 +Scale|1.28 +Move|1,437 +Move|1,400 +Move|1,1 +Move|1,43 +Move|1,71 +Move|1,98 +Move|6,71 +Move|11,98 +Move|16,404 +Move|17,228 +Move|23,103 +Move|29,348 +Move|35,97 +Move|43,21 +Move|51,197 +Move|59,206 +Move|67,437 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/255.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/255.dat index fca7f3860..66953b522 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/255.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/255.dat @@ -1 +1,50 @@ -{"Name":"Torchic","Number":255,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":255,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":3,"EggMoves":[97,226,68,306,174,203,297,364,481,387,67,400,179,265,157,207],"Machines":[174,92,249,237,241,173,63,182,203,218,216,91,189,104,207,214,126,129,197,156,213,5,14,25,34,36,68,99,102,117,157,164,53,317,332,263,290,315,261,421,416,445,363,468,488,496,497,510,590,15,70],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":60,"Def":40,"SpAtk":70,"SpDef":50,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Inside its body is a place where it keeps a small flame. Hug it! It will be as warm as a hot-water bottle.","Species":"Chick Pokémon","Height":0.4,"Weight":2.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":45},{"Level":7,"ID":116},{"Level":10,"ID":52},{"Level":16,"ID":64},{"Level":19,"ID":28},{"Level":25,"ID":83},{"Level":28,"ID":98},{"Level":34,"ID":163},{"Level":37,"ID":119},{"Level":43,"ID":53}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":256,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Torchic +Number|255 +ExperienceType|2 +BaseExperience|62 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|255 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|3 +EggMoves|97,226,68,306,174,203,297,364,481,387,67,400,179,265,157,207 +Machines|174,92,249,237,241,173,63,182,203,218,216,91,189,104,207,214,126,129,197,156,213,5,14,25,34,36,68,99,102,117,157,164,53,317,332,263,290,315,261,421,416,445,363,468,488,496,497,510,590,15,70 +BaseHP|45 +BaseAttack|60 +BaseDefense|40 +BaseSpAttack|70 +BaseSpDefense|50 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Inside its body is a place where it keeps a small flame. Hug it! It will be as warm as a hot-water bottle.\Chick Pokémon\2.5\0.4\0,148,0 +Scale|0.7 +Move|1,10 +Move|1,45 +Move|7,116 +Move|10,52 +Move|16,64 +Move|19,28 +Move|25,83 +Move|28,98 +Move|34,163 +Move|37,119 +Move|43,53 +TradeValue|50 +EvolutionCondition|256,level,16,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/256.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/256.dat index 0f553bbdb..36d62711c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/256.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/256.dat @@ -1 +1,54 @@ -{"Name":"Combusken","Number":256,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Fire","Type2":"Fighting","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":255,"Devolution":255,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":3,"EggMoves":[97,226,68,306,174,203,297,364,481,387,67,400,179,265,157,207],"Machines":[223,174,92,249,237,241,173,63,182,203,218,216,91,189,104,207,214,126,129,9,197,156,213,7,210,5,14,25,34,36,66,68,69,99,102,117,130,157,164,264,339,280,53,317,332,263,290,315,411,374,261,421,416,445,363,398,468,488,490,496,497,510,526,612,590,15,70],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":85,"Def":60,"SpAtk":85,"SpDef":60,"Speed":55},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"During a battle its body increases. Its kicks have outstanding destructive power.","Species":"Young Fowl Pokémon","Height":0.9,"Weight":19.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":60,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":45},{"Level":3,"ID":116},{"Level":4,"ID":52},{"Level":7,"ID":116},{"Level":13,"ID":52},{"Level":16,"ID":24},{"Level":17,"ID":64},{"Level":21,"ID":28},{"Level":28,"ID":339},{"Level":32,"ID":98},{"Level":39,"ID":163},{"Level":43,"ID":119},{"Level":50,"ID":327},{"Level":54,"ID":394}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":257,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Combusken +Number|256 +ExperienceType|2 +BaseExperience|142 +Type1|Fire +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|255 +IsGenderLess|0 +CanBreed|1 +Devolution|255 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|3 +EggMoves|97,226,68,306,174,203,297,364,481,387,67,400,179,265,157,207 +Machines|223,174,92,249,237,241,173,63,182,203,218,216,91,189,104,207,214,126,129,9,197,156,213,7,210,5,14,25,34,36,66,68,69,99,102,117,130,157,164,264,339,280,53,317,332,263,290,315,411,374,261,421,416,445,363,398,468,488,490,496,497,510,526,612,590,15,70 +BaseHP|60 +BaseAttack|85 +BaseDefense|60 +BaseSpAttack|85 +BaseSpDefense|60 +BaseSpeed|55 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|During a battle its body increases. Its kicks have outstanding destructive power.\Young Fowl Pokémon\19.5\0.9\0,148,0 +Scale|0.96 +Move|1,10 +Move|1,45 +Move|1,116 +Move|1,52 +Move|7,116 +Move|13,52 +Move|16,24 +Move|17,64 +Move|21,28 +Move|28,339 +Move|32,98 +Move|39,163 +Move|43,119 +Move|50,327 +Move|54,394 +TradeValue|60 +EvolutionCondition|257,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/257.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/257.dat index 1b99edc27..8b6030278 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/257.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/257.dat @@ -1 +1,58 @@ -{"Name":"Blaziken","Number":257,"ExperienceType":"MediumSlow","BaseExperience":239,"Type1":"Fire","Type2":"Fighting","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":255,"Devolution":256,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":3,"EggMoves":[97,226,68,306,174,203,297,364,481,387,67,400,179,265,157,207],"Machines":[223,174,46,92,249,237,241,173,63,182,203,218,76,89,216,91,189,104,207,214,126,129,9,197,156,213,7,210,5,14,25,34,36,38,66,68,69,99,102,117,130,157,164,264,339,280,53,317,332,263,290,315,411,374,261,421,416,444,445,363,398,468,488,490,496,497,510,512,523,526,612,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":120,"Def":70,"SpAtk":110,"SpDef":70,"Speed":80},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can clear a 30-story building in a leap. Its fiery punches scorch its foes.","Species":"Blaze Pokémon","Height":1.9,"Weight":52,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":70,"Moves":[{"Level":1,"ID":394},{"Level":2,"ID":7},{"Level":3,"ID":136},{"Level":4,"ID":10},{"Level":5,"ID":45},{"Level":6,"ID":116},{"Level":7,"ID":52},{"Level":8,"ID":116},{"Level":13,"ID":52},{"Level":16,"ID":24},{"Level":17,"ID":64},{"Level":21,"ID":28},{"Level":28,"ID":339},{"Level":32,"ID":98},{"Level":36,"ID":299},{"Level":42,"ID":163},{"Level":49,"ID":413},{"Level":59,"ID":327},{"Level":66,"ID":394}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Blaziken +Number|257 +ExperienceType|2 +BaseExperience|239 +Type1|Fire +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|255 +IsGenderLess|0 +CanBreed|1 +Devolution|256 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|3 +EggMoves|97,226,68,306,174,203,297,364,481,387,67,400,179,265,157,207 +Machines|223,174,46,92,249,237,241,173,63,182,203,218,76,89,216,91,189,104,207,214,126,129,9,197,156,213,7,210,5,14,25,34,36,38,66,68,69,99,102,117,130,157,164,264,339,280,53,317,332,263,290,315,411,374,261,421,416,444,445,363,398,468,488,490,496,497,510,512,523,526,612,590,15,70,431,560 +TutorMoves|307 +BaseHP|80 +BaseAttack|120 +BaseDefense|70 +BaseSpAttack|110 +BaseSpDefense|70 +BaseSpeed|80 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can clear a 30-story building in a leap. Its fiery punches scorch its foes.\Blaze Pokémon\52\1.9\0,148,0 +Scale|1.36 +Move|1,394 +Move|1,7 +Move|1,136 +Move|1,10 +Move|1,45 +Move|1,116 +Move|1,52 +Move|7,116 +Move|13,52 +Move|16,24 +Move|17,64 +Move|21,28 +Move|28,339 +Move|32,98 +Move|36,299 +Move|42,163 +Move|49,413 +Move|59,327 +Move|66,394 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/257_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/257_mega.dat new file mode 100644 index 000000000..fe61b45d6 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/257_mega.dat @@ -0,0 +1,57 @@ +Name|Mega Blaziken +Number|257 +ExperienceType|2 +BaseExperience|239 +Type1|Fire +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|255 +IsGenderLess|0 +CanBreed|1 +Devolution|256 +IsMale|87.5 +Ability1|3 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|97,226,68,306,174,203,297,364,481,387,67,400,179,265,157,207 +Machines|223,174,46,92,249,237,241,173,63,182,203,218,76,89,216,91,189,104,207,214,126,129,9,197,156,213,7,210,5,14,25,34,36,38,66,68,69,99,102,117,130,157,164,264,339,280,53,317,332,263,290,315,411,374,261,421,416,444,445,363,398,468,488,490,496,497,510,512,523,526,612,590,15,70,431,560 +BaseHP|80 +BaseAttack|160 +BaseDefense|80 +BaseSpAttack|130 +BaseSpDefense|80 +BaseSpeed|100 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can clear a 30-story building in a leap. Its fiery punches scorch its foes.\Blaze Pokémon\52\1.9\0,148,0 +Scale|1.36 +Move|1,394 +Move|1,7 +Move|1,136 +Move|1,10 +Move|1,45 +Move|1,116 +Move|1,52 +Move|7,116 +Move|13,52 +Move|16,24 +Move|17,64 +Move|21,28 +Move|28,339 +Move|32,98 +Move|36,299 +Move|42,163 +Move|49,413 +Move|59,327 +Move|66,394 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/258.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/258.dat index f7f0e7113..7266c352d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/258.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/258.dat @@ -1 +1,51 @@ -{"Name":"Mudkip","Number":258,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":258,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":6,"EggMoves":[246,419,112,44,68,174,38,301,243,426,287,124,23,469,250,281,253],"Machines":[174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,207,214,111,197,156,213,34,36,61,55,58,99,102,117,157,164,352,258,317,263,290,416,445,363,482,496,497,503,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":70,"Def":50,"SpAtk":50,"SpDef":50,"Speed":40},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its power can crush boulders. It rests by covering itself with mud at the bottom of a river.","Species":"Mud Fish Pokémon","Height":0.4,"Weight":7.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":6,"ID":189},{"Level":10,"ID":55},{"Level":15,"ID":117},{"Level":19,"ID":193},{"Level":24,"ID":300},{"Level":28,"ID":36},{"Level":33,"ID":250},{"Level":37,"ID":182},{"Level":42,"ID":56},{"Level":46,"ID":283}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":259,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Mudkip +Number|258 +ExperienceType|2 +BaseExperience|62 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|258 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|6 +EggMoves|246,419,112,44,68,174,38,301,243,426,287,124,23,469,250,281,253 +Machines|174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,207,214,111,197,156,213,34,36,61,55,58,99,102,117,157,164,352,258,317,263,290,416,445,363,482,496,497,503,590,57,70,250,127,291 +BaseHP|50 +BaseAttack|70 +BaseDefense|50 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|40 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its power can crush boulders. It rests by covering itself with mud at the bottom of a river.\Mud Fish Pokémon\7.6\0.4\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,45 +Move|6,189 +Move|10,55 +Move|15,117 +Move|19,193 +Move|24,300 +Move|28,36 +Move|33,250 +Move|37,182 +Move|42,56 +Move|46,283 +TradeValue|50 +EvolutionCondition|259,level,16,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/259.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/259.dat index 280517b4f..63dbdfd6f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/259.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/259.dat @@ -1 +1,54 @@ -{"Name":"Marshtomp","Number":259,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Water","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":258,"Devolution":258,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":6,"EggMoves":[246,419,112,44,68,174,38,301,243,426,287,124,23,469,250,281,253],"Machines":[223,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,61,55,58,66,68,69,99,102,117,130,157,164,352,258,317,263,290,416,446,445,363,482,496,497,503,612,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":85,"Def":70,"SpAtk":60,"SpDef":70,"Speed":50},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Living on muddy ground that provides poor footing has made its legs sturdy.","Species":"Mud Fish Pokémon","Height":0.7,"Weight":28,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":3,"ID":189},{"Level":4,"ID":55},{"Level":6,"ID":189},{"Level":10,"ID":55},{"Level":15,"ID":117},{"Level":16,"ID":341},{"Level":20,"ID":193},{"Level":25,"ID":426},{"Level":31,"ID":36},{"Level":37,"ID":330},{"Level":42,"ID":182},{"Level":46,"ID":89},{"Level":53,"ID":283}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":260,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Marshtomp +Number|259 +ExperienceType|2 +BaseExperience|142 +Type1|Water +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|258 +IsGenderLess|0 +CanBreed|1 +Devolution|258 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|6 +EggMoves|246,419,112,44,68,174,38,301,243,426,287,124,23,469,250,281,253 +Machines|223,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,61,55,58,66,68,69,99,102,117,130,157,164,352,258,317,263,290,416,446,445,363,482,496,497,503,612,590,57,70,250,127,291 +BaseHP|70 +BaseAttack|85 +BaseDefense|70 +BaseSpAttack|60 +BaseSpDefense|70 +BaseSpeed|50 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Living on muddy ground that provides poor footing has made its legs sturdy.\Mud Fish Pokémon\28\0.7\0,148,0 +Scale|0.88 +Move|1,33 +Move|1,45 +Move|1,189 +Move|1,55 +Move|6,189 +Move|10,55 +Move|15,117 +Move|16,341 +Move|20,193 +Move|25,426 +Move|31,36 +Move|37,330 +Move|42,182 +Move|46,89 +Move|53,283 +TradeValue|60 +EvolutionCondition|260,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/26.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/26.dat index b6a53bc4a..b75f52f6f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/26.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/26.dat @@ -1 +1,42 @@ -{"Name":"Raichu","Number":26,"ExperienceType":"MediumFast","BaseExperience":214,"Type1":"Electric","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Fairy","BaseEggSteps":2805,"EggPokemon":172,"Devolution":25,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[9],"HiddenAbility":31,"EggMoves":[516,117,268,574,3,227,203,252,175,381,217,179,9,321,273],"Machines":[223,29,174,205,92,192,249,237,173,63,182,240,203,218,231,87,216,91,189,104,207,214,129,111,9,197,156,213,168,5,34,36,38,6,66,68,69,99,85,102,117,130,86,164,264,113,280,351,263,290,411,374,451,416,445,363,447,496,497,521,528,590,70,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":90,"Def":55,"SpAtk":90,"SpDef":80,"Speed":110},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":3},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When its electricity builds muscles are stimulated, and it becomes more aggressive than usual.","Species":"Mouse Pokémon","Height":0.8,"Weight":30,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":40,"Moves":[{"Level":1,"ID":39},{"Level":2,"ID":84},{"Level":3,"ID":85},{"Level":4,"ID":98}],"EvolutionConditions":[],"Items":[{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Raichu +Number|26 +ExperienceType|1 +BaseExperience|214 +Type1|Electric +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Fairy +BaseEggSteps|2805 +EggPokemon|172 +Devolution|25 +IsGenderLess|0 +IsMale|50 +Ability1|9 +Ability2|Nothing +HiddenAbility|31 +EggMoves|516,117,268,574,3,227,203,252,175,381,217,179,9,321,273 +Machines|223,29,174,205,92,192,249,237,173,63,182,240,203,218,231,87,216,91,189,104,207,214,129,111,9,197,156,213,168,5,34,36,38,6,66,68,69,99,85,102,117,130,86,164,264,113,280,351,263,290,411,374,451,416,445,363,447,496,497,521,528,590,70,148 +BaseHP|60 +BaseAttack|90 +BaseDefense|55 +BaseSpAttack|90 +BaseSpDefense|80 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|0 +CanSwim|0 +Pokedex|When its electricity builds muscles are stimulated, and it becomes more aggressive than usual.\Mouse Pokémon\30\0.8\0,148,0 +Scale|0.92 +Move|1,39 +Move|1,84 +Move|1,85 +Move|1,98 +Item|50,2006 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/260.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/260.dat index 71ee42c5a..e8072852d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/260.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/260.dat @@ -1 +1,56 @@ -{"Name":"Swampert","Number":260,"ExperienceType":"MediumSlow","BaseExperience":241,"Type1":"Water","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":258,"Devolution":259,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":6,"EggMoves":[246,419,112,44,68,174,38,301,243,426,287,124,23,469,250,281,253],"Machines":[223,174,205,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,130,157,164,264,352,258,280,317,263,290,411,374,416,444,419,446,445,363,482,496,497,503,523,612,590,57,70,250,127,431,560,291],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":110,"Def":90,"SpAtk":85,"SpDef":90,"Speed":60},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its arms are hard as rock. With one swing, it can break a boulder into pieces.","Species":"Mud Fish Pokémon","Height":1.5,"Weight":81.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":70,"Moves":[{"Level":1,"ID":359},{"Level":2,"ID":33},{"Level":3,"ID":45},{"Level":4,"ID":189},{"Level":5,"ID":55},{"Level":6,"ID":189},{"Level":10,"ID":55},{"Level":15,"ID":117},{"Level":16,"ID":341},{"Level":20,"ID":193},{"Level":25,"ID":426},{"Level":31,"ID":36},{"Level":39,"ID":330},{"Level":46,"ID":182},{"Level":52,"ID":89},{"Level":61,"ID":283},{"Level":69,"ID":359}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Swampert +Number|260 +ExperienceType|2 +BaseExperience|241 +Type1|Water +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|258 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|6 +EggMoves|246,419,112,44,68,174,38,301,243,426,287,124,23,469,250,281,253 +Machines|223,174,205,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,130,157,164,264,352,258,280,317,263,290,411,374,416,444,419,446,445,363,482,496,497,503,523,612,590,57,70,250,127,431,560,291 +TutorMoves|308 +BaseHP|100 +BaseAttack|110 +BaseDefense|90 +BaseSpAttack|85 +BaseSpDefense|90 +BaseSpeed|60 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its arms are hard as rock. With one swing, it can break a boulder into pieces.\Mud Fish Pokémon\81.9\1.5\0,148,0 +Scale|1.2 +Move|1,359 +Move|1,33 +Move|1,45 +Move|1,189 +Move|1,55 +Move|6,189 +Move|10,55 +Move|15,117 +Move|16,341 +Move|20,193 +Move|25,426 +Move|31,36 +Move|39,330 +Move|46,182 +Move|52,89 +Move|61,283 +Move|69,359 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/260_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/260_mega.dat new file mode 100644 index 000000000..5d1542c47 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/260_mega.dat @@ -0,0 +1,55 @@ +Name|Mega Swampert +Number|260 +ExperienceType|2 +BaseExperience|241 +Type1|Water +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|258 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|33 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|246,419,112,44,68,174,38,301,243,426,287,124,23,469,250,281,253 +Machines|223,174,205,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,130,157,164,264,352,258,280,317,263,290,411,374,416,444,419,446,445,363,482,496,497,503,523,612,590,57,70,250,127,431,560,291 +BaseHP|100 +BaseAttack|150 +BaseDefense|110 +BaseSpAttack|95 +BaseSpDefense|110 +BaseSpeed|70 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its arms are hard as rock. With one swing, it can break a boulder into pieces.\Mud Fish Pokémon\102\1.9\0,148,0 +Scale|1.2 +Move|1,359 +Move|1,33 +Move|1,45 +Move|1,189 +Move|1,55 +Move|6,189 +Move|10,55 +Move|15,117 +Move|16,341 +Move|20,193 +Move|25,426 +Move|31,36 +Move|39,330 +Move|46,182 +Move|52,89 +Move|61,283 +Move|69,359 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/261.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/261.dat index 6e0263421..5fc99968c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/261.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/261.dat @@ -1 +1,54 @@ -{"Name":"Poochyena","Number":261,"ExperienceType":"MediumFast","BaseExperience":44,"Type1":"Dark","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":261,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,95],"HiddenAbility":155,"EggMoves":[310,343,424,423,43,382,583,305,289,389,422,281,214],"Machines":[174,46,92,249,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,197,156,213,168,34,36,68,99,102,117,130,164,269,259,263,290,289,373,371,416,445,399,363,496,510,514,555,590],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":55,"Def":35,"SpAtk":30,"SpDef":30,"Speed":35},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It chases its prey until the victim becomes exhausted. However, it turns tail if the prey strikes back.","Species":"Bite Pokémon","Height":0.5,"Weight":13.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":33},{"Level":5,"ID":336},{"Level":9,"ID":28},{"Level":13,"ID":44},{"Level":17,"ID":316},{"Level":21,"ID":46},{"Level":25,"ID":207},{"Level":29,"ID":372},{"Level":33,"ID":184},{"Level":37,"ID":269},{"Level":41,"ID":373},{"Level":45,"ID":36},{"Level":49,"ID":389},{"Level":53,"ID":242}],"EvolutionConditions":[{"Condition":"18","ConditionType":"Level","Evolution":262,"Trigger":"LevelUp"}],"Items":[{"Id":2002,"Chance":5}]} \ No newline at end of file +Name|Poochyena +Number|261 +ExperienceType|1 +BaseExperience|44 +Type1|Dark +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|261 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|50 +Ability2|95 +HiddenAbility|155 +EggMoves|310,343,424,423,43,382,583,305,289,389,422,281,214 +Machines|174,46,92,249,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,197,156,213,168,34,36,68,99,102,117,130,164,269,259,263,290,289,373,371,416,445,399,363,496,510,514,555,590 +BaseHP|35 +BaseAttack|55 +BaseDefense|35 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|35 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It chases its prey until the victim becomes exhausted. However, it turns tail if the prey strikes back.\Bite Pokémon\13.6\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|5,336 +Move|9,28 +Move|13,44 +Move|17,316 +Move|21,46 +Move|25,207 +Move|29,372 +Move|33,184 +Move|37,269 +Move|41,373 +Move|45,36 +Move|49,389 +Move|53,242 +TradeValue|20 +Item|5,2002 +EvolutionCondition|262,level,18,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/262.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/262.dat index 2636b012f..fd4492f4e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/262.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/262.dat @@ -1 +1,58 @@ -{"Name":"Mightyena","Number":262,"ExperienceType":"MediumFast","BaseExperience":147,"Type1":"Dark","Type2":"Blank","CatchRate":127,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":261,"Devolution":261,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22,95],"HiddenAbility":153,"EggMoves":[310,343,424,423,43,382,583,305,289,389,422,281,214],"Machines":[174,46,92,249,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,197,156,213,168,25,34,36,38,68,99,102,117,130,164,269,259,263,290,289,373,371,416,445,399,363,496,510,514,555,590,70,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":90,"Def":70,"SpAtk":60,"SpDef":60,"Speed":70},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It chases down prey in a pack of around ten. They defeat foes with perfectly coordinated teamwork.","Species":"Bite Pokémon","Height":1,"Weight":37,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":35,"Moves":[{"Level":1,"ID":242},{"Level":2,"ID":33},{"Level":3,"ID":336},{"Level":4,"ID":28},{"Level":5,"ID":44},{"Level":6,"ID":336},{"Level":9,"ID":28},{"Level":13,"ID":44},{"Level":17,"ID":316},{"Level":22,"ID":46},{"Level":27,"ID":207},{"Level":32,"ID":372},{"Level":37,"ID":184},{"Level":42,"ID":269},{"Level":47,"ID":373},{"Level":52,"ID":36},{"Level":57,"ID":168},{"Level":62,"ID":389},{"Level":65,"ID":242}],"EvolutionConditions":[],"Items":[{"Id":2002,"Chance":5}]} \ No newline at end of file +Name|Mightyena +Number|262 +ExperienceType|1 +BaseExperience|147 +Type1|Dark +Type2| +CatchRate|127 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|261 +IsGenderLess|0 +CanBreed|1 +Devolution|261 +IsMale|50 +Ability1|22 +Ability2|95 +HiddenAbility|153 +EggMoves|310,343,424,423,43,382,583,305,289,389,422,281,214 +Machines|174,46,92,249,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,197,156,213,168,25,34,36,38,68,99,102,117,130,164,269,259,263,290,289,373,371,416,445,399,363,496,510,514,555,590,70,560 +BaseHP|70 +BaseAttack|90 +BaseDefense|70 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|70 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It chases down prey in a pack of around ten. They defeat foes with perfectly coordinated teamwork.\Bite Pokémon\37\1\0,148,0 +Scale|1 +Move|1,242 +Move|1,33 +Move|1,336 +Move|1,28 +Move|1,44 +Move|5,336 +Move|9,28 +Move|13,44 +Move|17,316 +Move|22,46 +Move|27,207 +Move|32,372 +Move|37,184 +Move|42,269 +Move|47,373 +Move|52,36 +Move|57,168 +Move|62,389 +Move|65,242 +TradeValue|35 +Item|5,2002 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/263.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/263.dat index b718543b8..6102c3cca 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/263.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/263.dat @@ -1 +1,54 @@ -{"Name":"Zigzagoon","Number":263,"ExperienceType":"MediumFast","BaseExperience":48,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":263,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[53,82],"HiddenAbility":95,"EggMoves":[204,270,189,228,431,493,214,321,271,164],"Machines":[29,174,205,92,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,210,34,36,61,55,58,6,99,85,102,117,130,86,164,352,351,263,290,374,451,416,445,363,447,468,496,497,514,526,590,15,57,250],"TutorMoves":[],"BaseStats":{"HP":38,"Atk":30,"Def":41,"SpAtk":30,"SpDef":41,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It gets interested in everything which is why it zigs and zags. It is good at finding items.","Species":"TinyRaccoon Pokémon","Height":0.4,"Weight":17.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":5,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":5,"ID":39},{"Level":9,"ID":29},{"Level":13,"ID":28},{"Level":17,"ID":316},{"Level":21,"ID":300},{"Level":25,"ID":42},{"Level":29,"ID":343},{"Level":33,"ID":1},{"Level":37,"ID":175},{"Level":41,"ID":156},{"Level":45,"ID":187},{"Level":49,"ID":374}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":264,"Trigger":"LevelUp"}],"Items":[{"Id":2006,"Chance":5}]} \ No newline at end of file +Name|Zigzagoon +Number|263 +ExperienceType|1 +BaseExperience|48 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|263 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|82 +HiddenAbility|95 +EggMoves|204,270,189,228,431,493,214,321,271,164 +Machines|29,174,205,92,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,210,34,36,61,55,58,6,99,85,102,117,130,86,164,352,351,263,290,374,451,416,445,363,447,468,496,497,514,526,590,15,57,250 +BaseHP|38 +BaseAttack|30 +BaseDefense|41 +BaseSpAttack|30 +BaseSpDefense|41 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It gets interested in everything which is why it zigs and zags. It is good at finding items.\TinyRaccoon Pokémon\17.5\0.4\0,148,0 +Scale|0.7 +Move|13,28 +Move|9,29 +Move|1,33 +Move|5,39 +Move|25,42 +Move|1,45 +Move|41,156 +Move|37,175 +Move|45,187 +Move|21,300 +Move|17,316 +Move|29,343 +Move|49,374 +Move|33,516 +TradeValue|5 +Item|5,2006 +EvolutionCondition|264,Level,20,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/264.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/264.dat index c8e57715d..c19550649 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/264.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/264.dat @@ -1 +1,59 @@ -{"Name":"Linoone","Number":264,"ExperienceType":"MediumFast","BaseExperience":147,"Type1":"Normal","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":263,"Devolution":263,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[53,82],"HiddenAbility":95,"EggMoves":[204,270,189,228,431,493,214,321,271,164],"Machines":[29,174,205,46,92,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,210,34,36,38,61,55,58,6,99,85,102,117,130,86,164,352,351,263,290,374,451,421,416,445,363,447,468,496,497,514,526,590,15,57,70,250],"TutorMoves":[],"BaseStats":{"HP":78,"Atk":70,"Def":61,"SpAtk":50,"SpDef":61,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When running in a straight line can easily top 60 miles an hour. It has a tough time with curved roads.","Species":"Rushing Pokémon","Height":0.5,"Weight":32.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":583},{"Level":2,"ID":1},{"Level":3,"ID":1},{"Level":4,"ID":33},{"Level":5,"ID":45},{"Level":6,"ID":39},{"Level":7,"ID":29},{"Level":8,"ID":39},{"Level":9,"ID":29},{"Level":13,"ID":28},{"Level":17,"ID":316},{"Level":23,"ID":300},{"Level":29,"ID":154},{"Level":35,"ID":343},{"Level":41,"ID":1},{"Level":47,"ID":163},{"Level":53,"ID":156},{"Level":59,"ID":187},{"Level":65,"ID":374}],"EvolutionConditions":[],"Items":[{"Id":2009,"Chance":5},{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Linoone +Number|264 +ExperienceType|1 +BaseExperience|147 +Type1|Normal +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|263 +IsGenderLess|0 +CanBreed|1 +Devolution|263 +IsMale|50 +Ability1|53 +Ability2|82 +HiddenAbility|95 +EggMoves|204,270,189,228,431,493,214,321,271,164 +Machines|29,174,205,46,92,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,210,34,36,38,61,55,58,6,99,85,102,117,130,86,164,352,351,263,290,374,451,421,416,445,363,447,468,496,497,514,526,590,15,57,70,250 +BaseHP|78 +BaseAttack|70 +BaseDefense|61 +BaseSpAttack|50 +BaseSpDefense|61 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|When running in a straight line can easily top 60 miles an hour. It has a tough time with curved roads.\Rushing Pokémon\32.5\0.5\0,148,0 +Scale|0.7 +Move|1,583 +Move|1,563 +Move|1,415 +Move|1,33 +Move|1,45 +Move|1,39 +Move|1,29 +Move|5,39 +Move|9,29 +Move|13,28 +Move|17,316 +Move|23,300 +Move|29,154 +Move|35,343 +Move|41,516 +Move|47,163 +Move|53,156 +Move|59,187 +Move|65,374 +TradeValue|15 +Item|5,2009 +Item|50,2006 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/265.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/265.dat index 1d033744e..9109e9779 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/265.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/265.dat @@ -1 +1,43 @@ -{"Name":"Wurmple","Number":265,"ExperienceType":"MediumFast","BaseExperience":39,"Type1":"Bug","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":265,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[19],"HiddenAbility":50,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":45,"Def":35,"SpAtk":20,"SpDef":30,"Speed":20},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives among the tall grass and in forests. It repels attacks by raising up the spikes on its rear.","Species":"Worm Pokémon","Height":0.3,"Weight":3.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":5,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":81},{"Level":5,"ID":40},{"Level":15,"ID":450}],"EvolutionConditions":[{"Condition":"7","ConditionType":"Level","Evolution":266,"Trigger":"LevelUp"},{"Condition":"7","ConditionType":"Level","Evolution":268,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Wurmple +Number|265 +ExperienceType|1 +BaseExperience|39 +Type1|Bug +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|265 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|19 +Ability2|Nothing +HiddenAbility|50 +Machines| +BaseHP|45 +BaseAttack|45 +BaseDefense|35 +BaseSpAttack|20 +BaseSpDefense|30 +BaseSpeed|20 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives among the tall grass and in forests. It repels attacks by raising up the spikes on its rear.\Worm Pokémon\3.6\0.3\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,81 +Move|5,40 +Move|15,450 +TradeValue|5 +EvolutionCondition|266,Level,7,Level +EvolutionCondition|268,Level,7,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/266.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/266.dat index 71c69bb9d..7597e2f71 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/266.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/266.dat @@ -1 +1,40 @@ -{"Name":"Silcoon","Number":266,"ExperienceType":"MediumFast","BaseExperience":72,"Type1":"Bug","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":265,"Devolution":265,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61],"HiddenAbility":68,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":35,"Def":55,"SpAtk":25,"SpDef":25,"Speed":15},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Having wrapped silk around the branches of a tree, it quiescently awaits evolution.","Species":"Cocoon Pokémon","Height":0.6,"Weight":10,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":10,"Moves":[{"Level":1,"ID":106},{"Level":7,"ID":106}],"EvolutionConditions":[{"Condition":"10","ConditionType":"Level","Evolution":267,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Silcoon +Number|266 +ExperienceType|1 +BaseExperience|72 +Type1|Bug +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|265 +IsGenderLess|0 +CanBreed|1 +Devolution|265 +IsMale|50 +Ability1|61 +Ability2|Nothing +HiddenAbility|68 +Machines| +BaseHP|50 +BaseAttack|35 +BaseDefense|55 +BaseSpAttack|25 +BaseSpDefense|25 +BaseSpeed|15 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Having wrapped silk around the branches of a tree, it quiescently awaits evolution.\Cocoon Pokémon\10\0.6\0,148,0 +Scale|0.84 +Move|1,106 +Move|7,106 +TradeValue|10 +EvolutionCondition|267,Level,10,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/267.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/267.dat index 6fa41ecf4..5e59ceefc 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/267.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/267.dat @@ -1 +1,50 @@ -{"Name":"Beautifly","Number":267,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Bug","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":265,"Devolution":266,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68],"HiddenAbility":79,"EggMoves":[],"Machines":[174,92,237,241,173,63,182,202,203,218,216,104,207,214,129,197,156,213,168,13,18,36,99,72,102,117,164,332,263,290,355,412,318,416,432,445,363,474,496,522,611,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":70,"Def":50,"SpAtk":100,"SpDef":50,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"Vibrantly patterned wings are its prominent feature. It sucks sweet flower nectar with its long mouth.","Species":"Butterfly Pokémon","Height":1,"Weight":28.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":20,"Moves":[{"Level":1,"ID":71},{"Level":10,"ID":71},{"Level":13,"ID":16},{"Level":17,"ID":78},{"Level":20,"ID":234},{"Level":24,"ID":72},{"Level":27,"ID":18},{"Level":31,"ID":213},{"Level":34,"ID":318},{"Level":38,"ID":202},{"Level":41,"ID":405},{"Level":45,"ID":483}],"EvolutionConditions":[],"Items":[{"Id":154,"Chance":5}]} \ No newline at end of file +Name|Beautifly +Number|267 +ExperienceType|1 +BaseExperience|173 +Type1|Bug +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|265 +IsGenderLess|0 +CanBreed|1 +Devolution|266 +IsMale|50 +Ability1|68 +Ability2|Nothing +HiddenAbility|79 +Machines|174,92,237,241,173,63,182,202,203,218,216,104,207,214,129,197,156,213,168,13,18,36,99,72,102,117,164,332,263,290,355,412,318,416,432,445,363,474,496,522,611,590,148 +BaseHP|60 +BaseAttack|70 +BaseDefense|50 +BaseSpAttack|100 +BaseSpDefense|50 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|Vibrantly patterned wings are its prominent feature. It sucks sweet flower nectar with its long mouth.\Butterfly Pokémon\28.4\1\0,148,0 +Scale|1 +Move|1,71 +Move|10,71 +Move|13,16 +Move|17,78 +Move|20,234 +Move|24,72 +Move|27,18 +Move|31,213 +Move|34,318 +Move|38,202 +Move|41,405 +Move|45,483 +TradeValue|20 +Item|5,154 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/268.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/268.dat index 6efb94746..d6bc316b0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/268.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/268.dat @@ -1 +1,40 @@ -{"Name":"Cascoon","Number":268,"ExperienceType":"MediumFast","BaseExperience":41,"Type1":"Bug","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":265,"Devolution":265,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61],"HiddenAbility":68,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":35,"Def":55,"SpAtk":25,"SpDef":25,"Speed":15},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It endures attacks with patience because the more pain before evolution, the sturdier it becomes.","Species":"Cocoon Pokémon","Height":0.7,"Weight":11.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":10,"Moves":[{"Level":1,"ID":106},{"Level":7,"ID":106}],"EvolutionConditions":[{"Condition":"10","ConditionType":"Level","Evolution":269,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Cascoon +Number|268 +ExperienceType|1 +BaseExperience|41 +Type1|Bug +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|265 +IsGenderLess|0 +CanBreed|1 +Devolution|265 +IsMale|50 +Ability1|61 +Ability2|Nothing +HiddenAbility|68 +Machines| +BaseHP|50 +BaseAttack|35 +BaseDefense|55 +BaseSpAttack|25 +BaseSpDefense|25 +BaseSpeed|15 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It endures attacks with patience because the more pain before evolution, the sturdier it becomes.\Cocoon Pokémon\11.5\0.7\0,148,0 +Scale|0.88 +Move|1,106 +Move|7,106 +TradeValue|10 +EvolutionCondition|269,Level,10,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/269.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/269.dat index afe2e1b57..e8f47e3aa 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/269.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/269.dat @@ -1 +1,50 @@ -{"Name":"Dustox","Number":269,"ExperienceType":"MediumFast","BaseExperience":135,"Type1":"Bug","Type2":"Poison","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":265,"Devolution":268,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[19],"HiddenAbility":14,"EggMoves":[],"Machines":[174,92,237,241,173,63,182,202,203,218,216,104,207,214,188,129,197,156,213,168,13,18,36,99,72,102,117,164,332,263,290,355,412,318,416,432,445,363,474,496,522,611,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":50,"Def":70,"SpAtk":50,"SpDef":90,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It scatters its fine dust all over when it is attacked. It is a nocturnal Pokémon.","Species":"Poison Moth Pokémon","Height":1.2,"Weight":31.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":20,"Moves":[{"Level":1,"ID":93},{"Level":10,"ID":93},{"Level":13,"ID":16},{"Level":17,"ID":182},{"Level":20,"ID":236},{"Level":24,"ID":60},{"Level":27,"ID":18},{"Level":31,"ID":113},{"Level":34,"ID":318},{"Level":38,"ID":92},{"Level":41,"ID":405},{"Level":45,"ID":483}],"EvolutionConditions":[],"Items":[{"Id":154,"Chance":5}]} \ No newline at end of file +Name|Dustox +Number|269 +ExperienceType|1 +BaseExperience|135 +Type1|Bug +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|265 +IsGenderLess|0 +CanBreed|1 +Devolution|268 +IsMale|50 +Ability1|19 +Ability2|Nothing +HiddenAbility|14 +Machines|174,92,237,241,173,63,182,202,203,218,216,104,207,214,188,129,197,156,213,168,13,18,36,99,72,102,117,164,332,263,290,355,412,318,416,432,445,363,474,496,522,611,590,148 +BaseHP|60 +BaseAttack|50 +BaseDefense|70 +BaseSpAttack|50 +BaseSpDefense|90 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It scatters its fine dust all over when it is attacked. It is a nocturnal Pokémon.\Poison Moth Pokémon\31.6\1.2\0,148,0 +Scale|1.08 +Move|1,93 +Move|10,93 +Move|13,16 +Move|17,182 +Move|20,236 +Move|24,60 +Move|27,18 +Move|31,113 +Move|34,318 +Move|38,92 +Move|41,405 +Move|45,483 +TradeValue|20 +Item|5,154 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/27.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/27.dat index d2a3e09ad..1f9916ac1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/27.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/27.dat @@ -1 +1,55 @@ -{"Name":"Sandshrew","Number":27,"ExperienceType":"MediumFast","BaseExperience":60,"Type1":"Ground","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":27,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[8],"HiddenAbility":146,"EggMoves":[498,68,306,203,175,232,341,400,431,563,229,219,14,157],"Machines":[223,29,174,205,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,129,111,197,156,213,168,210,14,34,36,66,68,69,99,90,102,117,130,157,164,264,219,280,317,332,263,290,374,421,416,360,446,445,404,363,398,468,496,523,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":75,"Def":85,"SpAtk":20,"SpDef":30,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it fell from a great height, this Pokémon could save itself by rolling into a ball and bouncing.","Species":"Mouse Pokémon","Height":0.6,"Weight":12,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":111},{"Level":3,"ID":28},{"Level":5,"ID":40},{"Level":7,"ID":205},{"Level":9,"ID":229},{"Level":11,"ID":129},{"Level":14,"ID":210},{"Level":17,"ID":222},{"Level":20,"ID":154},{"Level":23,"ID":328},{"Level":26,"ID":163},{"Level":30,"ID":91},{"Level":34,"ID":360},{"Level":38,"ID":14},{"Level":42,"ID":201},{"Level":46,"ID":89}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Level","Evolution":28,"Trigger":"LevelUp"}],"Items":[{"Id":73,"Chance":5}]} \ No newline at end of file +Name|Sandshrew +Number|27 +ExperienceType|1 +BaseExperience|60 +Type1|Ground +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|27 +IsGenderLess|0 +IsMale|50 +Ability1|8 +Ability2|Nothing +HiddenAbility|146 +EggMoves|498,68,306,203,175,232,341,400,431,563,229,219,14,157 +Machines|223,29,174,205,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,129,111,197,156,213,168,210,14,34,36,66,68,69,99,90,102,117,130,157,164,264,219,280,317,332,263,290,374,421,416,360,446,445,404,363,398,468,496,523,590,15,70,431 +BaseHP|50 +BaseAttack|75 +BaseDefense|85 +BaseSpAttack|20 +BaseSpDefense|30 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it fell from a great height, this Pokémon could save itself by rolling into a ball and bouncing.\Mouse Pokémon\12\0.6\0,148,0 +Scale|0.84 +Move|1,10 +Move|1,111 +Move|3,28 +Move|5,40 +Move|7,205 +Move|9,229 +Move|11,129 +Move|14,210 +Move|17,222 +Move|20,154 +Move|23,328 +Move|26,163 +Move|30,91 +Move|34,360 +Move|38,14 +Move|42,201 +Move|46,89 +EvolutionCondition|28,Level,22,Level +Item|5,73 +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/270.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/270.dat index f2eabadd8..00a802abe 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/270.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/270.dat @@ -1 +1,50 @@ -{"Name":"Lotad","Number":270,"ExperienceType":"MediumSlow","BaseExperience":44,"Type1":"Water","Type2":"Grass","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Grass","BaseEggSteps":4080,"EggPokemon":270,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,44],"HiddenAbility":20,"EggMoves":[68,175,202,73,75,230,235,298,321,55],"Machines":[174,92,237,241,230,173,59,63,196,182,240,202,203,218,76,216,104,207,214,197,156,213,168,14,34,36,61,55,58,99,72,102,117,164,352,258,331,263,290,412,416,445,363,447,496,497,503,267,590,57,148,250],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":30,"Def":30,"SpAtk":40,"SpDef":50,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its leaf grew too large for it to live on land. That is how it began to live floating in the water.","Species":"Water Weed Pokémon","Height":0.5,"Weight":2.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":310},{"Level":3,"ID":45},{"Level":5,"ID":71},{"Level":7,"ID":267},{"Level":11,"ID":54},{"Level":15,"ID":363},{"Level":19,"ID":72},{"Level":25,"ID":61},{"Level":31,"ID":428},{"Level":37,"ID":240},{"Level":45,"ID":412}],"EvolutionConditions":[{"Condition":"14","ConditionType":"Level","Evolution":271,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Lotad +Number|270 +ExperienceType|2 +BaseExperience|44 +Type1|Water +Type2|Grass +CatchRate|255 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Grass +BaseEggSteps|4080 +EggPokemon|270 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|33 +Ability2|44 +HiddenAbility|20 +EggMoves|68,175,202,73,75,230,235,298,321,55 +Machines|174,92,237,241,230,173,59,63,196,182,240,202,203,218,76,216,104,207,214,197,156,213,168,14,34,36,61,55,58,99,72,102,117,164,352,258,331,263,290,412,416,445,363,447,496,497,503,267,590,57,148,250 +BaseHP|40 +BaseAttack|30 +BaseDefense|30 +BaseSpAttack|40 +BaseSpDefense|50 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its leaf grew too large for it to live on land. That is how it began to live floating in the water.\Water Weed Pokémon\2.6\0.5\0,148,0 +Scale|0.7 +Move|1,310 +Move|3,45 +Move|5,71 +Move|7,267 +Move|11,54 +Move|15,363 +Move|19,72 +Move|25,61 +Move|31,428 +Move|37,240 +Move|45,412 +TradeValue|10 +EvolutionCondition|271,level,14,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/271.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/271.dat index 4f3b7bc9b..238862f07 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/271.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/271.dat @@ -1 +1,50 @@ -{"Name":"Lombre","Number":271,"ExperienceType":"MediumSlow","BaseExperience":119,"Type1":"Water","Type2":"Grass","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Grass","BaseEggSteps":4080,"EggPokemon":270,"Devolution":270,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,44],"HiddenAbility":20,"EggMoves":[68,175,202,73,75,230,235,298,321,55],"Machines":[223,174,92,249,237,241,230,173,59,63,196,182,240,202,203,218,76,216,189,104,8,207,214,9,197,156,213,168,7,14,34,36,61,55,58,99,72,102,117,164,352,258,331,280,263,290,412,374,409,416,445,363,447,468,496,497,503,267,612,590,57,70,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":50,"Def":50,"SpAtk":60,"SpDef":70,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is nocturnal and becomes active at nightfall. It feeds on aquatic mosses that grow in the riverbed.","Species":"Jolly Pokémon","Height":1.2,"Weight":32.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":25,"Moves":[{"Level":1,"ID":310},{"Level":3,"ID":45},{"Level":5,"ID":71},{"Level":7,"ID":267},{"Level":11,"ID":252},{"Level":15,"ID":154},{"Level":19,"ID":346},{"Level":25,"ID":61},{"Level":31,"ID":428},{"Level":37,"ID":253},{"Level":45,"ID":56}],"EvolutionConditions":[{"Condition":"24","ConditionType":"Item","Evolution":272,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Lombre +Number|271 +ExperienceType|2 +BaseExperience|119 +Type1|Water +Type2|Grass +CatchRate|120 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Grass +BaseEggSteps|4080 +EggPokemon|270 +IsGenderLess|0 +CanBreed|1 +Devolution|270 +IsMale|50 +Ability1|33 +Ability2|44 +HiddenAbility|20 +EggMoves|68,175,202,73,75,230,235,298,321,55 +Machines|223,174,92,249,237,241,230,173,59,63,196,182,240,202,203,218,76,216,189,104,8,207,214,9,197,156,213,168,7,14,34,36,61,55,58,99,72,102,117,164,352,258,331,280,263,290,412,374,409,416,445,363,447,468,496,497,503,267,612,590,57,70,148,250,127,291 +BaseHP|60 +BaseAttack|50 +BaseDefense|50 +BaseSpAttack|60 +BaseSpDefense|70 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is nocturnal and becomes active at nightfall. It feeds on aquatic mosses that grow in the riverbed.\Jolly Pokémon\32.5\1.2\0,148,0 +Scale|1.08 +Move|1,310 +Move|3,45 +Move|5,71 +Move|7,267 +Move|11,252 +Move|15,154 +Move|19,346 +Move|25,61 +Move|31,428 +Move|37,253 +Move|45,56 +TradeValue|25 +EvolutionCondition|272,item,24,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/272.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/272.dat index 7a6469f4a..f8e2dc673 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/272.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/272.dat @@ -1 +1,42 @@ -{"Name":"Ludicolo","Number":272,"ExperienceType":"MediumSlow","BaseExperience":216,"Type1":"Water","Type2":"Grass","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Grass","BaseEggSteps":4080,"EggPokemon":270,"Devolution":271,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,44],"HiddenAbility":20,"EggMoves":[68,175,202,73,75,230,235,298,321,55],"Machines":[223,174,92,249,237,241,230,173,59,63,196,182,240,202,203,218,76,216,189,104,8,207,214,9,197,156,213,168,7,5,14,25,34,36,38,61,55,58,66,68,69,99,72,102,117,118,164,264,352,258,331,280,263,290,411,412,374,409,416,445,363,447,468,496,497,503,267,612,590,57,70,148,250,127,431,560,291],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":70,"Def":70,"SpAtk":90,"SpDef":100,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it hears festive music, it begins moving in rhythm in order to amplify its power.","Species":"Carefree Pokémon","Height":1.5,"Weight":55,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":45,"Moves":[{"Level":1,"ID":310},{"Level":2,"ID":45},{"Level":3,"ID":72},{"Level":4,"ID":267}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Ludicolo +Number|272 +ExperienceType|2 +BaseExperience|216 +Type1|Water +Type2|Grass +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Grass +BaseEggSteps|4080 +EggPokemon|270 +IsGenderLess|0 +CanBreed|1 +Devolution|271 +IsMale|50 +Ability1|33 +Ability2|44 +HiddenAbility|20 +EggMoves|68,175,202,73,75,230,235,298,321,55 +Machines|223,174,92,249,237,241,230,173,59,63,196,182,240,202,203,218,76,216,189,104,8,207,214,9,197,156,213,168,7,5,14,25,34,36,38,61,55,58,66,68,69,99,72,102,117,118,164,264,352,258,331,280,263,290,411,412,374,409,416,445,363,447,468,496,497,503,267,612,590,57,70,148,250,127,431,560,291 +BaseHP|80 +BaseAttack|70 +BaseDefense|70 +BaseSpAttack|90 +BaseSpDefense|100 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it hears festive music, it begins moving in rhythm in order to amplify its power.\Carefree Pokémon\55\1.5\0,148,0 +Scale|1.2 +Move|1,310 +Move|1,45 +Move|1,72 +Move|1,267 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/273.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/273.dat index 6d8fc587e..56d0b4b7c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/273.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/273.dat @@ -1 +1,46 @@ -{"Name":"Seedot","Number":273,"ExperienceType":"MediumSlow","BaseExperience":44,"Type1":"Grass","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Grass","BaseEggSteps":4080,"EggPokemon":273,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,48],"HiddenAbility":124,"EggMoves":[133,251,331,432,492,580,73,417,384,98,13,36,388,206],"Machines":[174,205,92,249,237,241,230,173,63,182,202,203,218,76,216,104,207,214,111,197,156,213,34,36,99,72,102,117,120,130,164,331,263,290,412,409,416,445,363,496,267,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":40,"Def":50,"SpAtk":30,"SpDef":30,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It attaches itself to a tree branch using the top of its head. Strong winds can sometimes make it fall.","Species":"Acorn Pokémon","Height":0.5,"Weight":4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":117},{"Level":3,"ID":106},{"Level":7,"ID":74},{"Level":13,"ID":267},{"Level":21,"ID":235},{"Level":31,"ID":241},{"Level":43,"ID":153}],"EvolutionConditions":[{"Condition":"14","ConditionType":"Level","Evolution":274,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Seedot +Number|273 +ExperienceType|2 +BaseExperience|44 +Type1|Grass +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Grass +BaseEggSteps|4080 +EggPokemon|273 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|34 +Ability2|48 +HiddenAbility|124 +EggMoves|133,251,331,432,492,580,73,417,384,98,13,36,388,206 +Machines|174,205,92,249,237,241,230,173,63,182,202,203,218,76,216,104,207,214,111,197,156,213,34,36,99,72,102,117,120,130,164,331,263,290,412,409,416,445,363,496,267,590,148 +BaseHP|40 +BaseAttack|40 +BaseDefense|50 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It attaches itself to a tree branch using the top of its head. Strong winds can sometimes make it fall.\Acorn Pokémon\4\0.5\0,148,0 +Scale|0.7 +Move|1,117 +Move|3,106 +Move|7,74 +Move|13,267 +Move|21,235 +Move|31,241 +Move|43,153 +TradeValue|15 +EvolutionCondition|274,Level,14,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/274.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/274.dat index 5077b4f25..84c0d8f14 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/274.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/274.dat @@ -1 +1,50 @@ -{"Name":"Nuzleaf","Number":274,"ExperienceType":"MediumSlow","BaseExperience":119,"Type1":"Grass","Type2":"Dark","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Grass","BaseEggSteps":4080,"EggPokemon":273,"Devolution":273,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,48],"HiddenAbility":124,"EggMoves":[133,251,331,432,492,580,73,417,384,98,13,36,388,206],"Machines":[174,205,92,249,244,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,129,111,197,156,213,210,34,36,99,72,102,117,120,130,164,331,263,290,412,206,373,416,445,399,363,447,490,496,555,267,612,590,15,70,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":70,"Def":40,"SpAtk":60,"SpDef":40,"Speed":60},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives deep in forests. With the leaf on its head, it makes a flute whose song makes listeners uneasy.","Species":"Wily Pokémon","Height":1,"Weight":28,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":30,"Moves":[{"Level":1,"ID":75},{"Level":2,"ID":1},{"Level":3,"ID":106},{"Level":7,"ID":74},{"Level":13,"ID":267},{"Level":19,"ID":252},{"Level":25,"ID":259},{"Level":31,"ID":185},{"Level":37,"ID":13},{"Level":43,"ID":207},{"Level":49,"ID":326}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Item","Evolution":275,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Nuzleaf +Number|274 +ExperienceType|2 +BaseExperience|119 +Type1|Grass +Type2|Dark +CatchRate|120 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Grass +BaseEggSteps|4080 +EggPokemon|273 +IsGenderLess|0 +CanBreed|1 +Devolution|273 +IsMale|50 +Ability1|34 +Ability2|48 +HiddenAbility|124 +EggMoves|133,251,331,432,492,580,73,417,384,98,13,36,388,206 +Machines|174,205,92,249,244,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,129,111,197,156,213,210,34,36,99,72,102,117,120,130,164,331,263,290,412,206,373,416,445,399,363,447,490,496,555,267,612,590,15,70,148 +BaseHP|70 +BaseAttack|70 +BaseDefense|40 +BaseSpAttack|60 +BaseSpDefense|40 +BaseSpeed|60 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives deep in forests. With the leaf on its head, it makes a flute whose song makes listeners uneasy.\Wily Pokémon\28\1\0,148,0 +Scale|1 +Move|1,75 +Move|1,1 +Move|3,106 +Move|7,74 +Move|13,267 +Move|19,252 +Move|25,259 +Move|31,185 +Move|37,13 +Move|43,207 +Move|49,326 +TradeValue|30 +EvolutionCondition|275,item,34,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/275.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/275.dat index 3628b9047..3740c7fb3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/275.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/275.dat @@ -1 +1,44 @@ -{"Name":"Shiftry","Number":275,"ExperienceType":"MediumSlow","BaseExperience":216,"Type1":"Grass","Type2":"Dark","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Grass","BaseEggSteps":4080,"EggPokemon":273,"Devolution":274,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,48],"HiddenAbility":124,"EggMoves":[133,251,331,432,492,580,73,417,384,98,13,36,388,206],"Machines":[174,205,92,249,244,237,241,230,173,63,196,182,202,203,218,76,216,189,104,207,214,129,111,197,156,213,210,13,18,34,36,38,66,69,99,72,102,117,120,130,164,331,332,263,290,411,412,206,318,373,416,432,445,399,363,447,490,496,555,267,612,590,15,70,148],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":100,"Def":60,"SpAtk":90,"SpDef":60,"Speed":80},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives quietly in the deep forest. It is said to create chilly winter winds with the fans it holds.","Species":"Wicked Pokémon","Height":1.3,"Weight":59.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":45,"Moves":[{"Level":1,"ID":185},{"Level":2,"ID":18},{"Level":3,"ID":417},{"Level":4,"ID":75},{"Level":19,"ID":536},{"Level":49,"ID":437}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Shiftry +Number|275 +ExperienceType|2 +BaseExperience|216 +Type1|Grass +Type2|Dark +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Grass +BaseEggSteps|4080 +EggPokemon|273 +IsGenderLess|0 +CanBreed|1 +Devolution|274 +IsMale|50 +Ability1|34 +Ability2|48 +HiddenAbility|124 +EggMoves|133,251,331,432,492,580,73,417,384,98,13,36,388,206 +Machines|174,205,92,249,244,237,241,230,173,63,196,182,202,203,218,76,216,189,104,207,214,129,111,197,156,213,210,13,18,34,36,38,66,69,99,72,102,117,120,130,164,331,332,263,290,411,412,206,318,373,416,432,445,399,363,447,490,496,555,267,612,590,15,70,148 +BaseHP|90 +BaseAttack|100 +BaseDefense|60 +BaseSpAttack|90 +BaseSpDefense|60 +BaseSpeed|80 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives quietly in the deep forest. It is said to create chilly winter winds with the fans it holds.\Wicked Pokémon\59.6\1.3\0,148,0 +Scale|1.12 +Move|1,185 +Move|1,18 +Move|1,417 +Move|1,75 +Move|19,536 +Move|49,437 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/276.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/276.dat index d74c15838..7ecafc953 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/276.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/276.dat @@ -1 +1,50 @@ -{"Name":"Taillow","Number":276,"ExperienceType":"MediumSlow","BaseExperience":54,"Type1":"Normal","Type2":"Flying","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":276,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[62],"HiddenAbility":113,"EggMoves":[586,413,432,119,228,99,287,355,143,211,48,18],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,497,526,590,19],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":55,"Def":30,"SpAtk":30,"SpDef":30,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it gets cold flying over 180 miles a day. It hunts for tasty prey.","Species":"TinySwallow Pokémon","Height":0.3,"Weight":2.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":64},{"Level":2,"ID":45},{"Level":4,"ID":116},{"Level":7,"ID":98},{"Level":13,"ID":17},{"Level":19,"ID":104},{"Level":26,"ID":283},{"Level":34,"ID":332},{"Level":43,"ID":97},{"Level":53,"ID":403}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Level","Evolution":277,"Trigger":"LevelUp"}],"Items":[{"Id":2046,"Chance":5}]} \ No newline at end of file +Name|Taillow +Number|276 +ExperienceType|2 +BaseExperience|54 +Type1|Normal +Type2|Flying +CatchRate|200 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|276 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|62 +Ability2|Nothing +HiddenAbility|113 +EggMoves|586,413,432,119,228,99,287,355,143,211,48,18 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,497,526,590,19 +BaseHP|40 +BaseAttack|55 +BaseDefense|30 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|When it gets cold flying over 180 miles a day. It hunts for tasty prey.\TinySwallow Pokémon\2.3\0.3\0,148,0 +Scale|0.7 +Move|1,64 +Move|1,45 +Move|4,116 +Move|7,98 +Move|13,17 +Move|19,104 +Move|26,283 +Move|34,332 +Move|43,97 +Move|53,403 +TradeValue|15 +Item|5,2046 +EvolutionCondition|277,Level,22,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/277.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/277.dat index 2d381c5fc..fa3ad3d84 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/277.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/277.dat @@ -1 +1,53 @@ -{"Name":"Swellow","Number":277,"ExperienceType":"MediumSlow","BaseExperience":151,"Type1":"Normal","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":276,"Devolution":276,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[62],"HiddenAbility":113,"EggMoves":[586,413,432,119,228,99,287,355,143,211,48,18],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,497,526,590,19],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":85,"Def":60,"SpAtk":50,"SpDef":50,"Speed":125},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It dives at a steep angle as soon as it spots its prey. It catches its prey with sharp claws.","Species":"Swallow Pokémon","Height":0.7,"Weight":19.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":30,"Moves":[{"Level":1,"ID":403},{"Level":2,"ID":365},{"Level":3,"ID":64},{"Level":4,"ID":45},{"Level":5,"ID":116},{"Level":6,"ID":98},{"Level":7,"ID":116},{"Level":8,"ID":98},{"Level":13,"ID":17},{"Level":19,"ID":104},{"Level":28,"ID":283},{"Level":38,"ID":332},{"Level":49,"ID":97},{"Level":61,"ID":403}],"EvolutionConditions":[],"Items":[{"Id":2046,"Chance":5}]} \ No newline at end of file +Name|Swellow +Number|277 +ExperienceType|2 +BaseExperience|151 +Type1|Normal +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|276 +IsGenderLess|0 +CanBreed|1 +Devolution|276 +IsMale|50 +Ability1|62 +Ability2|Nothing +HiddenAbility|113 +EggMoves|586,413,432,119,228,99,287,355,143,211,48,18 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,497,526,590,19 +BaseHP|60 +BaseAttack|85 +BaseDefense|60 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|125 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It dives at a steep angle as soon as it spots its prey. It catches its prey with sharp claws.\Swallow Pokémon\19.8\0.7\0,148,0 +Scale|0.88 +Move|1,403 +Move|1,365 +Move|1,64 +Move|1,45 +Move|1,116 +Move|1,98 +Move|4,116 +Move|7,98 +Move|13,17 +Move|19,104 +Move|28,283 +Move|38,332 +Move|49,97 +Move|61,403 +TradeValue|30 +Item|5,2046 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/278.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/278.dat index a20befeb5..1edb8fb03 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/278.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/278.dat @@ -1 +1,53 @@ -{"Name":"Wingull","Number":278,"ExperienceType":"MediumFast","BaseExperience":54,"Type1":"Water","Type2":"Flying","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Flying","BaseEggSteps":5355,"EggPokemon":278,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51],"HiddenAbility":44,"EggMoves":[97,392,362,16,282,54,355,487,239,346,469],"Machines":[174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,61,55,58,99,102,117,143,164,352,258,351,332,263,290,355,362,416,432,445,363,365,369,496,497,503,590,19],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":30,"Def":30,"SpAtk":55,"SpDef":30,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It soars on updrafts without flapping its wings. It makes a nest on sheer cliffs at the sea's edge.","Species":"Seagull Pokémon","Height":0.6,"Weight":9.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":55},{"Level":6,"ID":48},{"Level":9,"ID":17},{"Level":14,"ID":54},{"Level":17,"ID":352},{"Level":22,"ID":98},{"Level":26,"ID":355},{"Level":30,"ID":228},{"Level":33,"ID":314},{"Level":38,"ID":97},{"Level":42,"ID":332},{"Level":46,"ID":403},{"Level":49,"ID":542}],"EvolutionConditions":[{"Condition":"25","ConditionType":"Level","Evolution":279,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Wingull +Number|278 +ExperienceType|1 +BaseExperience|54 +Type1|Water +Type2|Flying +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Flying +BaseEggSteps|5355 +EggPokemon|278 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|51 +Ability2|Nothing +HiddenAbility|44 +EggMoves|97,392,362,16,282,54,355,487,239,346,469 +Machines|174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,61,55,58,99,102,117,143,164,352,258,351,332,263,290,355,362,416,432,445,363,365,369,496,497,503,590,19 +BaseHP|40 +BaseAttack|30 +BaseDefense|30 +BaseSpAttack|55 +BaseSpDefense|30 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It soars on updrafts without flapping its wings. It makes a nest on sheer cliffs at the sea's edge.\Seagull Pokémon\9.5\0.6\0,148,0 +Scale|0.84 +Move|1,45 +Move|1,55 +Move|6,48 +Move|9,17 +Move|14,54 +Move|17,352 +Move|22,98 +Move|26,355 +Move|30,228 +Move|33,314 +Move|38,97 +Move|42,332 +Move|46,403 +Move|49,542 +TradeValue|15 +EvolutionCondition|279,Level,25,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/279.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/279.dat index b480eba43..06d80714b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/279.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/279.dat @@ -1 +1,60 @@ -{"Name":"Pelipper","Number":279,"ExperienceType":"MediumFast","BaseExperience":151,"Type1":"Water","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Flying","BaseEggSteps":5355,"EggPokemon":278,"Devolution":278,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51],"HiddenAbility":44,"EggMoves":[97,392,362,16,282,54,355,487,239,346,469],"Machines":[174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,38,61,55,58,99,102,117,143,164,352,258,351,332,263,290,355,362,374,371,416,432,445,363,365,369,496,497,503,507,590,19,57,250],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":50,"Def":100,"SpAtk":85,"SpDef":70,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It protects its young in its beak. It bobs on waves, resting on them on days when the waters are calm.","Species":"Water Bird Pokémon","Height":1.2,"Weight":28,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":30,"Moves":[{"Level":1,"ID":366},{"Level":2,"ID":56},{"Level":3,"ID":1},{"Level":4,"ID":45},{"Level":5,"ID":55},{"Level":6,"ID":346},{"Level":7,"ID":17},{"Level":8,"ID":48},{"Level":9,"ID":17},{"Level":14,"ID":54},{"Level":17,"ID":352},{"Level":22,"ID":371},{"Level":25,"ID":182},{"Level":28,"ID":355},{"Level":34,"ID":362},{"Level":39,"ID":254},{"Level":40,"ID":256},{"Level":41,"ID":255},{"Level":46,"ID":374},{"Level":52,"ID":366},{"Level":58,"ID":56},{"Level":63,"ID":542}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Pelipper +Number|279 +ExperienceType|1 +BaseExperience|151 +Type1|Water +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Flying +BaseEggSteps|5355 +EggPokemon|278 +IsGenderLess|0 +CanBreed|1 +Devolution|278 +IsMale|50 +Ability1|51 +Ability2|Nothing +HiddenAbility|44 +EggMoves|97,392,362,16,282,54,355,487,239,346,469 +Machines|174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,38,61,55,58,99,102,117,143,164,352,258,351,332,263,290,355,362,374,371,416,432,445,363,365,369,496,497,503,507,590,19,57,250 +BaseHP|60 +BaseAttack|50 +BaseDefense|100 +BaseSpAttack|85 +BaseSpDefense|70 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It protects its young in its beak. It bobs on waves, resting on them on days when the waters are calm.\Water Bird Pokémon\28\1.2\0,148,0 +Scale|1.08 +Move|1,366 +Move|1,56 +Move|1,487 +Move|1,45 +Move|1,55 +Move|1,346 +Move|1,17 +Move|6,48 +Move|9,17 +Move|14,54 +Move|17,352 +Move|22,371 +Move|25,182 +Move|28,355 +Move|34,362 +Move|39,254 +Move|39,256 +Move|39,255 +Move|46,374 +Move|52,366 +Move|58,56 +Move|63,542 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/28.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/28.dat index c07780526..9d1bf4b99 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/28.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/28.dat @@ -1 +1,57 @@ -{"Name":"Sandslash","Number":28,"ExperienceType":"MediumFast","BaseExperience":158,"Type1":"Ground","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":27,"Devolution":27,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[8],"HiddenAbility":146,"EggMoves":[498,68,306,203,175,232,341,400,431,563,229,219,14,157],"Machines":[223,29,174,205,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,129,111,197,156,213,168,210,14,32,34,36,38,66,68,69,99,90,102,117,130,157,164,264,219,280,317,332,263,290,411,374,421,416,444,360,446,445,404,363,398,468,496,523,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":100,"Def":110,"SpAtk":45,"SpDef":55,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"In an attempt to hide itself it will run around at top speed to kick up a blinding dust storm.","Species":"Mouse Pokémon","Height":1,"Weight":29.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":30,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":28},{"Level":3,"ID":40},{"Level":4,"ID":111},{"Level":5,"ID":28},{"Level":6,"ID":40},{"Level":7,"ID":205},{"Level":9,"ID":229},{"Level":11,"ID":129},{"Level":14,"ID":210},{"Level":17,"ID":222},{"Level":20,"ID":154},{"Level":22,"ID":306},{"Level":23,"ID":328},{"Level":26,"ID":163},{"Level":30,"ID":91},{"Level":34,"ID":360},{"Level":38,"ID":14},{"Level":42,"ID":201},{"Level":46,"ID":89}],"EvolutionConditions":[],"Items":[{"Id":73,"Chance":5}]} \ No newline at end of file +Name|Sandslash +Number|28 +ExperienceType|1 +BaseExperience|158 +Type1|Ground +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|27 +IsGenderLess|0 +IsMale|50 +Ability1|8 +Ability2|Nothing +HiddenAbility|146 +EggMoves|498,68,306,203,175,232,341,400,431,563,229,219,14,157 +Machines|223,29,174,205,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,129,111,197,156,213,168,210,14,32,34,36,38,66,68,69,99,90,102,117,130,157,164,264,219,280,317,332,263,290,411,374,421,416,444,360,446,445,404,363,398,468,496,523,590,15,70,431 +BaseHP|75 +BaseAttack|100 +BaseDefense|110 +BaseSpAttack|45 +BaseSpDefense|55 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|In an attempt to hide itself it will run around at top speed to kick up a blinding dust storm.\Mouse Pokémon\29.5\1\0,148,0 +Scale|1 +Move|1,10 +Move|1,28 +Move|1,40 +Move|1,111 +Move|3,28 +Move|5,40 +Move|7,205 +Move|9,229 +Move|11,129 +Move|14,210 +Move|17,222 +Move|20,154 +Move|22,306 +Move|23,328 +Move|26,163 +Move|30,91 +Move|34,360 +Move|38,14 +Move|42,201 +Move|46,89 +Item|5,73 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/280.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/280.dat index 57299ecfb..8b44b3f8a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/280.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/280.dat @@ -1 +1,54 @@ -{"Name":"Ralts","Number":280,"ExperienceType":"Slow","BaseExperience":40,"Type1":"Psychic","Type2":"Fairy","CatchRate":235,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":280,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[28,36],"HiddenAbility":140,"EggMoves":[502,109,194,50,227,288,212,262,581,425,285,485,261],"Machines":[174,92,244,237,241,230,173,63,196,182,240,203,218,216,94,247,189,104,8,207,214,129,111,9,138,197,156,213,168,7,171,34,36,99,85,100,102,115,117,118,86,149,164,347,269,113,219,351,259,263,290,285,289,374,451,261,278,416,445,363,447,433,473,477,496,497,502,605,590,148],"TutorMoves":[],"BaseStats":{"HP":28,"Atk":25,"Def":25,"SpAtk":45,"SpDef":35,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The horns on its head provide a strong power that enables it to sense people's emotions.","Species":"Feeling Pokémon","Height":0.4,"Weight":6.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":45},{"Level":6,"ID":93},{"Level":10,"ID":104},{"Level":12,"ID":100},{"Level":17,"ID":1},{"Level":21,"ID":345},{"Level":23,"ID":505},{"Level":28,"ID":347},{"Level":32,"ID":94},{"Level":34,"ID":1},{"Level":39,"ID":248},{"Level":43,"ID":204},{"Level":45,"ID":95},{"Level":50,"ID":138},{"Level":54,"ID":500}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":281,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Ralts +Number|280 +ExperienceType|3 +BaseExperience|40 +Type1|Psychic +Type2|Fairy +CatchRate|235 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|280 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|28 +Ability2|36 +HiddenAbility|140 +EggMoves|502,109,194,50,227,288,212,262,581,425,285,485,261 +Machines|174,92,244,237,241,230,173,63,196,182,240,203,218,216,94,247,189,104,8,207,214,129,111,9,138,197,156,213,168,7,171,34,36,99,85,100,102,115,117,118,86,149,164,347,269,113,219,351,259,263,290,285,289,374,451,261,278,416,445,363,447,433,473,477,496,497,502,605,590,148 +BaseHP|28 +BaseAttack|25 +BaseDefense|25 +BaseSpAttack|45 +BaseSpDefense|35 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The horns on its head provide a strong power that enables it to sense people's emotions.\Feeling Pokémon\6.6\0.4\0,148,0 +Scale|0.7 +Move|1,45 +Move|6,93 +Move|10,104 +Move|12,100 +Move|17,381 +Move|21,345 +Move|23,505 +Move|28,347 +Move|32,94 +Move|34,286 +Move|39,248 +Move|43,204 +Move|45,95 +Move|50,138 +Move|54,500 +TradeValue|15 +EvolutionCondition|281,level,20,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/281.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/281.dat index 3ecd879e2..b580e3f0b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/281.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/281.dat @@ -1 +1,59 @@ -{"Name":"Kirlia","Number":281,"ExperienceType":"Slow","BaseExperience":97,"Type1":"Psychic","Type2":"Fairy","CatchRate":120,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":280,"Devolution":280,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[28,36],"HiddenAbility":140,"EggMoves":[502,109,194,50,227,288,212,262,581,425,285,485,261],"Machines":[174,92,244,237,241,230,173,63,196,182,240,203,218,216,94,247,189,104,8,207,214,129,111,9,138,197,156,213,168,7,171,34,36,99,85,100,102,115,117,118,86,149,161,164,347,269,113,219,351,259,263,290,285,289,374,451,261,278,416,445,363,447,433,473,477,496,497,502,605,590,148],"TutorMoves":[],"BaseStats":{"HP":38,"Atk":35,"Def":35,"SpAtk":65,"SpDef":55,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has a psychic power that enables it to distort the space around it and see into the future.","Species":"Emotion Pokémon","Height":0.8,"Weight":20.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":25,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":93},{"Level":3,"ID":104},{"Level":4,"ID":100},{"Level":6,"ID":93},{"Level":10,"ID":104},{"Level":12,"ID":100},{"Level":17,"ID":1},{"Level":22,"ID":345},{"Level":25,"ID":505},{"Level":31,"ID":347},{"Level":36,"ID":94},{"Level":39,"ID":1},{"Level":45,"ID":248},{"Level":50,"ID":204},{"Level":53,"ID":95},{"Level":59,"ID":138},{"Level":64,"ID":500}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":282,"Trigger":"LevelUp"},{"Condition":"0","ConditionType":"Gender","Evolution":475,"Trigger":"ItemUse"},{"Condition":"137","ConditionType":"Item","Evolution":475,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Kirlia +Number|281 +ExperienceType|3 +BaseExperience|97 +Type1|Psychic +Type2|Fairy +CatchRate|120 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|280 +IsGenderLess|0 +CanBreed|1 +Devolution|280 +IsMale|50 +Ability1|28 +Ability2|36 +HiddenAbility|140 +EggMoves|502,109,194,50,227,288,212,262,581,425,285,485,261 +Machines|174,92,244,237,241,230,173,63,196,182,240,203,218,216,94,247,189,104,8,207,214,129,111,9,138,197,156,213,168,7,171,34,36,99,85,100,102,115,117,118,86,149,161,164,347,269,113,219,351,259,263,290,285,289,374,451,261,278,416,445,363,447,433,473,477,496,497,502,605,590,148 +BaseHP|38 +BaseAttack|35 +BaseDefense|35 +BaseSpAttack|65 +BaseSpDefense|55 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has a psychic power that enables it to distort the space around it and see into the future.\Emotion Pokémon\20.2\0.8\0,148,0 +Scale|0.92 +Move|1,45 +Move|1,93 +Move|1,104 +Move|1,100 +Move|6,93 +Move|10,104 +Move|12,100 +Move|17,381 +Move|22,345 +Move|25,505 +Move|31,347 +Move|36,94 +Move|39,286 +Move|45,248 +Move|50,204 +Move|53,95 +Move|59,138 +Move|64,500 +TradeValue|25 +EvolutionCondition|282,level,30,level +EvolutionCondition|475,gender,0,item +EvolutionCondition|475,item,137,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/282.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/282.dat index dabee45da..77dc75534 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/282.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/282.dat @@ -1 +1,61 @@ -{"Name":"Gardevoir","Number":282,"ExperienceType":"Slow","BaseExperience":233,"Type1":"Psychic","Type2":"Fairy","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":280,"Devolution":281,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[28,36],"HiddenAbility":140,"EggMoves":[502,109,194,50,227,288,212,262,581,425,285,485,261],"Machines":[174,92,244,237,241,230,173,63,196,182,240,203,218,216,94,247,189,104,8,207,214,129,111,9,138,197,156,213,168,7,171,34,36,38,99,85,100,102,115,117,118,86,149,161,164,347,269,113,219,351,259,263,290,285,289,411,412,374,451,261,278,416,445,363,447,433,473,477,496,497,502,605,590,148],"TutorMoves":[],"BaseStats":{"HP":68,"Atk":65,"Def":65,"SpAtk":125,"SpDef":115,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It unleashes psychokinetic energy at full power when protecting a Trainer it has bonded closely with.","Species":"Embrace Pokémon","Height":1.6,"Weight":48.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":40,"Moves":[{"Level":1,"ID":585},{"Level":2,"ID":500},{"Level":3,"ID":1},{"Level":4,"ID":361},{"Level":5,"ID":45},{"Level":6,"ID":93},{"Level":7,"ID":104},{"Level":8,"ID":100},{"Level":9,"ID":93},{"Level":10,"ID":104},{"Level":12,"ID":100},{"Level":17,"ID":273},{"Level":22,"ID":345},{"Level":25,"ID":505},{"Level":33,"ID":347},{"Level":40,"ID":94},{"Level":45,"ID":1},{"Level":53,"ID":248},{"Level":60,"ID":445},{"Level":65,"ID":95},{"Level":73,"ID":138},{"Level":80,"ID":500},{"Level":85,"ID":585}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Gardevoir +Number|282 +ExperienceType|3 +BaseExperience|233 +Type1|Psychic +Type2|Fairy +CatchRate|45 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|280 +IsGenderLess|0 +CanBreed|1 +Devolution|281 +IsMale|50 +Ability1|28 +Ability2|36 +HiddenAbility|140 +EggMoves|502,109,194,50,227,288,212,262,581,425,285,485,261 +Machines|174,92,244,237,241,230,173,63,196,182,240,203,218,216,94,247,189,104,8,207,214,129,111,9,138,197,156,213,168,7,171,34,36,38,99,85,100,102,115,117,118,86,149,161,164,347,269,113,219,351,259,263,290,285,289,411,412,374,451,261,278,416,445,363,447,433,473,477,496,497,502,605,590,148 +BaseHP|68 +BaseAttack|65 +BaseDefense|65 +BaseSpAttack|125 +BaseSpDefense|115 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It unleashes psychokinetic energy at full power when protecting a Trainer it has bonded closely with.\Embrace Pokémon\48.4\1.6\0,148,0 +Scale|1.24 +Move|1,585 +Move|1,500 +Move|1,581 +Move|1,361 +Move|1,45 +Move|1,93 +Move|1,104 +Move|1,100 +Move|6,93 +Move|10,104 +Move|12,100 +Move|17,273 +Move|22,345 +Move|25,505 +Move|33,347 +Move|40,94 +Move|45,286 +Move|53,248 +Move|60,445 +Move|65,95 +Move|73,138 +Move|80,500 +Move|85,585 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/282_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/282_mega.dat new file mode 100644 index 000000000..a6244bb72 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/282_mega.dat @@ -0,0 +1,61 @@ +Name|Mega Gardevoir +Number|282 +ExperienceType|3 +BaseExperience|233 +Type1|Psychic +Type2|Fairy +CatchRate|45 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|280 +IsGenderLess|0 +CanBreed|1 +Devolution|281 +IsMale|50 +Ability1|182 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|502,109,194,50,227,288,212,262,581,425,285,485,261 +Machines|174,92,244,237,241,230,173,63,196,182,240,203,218,216,94,247,189,104,8,207,214,129,111,9,138,197,156,213,168,7,171,34,36,38,99,85,100,102,115,117,118,86,149,161,164,347,269,113,219,351,259,263,290,285,289,411,412,374,451,261,278,416,445,363,447,433,473,477,496,497,502,605,590,148 +BaseHP|68 +BaseAttack|85 +BaseDefense|65 +BaseSpAttack|165 +BaseSpDefense|135 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It unleashes psychokinetic energy at full power when protecting a Trainer it has bonded closely with.\Embrace Pokémon\48.4\1.6\0,148,0 +Scale|1.24 +Move|1,585 +Move|1,500 +Move|1,581 +Move|1,361 +Move|1,45 +Move|1,93 +Move|1,104 +Move|1,100 +Move|6,93 +Move|10,104 +Move|12,100 +Move|17,273 +Move|22,345 +Move|25,505 +Move|33,347 +Move|40,94 +Move|45,286 +Move|53,248 +Move|60,445 +Move|65,95 +Move|73,138 +Move|80,500 +Move|85,585 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/283.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/283.dat index 3c555037e..957b9f937 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/283.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/283.dat @@ -1 +1,49 @@ -{"Name":"Surskit","Number":283,"ExperienceType":"MediumFast","BaseExperience":54,"Type1":"Bug","Type2":"Water","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Bug","BaseEggSteps":4080,"EggPokemon":283,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33],"HiddenAbility":44,"EggMoves":[453,450,203,565,193,56,170,341,471,60,324],"Machines":[174,92,244,237,241,173,59,63,196,182,240,202,203,218,76,216,247,189,104,207,214,129,197,156,213,168,61,55,58,99,72,102,117,164,352,263,290,416,445,363,496,503,522,611,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":30,"Def":32,"SpAtk":50,"SpDef":52,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It secretes a thick syrup from the tip of its head. It lives on weed-choked ponds.","Species":"Pond Skater Pokémon","Height":0.5,"Weight":1.7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":30,"Moves":[{"Level":1,"ID":145},{"Level":7,"ID":98},{"Level":13,"ID":230},{"Level":19,"ID":346},{"Level":25,"ID":61},{"Level":31,"ID":97},{"Level":37,"ID":54},{"Level":38,"ID":114},{"Level":43,"ID":226},{"Level":46,"ID":1}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Level","Evolution":284,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Surskit +Number|283 +ExperienceType|1 +BaseExperience|54 +Type1|Bug +Type2|Water +CatchRate|200 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Bug +BaseEggSteps|4080 +EggPokemon|283 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|33 +Ability2|Nothing +HiddenAbility|44 +EggMoves|453,450,203,565,193,56,170,341,471,60,324 +Machines|174,92,244,237,241,173,59,63,196,182,240,202,203,218,76,216,247,189,104,207,214,129,197,156,213,168,61,55,58,99,72,102,117,164,352,263,290,416,445,363,496,503,522,611,590,148 +BaseHP|40 +BaseAttack|30 +BaseDefense|32 +BaseSpAttack|50 +BaseSpDefense|52 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It secretes a thick syrup from the tip of its head. It lives on weed-choked ponds.\Pond Skater Pokémon\1.7\0.5\0,148,0 +Scale|0.7 +Move|1,145 +Move|7,98 +Move|13,230 +Move|19,346 +Move|25,61 +Move|31,97 +Move|37,54 +Move|37,114 +Move|43,226 +Move|46,564 +TradeValue|30 +EvolutionCondition|284,level,22,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/284.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/284.dat index 28c30ff3c..6f4620fba 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/284.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/284.dat @@ -1 +1,58 @@ -{"Name":"Masquerain","Number":284,"ExperienceType":"MediumFast","BaseExperience":145,"Type1":"Bug","Type2":"Flying","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Bug","BaseEggSteps":4080,"EggPokemon":283,"Devolution":283,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22],"HiddenAbility":127,"EggMoves":[453,450,203,565,193,56,170,341,471,60,324],"Machines":[174,92,244,237,241,173,59,63,196,182,240,202,203,218,76,216,247,189,104,207,214,129,197,156,213,168,171,13,18,36,61,55,58,99,72,102,117,164,352,332,263,290,412,318,416,432,445,363,369,496,503,522,611,590,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":60,"Def":62,"SpAtk":80,"SpDef":82,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It flaps its four wings to hover and fly freely in any direction-- to and fro and sideways.","Species":"Eyeball Pokémon","Height":0.8,"Weight":3.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":45,"Moves":[{"Level":1,"ID":483},{"Level":2,"ID":405},{"Level":3,"ID":18},{"Level":4,"ID":466},{"Level":5,"ID":145},{"Level":6,"ID":98},{"Level":7,"ID":230},{"Level":8,"ID":346},{"Level":9,"ID":98},{"Level":13,"ID":230},{"Level":19,"ID":346},{"Level":22,"ID":16},{"Level":26,"ID":184},{"Level":33,"ID":78},{"Level":40,"ID":318},{"Level":47,"ID":403},{"Level":54,"ID":18},{"Level":61,"ID":405},{"Level":68,"ID":483}],"EvolutionConditions":[],"Items":[{"Id":88,"Chance":5}]} \ No newline at end of file +Name|Masquerain +Number|284 +ExperienceType|1 +BaseExperience|145 +Type1|Bug +Type2|Flying +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Bug +BaseEggSteps|4080 +EggPokemon|283 +IsGenderLess|0 +CanBreed|1 +Devolution|283 +IsMale|50 +Ability1|22 +Ability2|Nothing +HiddenAbility|127 +EggMoves|453,450,203,565,193,56,170,341,471,60,324 +Machines|174,92,244,237,241,173,59,63,196,182,240,202,203,218,76,216,247,189,104,207,214,129,197,156,213,168,171,13,18,36,61,55,58,99,72,102,117,164,352,332,263,290,412,318,416,432,445,363,369,496,503,522,611,590,148 +BaseHP|70 +BaseAttack|60 +BaseDefense|62 +BaseSpAttack|80 +BaseSpDefense|82 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It flaps its four wings to hover and fly freely in any direction-- to and fro and sideways.\Eyeball Pokémon\3.6\0.8\0,148,0 +Scale|0.92 +Move|1,483 +Move|1,405 +Move|1,18 +Move|1,466 +Move|1,145 +Move|1,98 +Move|1,230 +Move|1,346 +Move|7,98 +Move|13,230 +Move|19,346 +Move|22,16 +Move|26,184 +Move|33,78 +Move|40,318 +Move|47,403 +Move|54,18 +Move|61,405 +Move|68,483 +TradeValue|45 +Item|5,88 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/285.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/285.dat index 6c50e7745..3b9e63cce 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/285.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/285.dat @@ -1 +1,52 @@ -{"Name":"Shroomish","Number":285,"ExperienceType":"MediumFast","BaseExperience":59,"Type1":"Grass","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":4080,"EggPokemon":285,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[27,90],"HiddenAbility":95,"EggMoves":[313,204,270,388,358,402,331,264,363,409],"Machines":[14,76,92,104,148,156,164,182,188,202,203,206,207,213,214,216,218,219,237,241,263,289,290,331,363,412,445,447,474,496],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":40,"Def":60,"SpAtk":40,"SpDef":60,"Speed":35},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it senses danger spores from the top of its head to protect itself.","Species":"Mushroom Pokémon","Height":0.4,"Weight":4.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":71},{"Level":5,"ID":33},{"Level":9,"ID":78},{"Level":13,"ID":73},{"Level":17,"ID":72},{"Level":21,"ID":29},{"Level":25,"ID":77},{"Level":29,"ID":1},{"Level":33,"ID":74},{"Level":37,"ID":202},{"Level":41,"ID":402},{"Level":45,"ID":147}],"EvolutionConditions":[{"Condition":"23","ConditionType":"Level","Evolution":286,"Trigger":"LevelUp"}],"Items":[{"Id":2041,"Chance":5}]} \ No newline at end of file +Name|Shroomish +Number|285 +ExperienceType|1 +BaseExperience|59 +Type1|Grass +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|4080 +EggPokemon|285 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|27 +Ability2|90 +HiddenAbility|95 +EggMoves|313,204,270,388,358,402,331,264,363,409 +Machines|14,76,92,104,148,156,164,182,188,202,203,206,207,213,214,216,218,219,237,241,263,289,290,331,363,412,445,447,474,496 +BaseHP|60 +BaseAttack|40 +BaseDefense|60 +BaseSpAttack|40 +BaseSpDefense|60 +BaseSpeed|35 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it senses danger spores from the top of its head to protect itself.\Mushroom Pokémon\4.5\0.4\0,148,0 +Scale|0.7 +Move|1,71 +Move|5,33 +Move|9,78 +Move|13,73 +Move|17,72 +Move|21,29 +Move|25,77 +Move|29,388 +Move|33,74 +Move|37,202 +Move|41,402 +Move|45,147 +TradeValue|35 +Item|5,2041 +EvolutionCondition|286,level,23,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/286.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/286.dat index 71faf94fc..0b76b9817 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/286.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/286.dat @@ -1 +1,55 @@ -{"Name":"Breloom","Number":286,"ExperienceType":"MediumFast","BaseExperience":161,"Type1":"Grass","Type2":"Fighting","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":4080,"EggPokemon":285,"Devolution":285,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[27,90],"HiddenAbility":101,"EggMoves":[331,204,409,313,264,270,363,402,358,388,206,207],"Machines":[223,29,174,92,249,237,241,230,173,63,182,203,218,231,216,189,104,207,214,9,197,156,213,210,5,25,36,38,6,66,68,69,99,72,102,117,130,164,264,339,331,263,290,289,411,412,206,374,409,416,444,445,363,447,490,496,526,612,590,15,70,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":130,"Def":80,"SpAtk":60,"SpDef":60,"Speed":70},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It scatters poisonous spores and throws powerful punches while its foe is hampered by inhaled spores.","Species":"Mushroom Pokémon","Height":1.2,"Weight":39.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":45,"Moves":[{"Level":1,"ID":71},{"Level":2,"ID":33},{"Level":3,"ID":78},{"Level":4,"ID":73},{"Level":5,"ID":33},{"Level":9,"ID":78},{"Level":13,"ID":73},{"Level":17,"ID":72},{"Level":21,"ID":29},{"Level":23,"ID":183},{"Level":25,"ID":68},{"Level":29,"ID":395},{"Level":33,"ID":327},{"Level":37,"ID":170},{"Level":41,"ID":402},{"Level":45,"ID":223}],"EvolutionConditions":[],"Items":[{"Id":2041,"Chance":5}]} \ No newline at end of file +Name|Breloom +Number|286 +ExperienceType|1 +BaseExperience|161 +Type1|Grass +Type2|Fighting +CatchRate|90 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|4080 +EggPokemon|285 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|27 +Ability2|90 +HiddenAbility|101 +EggMoves|331,204,409,313,264,270,363,402,358,388,206,207 +Machines|223,29,174,92,249,237,241,230,173,63,182,203,218,231,216,189,104,207,214,9,197,156,213,210,5,25,36,38,6,66,68,69,99,72,102,117,130,164,264,339,331,263,290,289,411,412,206,374,409,416,444,445,363,447,490,496,526,612,590,15,70,148 +BaseHP|60 +BaseAttack|130 +BaseDefense|80 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|70 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It scatters poisonous spores and throws powerful punches while its foe is hampered by inhaled spores.\Mushroom Pokémon\39.2\1.2\0,148,0 +Scale|1.08 +Move|1,71 +Move|1,33 +Move|1,78 +Move|1,73 +Move|5,33 +Move|9,78 +Move|13,73 +Move|17,72 +Move|21,29 +Move|23,183 +Move|25,68 +Move|29,395 +Move|33,327 +Move|37,170 +Move|41,402 +Move|45,223 +TradeValue|45 +Item|5,2041 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/287.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/287.dat index f35d3e7d3..a540513b6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/287.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/287.dat @@ -1 +1,49 @@ -{"Name":"Slakoth","Number":287,"ExperienceType":"Slow","BaseExperience":56,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":287,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[54],"HiddenAbility":-1,"EggMoves":[495,34,306,174,359,400,228,163,214,173,321],"Machines":[223,174,92,249,237,241,173,59,63,196,182,240,203,218,76,87,216,247,189,104,8,207,214,126,9,197,156,213,7,210,5,25,34,36,38,61,55,58,68,69,99,85,102,117,130,157,164,264,352,339,280,351,53,317,332,263,290,374,421,416,445,363,468,490,496,510,514,526,612,590,15,70],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":60,"Def":60,"SpAtk":35,"SpDef":35,"Speed":30},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The way SLAKOTH lolls around makes anyone who watches it feel like doing the same.","Species":"Slacker Pokémon","Height":0.8,"Weight":24,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":15,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":281},{"Level":7,"ID":227},{"Level":13,"ID":303},{"Level":19,"ID":185},{"Level":25,"ID":133},{"Level":31,"ID":343},{"Level":37,"ID":498},{"Level":43,"ID":68},{"Level":49,"ID":175}],"EvolutionConditions":[{"Condition":"18","ConditionType":"Level","Evolution":288,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Slakoth +Number|287 +ExperienceType|3 +BaseExperience|56 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|287 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|54 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|495,34,306,174,359,400,228,163,214,173,321 +Machines|223,174,92,249,237,241,173,59,63,196,182,240,203,218,76,87,216,247,189,104,8,207,214,126,9,197,156,213,7,210,5,25,34,36,38,61,55,58,68,69,99,85,102,117,130,157,164,264,352,339,280,351,53,317,332,263,290,374,421,416,445,363,468,490,496,510,514,526,612,590,15,70 +BaseHP|60 +BaseAttack|60 +BaseDefense|60 +BaseSpAttack|35 +BaseSpDefense|35 +BaseSpeed|30 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The way SLAKOTH lolls around makes anyone who watches it feel like doing the same.\Slacker Pokémon\24\0.8\0,148,0 +Scale|0.92 +Move|1,10 +Move|1,281 +Move|7,227 +Move|13,303 +Move|19,185 +Move|25,133 +Move|31,343 +Move|37,498 +Move|43,68 +Move|49,175 +TradeValue|15 +EvolutionCondition|288,level,18,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/288.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/288.dat index 229797e06..41b5d9a5e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/288.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/288.dat @@ -1 +1,53 @@ -{"Name":"Vigoroth","Number":288,"ExperienceType":"Slow","BaseExperience":154,"Type1":"Normal","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":287,"Devolution":287,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[72],"HiddenAbility":-1,"EggMoves":[495,34,306,174,359,400,228,163,214,173,321],"Machines":[223,174,46,92,249,237,241,173,59,63,196,182,240,203,218,76,87,216,247,189,104,8,207,214,126,9,197,156,213,7,210,5,25,34,36,38,61,55,58,66,68,69,99,85,90,102,117,130,157,164,264,337,352,339,280,351,53,317,332,263,290,374,421,416,445,363,468,490,496,510,514,523,526,612,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":80,"Def":80,"SpAtk":55,"SpDef":55,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its stress level rises if it cannot keep moving constantly. Too much stress makes it feel sick.","Species":"Wild Monkey Pokémon","Height":1.4,"Weight":46.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":30,"Moves":[{"Level":1,"ID":179},{"Level":2,"ID":10},{"Level":3,"ID":116},{"Level":4,"ID":227},{"Level":5,"ID":253},{"Level":7,"ID":227},{"Level":13,"ID":253},{"Level":19,"ID":154},{"Level":25,"ID":203},{"Level":31,"ID":163},{"Level":37,"ID":68},{"Level":43,"ID":498},{"Level":49,"ID":264},{"Level":55,"ID":179}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":289,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Vigoroth +Number|288 +ExperienceType|3 +BaseExperience|154 +Type1|Normal +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|287 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|72 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|495,34,306,174,359,400,228,163,214,173,321 +Machines|223,174,46,92,249,237,241,173,59,63,196,182,240,203,218,76,87,216,247,189,104,8,207,214,126,9,197,156,213,7,210,5,25,34,36,38,61,55,58,66,68,69,99,85,90,102,117,130,157,164,264,337,352,339,280,351,53,317,332,263,290,374,421,416,445,363,468,490,496,510,514,523,526,612,590,15,70,431,560 +BaseHP|80 +BaseAttack|80 +BaseDefense|80 +BaseSpAttack|55 +BaseSpDefense|55 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Its stress level rises if it cannot keep moving constantly. Too much stress makes it feel sick.\Wild Monkey Pokémon\46.5\1.4\0,148,0 +Scale|1.16 +Move|1,179 +Move|1,10 +Move|1,116 +Move|1,227 +Move|1,253 +Move|7,227 +Move|13,253 +Move|19,154 +Move|25,203 +Move|31,163 +Move|37,68 +Move|43,498 +Move|49,264 +Move|55,179 +TradeValue|30 +EvolutionCondition|289,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/289.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/289.dat index b24e41d2f..86cf515c0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/289.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/289.dat @@ -1 +1,51 @@ -{"Name":"Slaking","Number":289,"ExperienceType":"Slow","BaseExperience":252,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":287,"Devolution":288,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[54],"HiddenAbility":-1,"EggMoves":[],"Machines":[15,46,53,58,59,63,70,76,85,87,89,92,104,126,156,157,164,182,203,207,213,214,216,218,237,240,241,247,249,263,264,269,280,290,317,332,339,351,352,363,374,411,416,421,431,445,468,479,490,496,510,511,514,523,526,560],"TutorMoves":[],"BaseStats":{"HP":150,"Atk":160,"Def":100,"SpAtk":95,"SpDef":65,"Speed":100},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The world's laziest Pokémon. It moves to another spot when there's no food left within its reach.","Species":"Lazy Pokémon","Height":2,"Weight":130.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":55,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":227},{"Level":3,"ID":281},{"Level":4,"ID":303},{"Level":7,"ID":227},{"Level":13,"ID":303},{"Level":19,"ID":185},{"Level":25,"ID":133},{"Level":31,"ID":343},{"Level":36,"ID":207},{"Level":37,"ID":498},{"Level":43,"ID":68},{"Level":49,"ID":175},{"Level":55,"ID":374},{"Level":61,"ID":386},{"Level":67,"ID":359}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Slaking +Number|289 +ExperienceType|3 +BaseExperience|252 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +IsGenderLess|0 +IsMale|50 +EggPokemon|287 +Ability1|54 +Ability2|Nothing +HiddenAbility|Nothing +Machines|15,46,53,58,59,63,70,76,85,87,89,92,104,126,156,157,164,182,203,207,213,214,216,218,237,240,241,247,249,263,264,269,280,290,317,332,339,351,352,363,374,411,416,421,431,445,468,479,490,496,510,511,514,523,526,560 +BaseHP|150 +BaseAttack|160 +BaseDefense|100 +BaseSpAttack|95 +BaseSpDefense|65 +BaseSpeed|100 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The world's laziest Pokémon. It moves to another spot when there's no food left within its reach.\Lazy Pokémon\130.5\2\0,148,0 +Scale|1.4 +Move|1,10 +Move|43,68 +Move|25,133 +Move|49,175 +Move|19,185 +Move|36,207 +Move|1,227 +Move|7,227 +Move|1,281 +Move|1,303 +Move|13,303 +Move|31,343 +Move|67,359 +Move|55,374 +Move|61,386 +Move|37,498 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/29.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/29.dat index e550779a0..b8b572d58 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/29.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/29.dat @@ -1 +1,50 @@ -{"Name":"Nidoran","Number":29,"ExperienceType":"MediumSlow","BaseExperience":55,"Type1":"Poison","Type2":"Blank","CatchRate":235,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":29,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[38,79],"HiddenAbility":55,"EggMoves":[251,130,599,204,68,50,116,228,48,36,498,203,231,342],"Machines":[29,174,92,249,237,241,173,59,63,182,240,203,218,231,87,216,91,189,104,207,214,188,111,197,156,213,168,32,34,36,58,68,99,85,102,117,130,164,352,351,332,263,290,421,416,445,363,398,468,474,496,497,590,15,70],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":47,"Def":52,"SpAtk":40,"SpDef":40,"Speed":41},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The poison hidden in its small horn is extremely potent. Even a tiny scratch can have fatal results.","Species":"Poison Pin Pokémon","Height":0.4,"Weight":7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":45},{"Level":7,"ID":39},{"Level":9,"ID":24},{"Level":13,"ID":40},{"Level":19,"ID":154},{"Level":21,"ID":44},{"Level":25,"ID":1},{"Level":31,"ID":390},{"Level":33,"ID":260},{"Level":37,"ID":242},{"Level":43,"ID":445},{"Level":45,"ID":305}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":30,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Nidoran +Number|29 +ExperienceType|2 +BaseExperience|55 +Type1|Poison +Type2| +CatchRate|235 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|29 +IsGenderLess|0 +IsMale|0 +Ability1|38 +Ability2|79 +HiddenAbility|55 +EggMoves|251,130,599,204,68,50,116,228,48,36,498,203,231,342 +Machines|29,174,92,249,237,241,173,59,63,182,240,203,218,231,87,216,91,189,104,207,214,188,111,197,156,213,168,32,34,36,58,68,99,85,102,117,130,164,352,351,332,263,290,421,416,445,363,398,468,474,496,497,590,15,70 +BaseHP|55 +BaseAttack|47 +BaseDefense|52 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|41 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The poison hidden in its small horn is extremely potent. Even a tiny scratch can have fatal results.\Poison Pin Pokémon\7\0.4\0,148,0 +Scale|0.7 +Move|1,10 +Move|1,45 +Move|7,39 +Move|9,24 +Move|13,40 +Move|19,154 +Move|21,44 +Move|25,270 +Move|31,390 +Move|33,260 +Move|37,242 +Move|43,445 +Move|45,305 +EvolutionCondition|30,Level,16,Level +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/290.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/290.dat index 6a344666d..105d41585 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/290.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/290.dat @@ -1 +1,49 @@ -{"Name":"Nincada","Number":290,"ExperienceType":"MediumFast","BaseExperience":53,"Type1":"Bug","Type2":"Ground","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":290,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[14],"HiddenAbility":50,"EggMoves":[450,405,203,515,185,16,400,318],"Machines":[15,76,91,92,104,148,156,164,182,201,206,207,216,218,237,241,247,263,332,404,468,496,522],"TutorMoves":[],"BaseStats":{"HP":31,"Atk":45,"Def":90,"SpAtk":30,"SpDef":30,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can sometimes live underground for more than 10 years. It absorbs nutrients from the roots of trees.","Species":"Trainee Pokémon","Height":0.5,"Weight":5.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":106},{"Level":5,"ID":141},{"Level":9,"ID":28},{"Level":14,"ID":154},{"Level":19,"ID":170},{"Level":25,"ID":206},{"Level":31,"ID":189},{"Level":38,"ID":232},{"Level":45,"ID":91}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":291,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Nincada +Number|290 +ExperienceType|1 +BaseExperience|53 +Type1|Bug +Type2|Ground +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|290 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|14 +Ability2|Nothing +HiddenAbility|50 +EggMoves|450,405,203,515,185,16,400,318 +Machines|15,76,91,92,104,148,156,164,182,201,206,207,216,218,237,241,247,263,332,404,468,496,522 +BaseHP|31 +BaseAttack|45 +BaseDefense|90 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can sometimes live underground for more than 10 years. It absorbs nutrients from the roots of trees.\Trainee Pokémon\5.5\0.5\0,148,0 +Scale|0.7 +Move|1,10 +Move|1,106 +Move|5,141 +Move|9,28 +Move|14,154 +Move|19,170 +Move|25,206 +Move|31,189 +Move|38,232 +Move|45,91 +TradeValue|25 +EvolutionCondition|291,level,20,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/291.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/291.dat index 1c652c6a3..ee603f00b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/291.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/291.dat @@ -1 +1,55 @@ -{"Name":"Ninjask","Number":291,"ExperienceType":"MediumFast","BaseExperience":160,"Type1":"Bug","Type2":"Flying","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":290,"Devolution":290,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[3],"HiddenAbility":151,"EggMoves":[450,405,203,515,185,16,400,318],"Machines":[174,92,237,241,173,63,182,202,203,218,76,216,91,247,189,104,207,214,201,129,197,156,213,168,210,13,14,18,36,99,72,102,117,130,164,332,263,290,355,206,318,416,432,445,404,363,369,468,496,522,590,15,148],"TutorMoves":[],"BaseStats":{"HP":61,"Atk":90,"Def":45,"SpAtk":50,"SpDef":50,"Speed":160},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its cry leaves a lasting headache if heard for too long. It moves so quickly that it is almost invisible.","Species":"Ninja Pokémon","Height":0.8,"Weight":12,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":45,"Moves":[{"Level":1,"ID":450},{"Level":2,"ID":10},{"Level":3,"ID":106},{"Level":4,"ID":141},{"Level":5,"ID":28},{"Level":6,"ID":141},{"Level":9,"ID":28},{"Level":14,"ID":154},{"Level":19,"ID":170},{"Level":20,"ID":104},{"Level":21,"ID":210},{"Level":22,"ID":103},{"Level":25,"ID":14},{"Level":31,"ID":163},{"Level":38,"ID":97},{"Level":45,"ID":226},{"Level":52,"ID":404}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Ninjask +Number|291 +ExperienceType|1 +BaseExperience|160 +Type1|Bug +Type2|Flying +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|290 +IsGenderLess|0 +CanBreed|1 +Devolution|290 +IsMale|50 +Ability1|3 +Ability2|Nothing +HiddenAbility|151 +EggMoves|450,405,203,515,185,16,400,318 +Machines|174,92,237,241,173,63,182,202,203,218,76,216,91,247,189,104,207,214,201,129,197,156,213,168,210,13,14,18,36,99,72,102,117,130,164,332,263,290,355,206,318,416,432,445,404,363,369,468,496,522,590,15,148 +BaseHP|61 +BaseAttack|90 +BaseDefense|45 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|160 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Its cry leaves a lasting headache if heard for too long. It moves so quickly that it is almost invisible.\Ninja Pokémon\12\0.8\0,148,0 +Scale|0.92 +Move|1,450 +Move|1,10 +Move|1,106 +Move|1,141 +Move|1,28 +Move|5,141 +Move|9,28 +Move|14,154 +Move|19,170 +Move|20,104 +Move|20,210 +Move|20,103 +Move|25,14 +Move|31,163 +Move|38,97 +Move|45,226 +Move|52,404 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/292.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/292.dat index d438c2b3d..bd3afd84f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/292.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/292.dat @@ -1 +1,50 @@ -{"Name":"Shedinja","Number":292,"ExperienceType":"MediumFast","BaseExperience":83,"Type1":"Bug","Type2":"Ghost","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":290,"Devolution":290,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[25],"HiddenAbility":-1,"EggMoves":[450,405,203,515,185,16,400,318],"Machines":[174,92,237,241,173,63,182,202,203,218,76,216,91,247,189,104,207,214,201,138,197,156,213,168,210,171,36,99,72,102,117,130,164,332,263,290,206,261,421,416,445,404,363,468,477,496,522,590,15,148],"TutorMoves":[],"BaseStats":{"HP":1,"Atk":90,"Def":45,"SpAtk":30,"SpDef":30,"Speed":40},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A strange Pokémon--it flies without moving its wings, has a hollow shell for a body, and does not breathe.","Species":"Shed Pokémon","Height":0.8,"Weight":1.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":10,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":106},{"Level":5,"ID":141},{"Level":9,"ID":28},{"Level":14,"ID":154},{"Level":19,"ID":170},{"Level":25,"ID":180},{"Level":31,"ID":109},{"Level":38,"ID":425},{"Level":43,"ID":1},{"Level":47,"ID":1},{"Level":50,"ID":377},{"Level":59,"ID":247}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Shedinja +Number|292 +ExperienceType|1 +BaseExperience|83 +Type1|Bug +Type2|Ghost +CatchRate|45 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|290 +IsGenderLess|1 +CanBreed|1 +Devolution|290 +IsMale|0.0 +Ability1|25 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|450,405,203,515,185,16,400,318 +Machines|174,92,237,241,173,63,182,202,203,218,76,216,91,247,189,104,207,214,201,138,197,156,213,168,210,171,36,99,72,102,117,130,164,332,263,290,206,261,421,416,445,404,363,468,477,496,522,590,15,148 +BaseHP|1 +BaseAttack|90 +BaseDefense|45 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|40 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A strange Pokémon--it flies without moving its wings, has a hollow shell for a body, and does not breathe.\Shed Pokémon\1.2\0.8\0,148,0 +Scale|0.92 +Move|1,10 +Move|1,106 +Move|5,141 +Move|9,28 +Move|14,154 +Move|19,170 +Move|25,180 +Move|31,109 +Move|38,425 +Move|43,288 +Move|47,566 +Move|50,377 +Move|59,247 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/293.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/293.dat index 642eb8a76..847056fc1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/293.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/293.dat @@ -1 +1,52 @@ -{"Name":"Whismur","Number":293,"ExperienceType":"MediumSlow","BaseExperience":48,"Type1":"Normal","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":293,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[43],"HiddenAbility":155,"EggMoves":[509,574,283,326,313,359,265,173,36,207],"Machines":[223,174,205,46,92,237,241,173,59,63,196,182,240,203,218,76,216,247,189,104,8,207,214,126,111,9,197,156,213,7,34,36,61,55,58,68,69,99,102,117,118,130,164,352,351,53,263,290,374,416,445,363,496,497,526,612,590],"TutorMoves":[],"BaseStats":{"HP":64,"Atk":51,"Def":23,"SpAtk":51,"SpDef":23,"Speed":28},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it senses danger the foe by crying out with the volume of a jet-plane engine.","Species":"Whisper Pokémon","Height":0.6,"Weight":16.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":5,"ID":253},{"Level":11,"ID":310},{"Level":15,"ID":336},{"Level":21,"ID":48},{"Level":25,"ID":23},{"Level":31,"ID":103},{"Level":35,"ID":46},{"Level":41,"ID":1},{"Level":45,"ID":156},{"Level":46,"ID":214},{"Level":50,"ID":304}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":294,"Trigger":"LevelUp"}],"Items":[{"Id":2001,"Chance":5}]} \ No newline at end of file +Name|Whismur +Number|293 +ExperienceType|2 +BaseExperience|48 +Type1|Normal +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|293 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|43 +Ability2|Nothing +HiddenAbility|155 +EggMoves|509,574,283,326,313,359,265,173,36,207 +Machines|223,174,205,46,92,237,241,173,59,63,196,182,240,203,218,76,216,247,189,104,8,207,214,126,111,9,197,156,213,7,34,36,61,55,58,68,69,99,102,117,118,130,164,352,351,53,263,290,374,416,445,363,496,497,526,612,590 +BaseHP|64 +BaseAttack|51 +BaseDefense|23 +BaseSpAttack|51 +BaseSpDefense|23 +BaseSpeed|28 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it senses danger the foe by crying out with the volume of a jet-plane engine.\Whisper Pokémon\16.3\0.6\0,148,0 +Scale|0.84 +Move|1,1 +Move|5,253 +Move|11,310 +Move|15,336 +Move|21,48 +Move|25,23 +Move|31,103 +Move|35,46 +Move|41,485 +Move|45,156 +Move|45,214 +Move|50,304 +TradeValue|25 +Item|5,2001 +EvolutionCondition|294,level,20,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/294.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/294.dat index 13ea82740..aed492660 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/294.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/294.dat @@ -1 +1,56 @@ -{"Name":"Loudred","Number":294,"ExperienceType":"MediumSlow","BaseExperience":126,"Type1":"Normal","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":293,"Devolution":293,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[43],"HiddenAbility":113,"EggMoves":[509,574,283,326,313,359,265,173,36,207],"Machines":[223,174,205,46,92,249,237,241,173,59,63,196,182,203,218,76,89,216,247,189,104,8,207,214,126,111,9,197,156,213,7,5,25,34,36,38,61,55,58,66,68,69,99,102,117,118,130,157,164,352,269,280,351,53,317,259,263,290,315,374,416,445,363,479,496,497,523,526,612,590,70],"TutorMoves":[],"BaseStats":{"HP":84,"Atk":71,"Def":43,"SpAtk":71,"SpDef":43,"Speed":48},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It shouts loudly by inhaling air then uses its well-developed stomach muscles to exhale.","Species":"Big Voice Pokémon","Height":1,"Weight":40.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":40,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":253},{"Level":3,"ID":310},{"Level":4,"ID":336},{"Level":5,"ID":253},{"Level":11,"ID":310},{"Level":15,"ID":336},{"Level":20,"ID":44},{"Level":23,"ID":48},{"Level":29,"ID":23},{"Level":37,"ID":103},{"Level":43,"ID":46},{"Level":51,"ID":1},{"Level":57,"ID":156},{"Level":58,"ID":214},{"Level":65,"ID":304}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":295,"Trigger":"LevelUp"}],"Items":[{"Id":2001,"Chance":5}]} \ No newline at end of file +Name|Loudred +Number|294 +ExperienceType|2 +BaseExperience|126 +Type1|Normal +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|293 +IsGenderLess|0 +CanBreed|1 +Devolution|293 +IsMale|50 +Ability1|43 +Ability2|Nothing +HiddenAbility|113 +EggMoves|509,574,283,326,313,359,265,173,36,207 +Machines|223,174,205,46,92,249,237,241,173,59,63,196,182,203,218,76,89,216,247,189,104,8,207,214,126,111,9,197,156,213,7,5,25,34,36,38,61,55,58,66,68,69,99,102,117,118,130,157,164,352,269,280,351,53,317,259,263,290,315,374,416,445,363,479,496,497,523,526,612,590,70 +BaseHP|84 +BaseAttack|71 +BaseDefense|43 +BaseSpAttack|71 +BaseSpDefense|43 +BaseSpeed|48 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It shouts loudly by inhaling air then uses its well-developed stomach muscles to exhale.\Big Voice Pokémon\40.5\1\0,148,0 +Scale|1 +Move|1,1 +Move|1,253 +Move|1,310 +Move|1,336 +Move|5,253 +Move|11,310 +Move|15,336 +Move|20,44 +Move|23,48 +Move|29,23 +Move|37,103 +Move|43,46 +Move|51,485 +Move|57,156 +Move|57,214 +Move|65,304 +TradeValue|40 +Item|5,2001 +EvolutionCondition|295,level,40,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/295.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/295.dat index 47d1951e2..139762938 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/295.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/295.dat @@ -1 +1,61 @@ -{"Name":"Exploud","Number":295,"ExperienceType":"MediumSlow","BaseExperience":216,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":293,"Devolution":294,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[43],"HiddenAbility":113,"EggMoves":[509,574,283,326,313,359,265,173,36,207],"Machines":[223,174,205,46,92,249,237,241,173,59,63,196,182,203,218,76,89,216,247,189,104,8,207,214,126,111,9,197,156,213,7,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,118,130,157,164,352,269,280,351,53,317,259,263,290,315,411,374,416,419,445,363,479,496,497,510,514,523,526,612,590,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":104,"Atk":91,"Def":63,"SpAtk":91,"SpDef":73,"Speed":68},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its roar in battle shakes the ground like a tremor--or like an earthquake has struck.","Species":"Loud Noise Pokémon","Height":1.5,"Weight":84,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":60,"Moves":[{"Level":1,"ID":586},{"Level":2,"ID":423},{"Level":3,"ID":424},{"Level":4,"ID":422},{"Level":5,"ID":1},{"Level":6,"ID":253},{"Level":7,"ID":310},{"Level":8,"ID":336},{"Level":9,"ID":253},{"Level":11,"ID":310},{"Level":15,"ID":336},{"Level":20,"ID":44},{"Level":23,"ID":48},{"Level":29,"ID":23},{"Level":37,"ID":103},{"Level":40,"ID":242},{"Level":45,"ID":46},{"Level":55,"ID":1},{"Level":56,"ID":156},{"Level":63,"ID":214},{"Level":71,"ID":304},{"Level":79,"ID":63},{"Level":85,"ID":586}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Exploud +Number|295 +ExperienceType|2 +BaseExperience|216 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|293 +IsGenderLess|0 +CanBreed|1 +Devolution|294 +IsMale|50 +Ability1|43 +Ability2|Nothing +HiddenAbility|113 +EggMoves|509,574,283,326,313,359,265,173,36,207 +Machines|223,174,205,46,92,249,237,241,173,59,63,196,182,203,218,76,89,216,247,189,104,8,207,214,126,111,9,197,156,213,7,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,118,130,157,164,352,269,280,351,53,317,259,263,290,315,411,374,416,419,445,363,479,496,497,510,514,523,526,612,590,57,70,250,431,560 +BaseHP|104 +BaseAttack|91 +BaseDefense|63 +BaseSpAttack|91 +BaseSpDefense|73 +BaseSpeed|68 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its roar in battle shakes the ground like a tremor--or like an earthquake has struck.\Loud Noise Pokémon\84\1.5\0,148,0 +Scale|1.2 +Move|1,586 +Move|1,423 +Move|1,424 +Move|1,422 +Move|1,1 +Move|1,253 +Move|1,310 +Move|1,336 +Move|5,253 +Move|11,310 +Move|15,336 +Move|20,44 +Move|23,48 +Move|29,23 +Move|37,103 +Move|40,242 +Move|45,46 +Move|55,485 +Move|55,156 +Move|63,214 +Move|71,304 +Move|79,63 +Move|85,586 +TradeValue|60 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/296.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/296.dat index acd1d144f..0c94ca687 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/296.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/296.dat @@ -1 +1,56 @@ -{"Name":"Makuhita","Number":296,"ExperienceType":"MediumFast","BaseExperience":47,"Type1":"Fighting","Type2":"Blank","CatchRate":180,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":296,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[47,62],"HiddenAbility":125,"EggMoves":[418,498,68,238,197,223,364,185,264,193,270,279,358,469],"Machines":[223,174,92,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,118,130,157,164,264,339,280,317,263,290,411,374,416,445,363,398,479,490,496,514,523,526,612,590,15,57,70,250,431],"TutorMoves":[],"BaseStats":{"HP":72,"Atk":60,"Def":30,"SpAtk":20,"SpDef":30,"Speed":25},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It toughens up by slamming into thick trees over and over. It gains a sturdy body and dauntless spirit.","Species":"Guts Pokémon","Height":1,"Weight":86.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":25,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":116},{"Level":4,"ID":28},{"Level":7,"ID":292},{"Level":10,"ID":233},{"Level":13,"ID":252},{"Level":16,"ID":18},{"Level":19,"ID":282},{"Level":22,"ID":265},{"Level":25,"ID":187},{"Level":28,"ID":395},{"Level":31,"ID":69},{"Level":34,"ID":358},{"Level":37,"ID":203},{"Level":40,"ID":370},{"Level":43,"ID":179},{"Level":46,"ID":484}],"EvolutionConditions":[{"Condition":"24","ConditionType":"Level","Evolution":297,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Makuhita +Number|296 +ExperienceType|1 +BaseExperience|47 +Type1|Fighting +Type2| +CatchRate|180 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|296 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|75 +Ability1|47 +Ability2|62 +HiddenAbility|125 +EggMoves|418,498,68,238,197,223,364,185,264,193,270,279,358,469 +Machines|223,174,92,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,118,130,157,164,264,339,280,317,263,290,411,374,416,445,363,398,479,490,496,514,523,526,612,590,15,57,70,250,431 +BaseHP|72 +BaseAttack|60 +BaseDefense|30 +BaseSpAttack|20 +BaseSpDefense|30 +BaseSpeed|25 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It toughens up by slamming into thick trees over and over. It gains a sturdy body and dauntless spirit.\Guts Pokémon\86.4\1\0,148,0 +Scale|1 +Move|1,33 +Move|1,116 +Move|4,28 +Move|7,292 +Move|10,233 +Move|13,252 +Move|16,18 +Move|19,282 +Move|22,265 +Move|25,187 +Move|28,395 +Move|31,69 +Move|34,358 +Move|37,203 +Move|40,370 +Move|43,179 +Move|46,484 +TradeValue|25 +EvolutionCondition|297,Level,24,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/297.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/297.dat index 134b38daa..4e86071be 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/297.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/297.dat @@ -1 +1,59 @@ -{"Name":"Hariyama","Number":297,"ExperienceType":"MediumFast","BaseExperience":166,"Type1":"Fighting","Type2":"Blank","CatchRate":200,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":296,"Devolution":296,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[47,62],"HiddenAbility":125,"EggMoves":[418,498,68,238,197,223,364,185,264,193,270,279,358,469],"Machines":[223,174,92,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,118,130,157,164,264,339,280,317,263,290,411,362,374,371,416,444,445,363,398,479,490,496,514,523,526,612,590,15,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":144,"Atk":120,"Def":60,"SpAtk":40,"SpDef":60,"Speed":50},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It loves challenging others to tests of strength. It has the power to stop a train with a slap.","Species":"Arm Thrust Pokémon","Height":2.3,"Weight":253.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.52,"Y":1.52,"Z":1.52},"TradeValue":45,"Moves":[{"Level":1,"ID":362},{"Level":2,"ID":33},{"Level":3,"ID":116},{"Level":4,"ID":28},{"Level":5,"ID":292},{"Level":6,"ID":28},{"Level":7,"ID":292},{"Level":10,"ID":233},{"Level":13,"ID":252},{"Level":16,"ID":18},{"Level":19,"ID":282},{"Level":22,"ID":265},{"Level":27,"ID":187},{"Level":32,"ID":395},{"Level":37,"ID":69},{"Level":42,"ID":358},{"Level":47,"ID":203},{"Level":52,"ID":370},{"Level":57,"ID":179},{"Level":62,"ID":484}],"EvolutionConditions":[],"Items":[{"Id":82,"Chance":5}]} \ No newline at end of file +Name|Hariyama +Number|297 +ExperienceType|1 +BaseExperience|166 +Type1|Fighting +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|296 +IsGenderLess|0 +CanBreed|1 +Devolution|296 +IsMale|75 +Ability1|47 +Ability2|62 +HiddenAbility|125 +EggMoves|418,498,68,238,197,223,364,185,264,193,270,279,358,469 +Machines|223,174,92,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,118,130,157,164,264,339,280,317,263,290,411,362,374,371,416,444,445,363,398,479,490,496,514,523,526,612,590,15,57,70,250,431,560 +BaseHP|144 +BaseAttack|120 +BaseDefense|60 +BaseSpAttack|40 +BaseSpDefense|60 +BaseSpeed|50 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It loves challenging others to tests of strength. It has the power to stop a train with a slap.\Arm Thrust Pokémon\253.8\2.3\0,148,0 +Scale|1.52 +Move|1,362 +Move|1,33 +Move|1,116 +Move|1,28 +Move|1,292 +Move|4,28 +Move|7,292 +Move|10,233 +Move|13,252 +Move|16,18 +Move|19,282 +Move|22,265 +Move|27,187 +Move|32,395 +Move|37,69 +Move|42,358 +Move|47,203 +Move|52,370 +Move|57,179 +Move|62,484 +TradeValue|45 +Item|5,82 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/298.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/298.dat index 949acce5b..5c40ddc39 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/298.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/298.dat @@ -1 +1,49 @@ -{"Name":"Azurill","Number":298,"ExperienceType":"Fast","BaseExperience":38,"Type1":"Normal","Type2":"Fairy","CatchRate":150,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":298,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[47,37],"HiddenAbility":157,"EggMoves":[133,453,187,34,293,383,227,313,248,330,195,217,287,47,21,487,276,48,321,346,113,164,193],"Machines":[174,205,92,237,173,59,63,196,182,240,203,218,231,216,189,104,207,214,129,111,197,156,213,34,36,61,55,58,99,102,117,164,352,258,113,263,290,416,445,363,496,503,526,590,57,250,127],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":20,"Def":40,"SpAtk":20,"SpDef":40,"Speed":20},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its tail is packed full of the nutrients it needs to grow.","Species":"Polka Dot Pokémon","Height":0.2,"Weight":2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":150},{"Level":2,"ID":55},{"Level":3,"ID":39},{"Level":5,"ID":346},{"Level":7,"ID":145},{"Level":10,"ID":204},{"Level":13,"ID":61},{"Level":16,"ID":1},{"Level":20,"ID":21},{"Level":23,"ID":340}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":183,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Azurill +Number|298 +ExperienceType|0 +BaseExperience|38 +Type1|Normal +Type2|Fairy +CatchRate|150 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|298 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|47 +Ability2|37 +HiddenAbility|157 +EggMoves|133,453,187,34,293,383,227,313,248,330,195,217,287,47,21,487,276,48,321,346,113,164,193 +Machines|174,205,92,237,173,59,63,196,182,240,203,218,231,216,189,104,207,214,129,111,197,156,213,34,36,61,55,58,99,102,117,164,352,258,113,263,290,416,445,363,496,503,526,590,57,250,127 +BaseHP|50 +BaseAttack|20 +BaseDefense|40 +BaseSpAttack|20 +BaseSpDefense|40 +BaseSpeed|20 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its tail is packed full of the nutrients it needs to grow.\Polka Dot Pokémon\2\0.2\0,148,0 +Scale|0.7 +Move|1,150 +Move|1,55 +Move|2,39 +Move|5,346 +Move|7,145 +Move|10,204 +Move|13,61 +Move|16,270 +Move|20,21 +Move|23,340 +TradeValue|20 +EvolutionCondition|183,friendship,220,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/299.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/299.dat index fcd315575..5242d7cef 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/299.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/299.dat @@ -1 +1,56 @@ -{"Name":"Nosepass","Number":299,"ExperienceType":"MediumFast","BaseExperience":75,"Type1":"Rock","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":299,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5,42],"HiddenAbility":159,"EggMoves":[335,38,203,222,205,446,469,153,457],"Machines":[223,174,205,92,192,249,237,241,173,63,182,203,218,87,89,216,189,104,8,207,214,201,111,9,197,156,213,7,34,36,38,99,85,90,102,117,120,130,86,153,157,164,269,351,317,259,263,290,416,397,444,446,445,363,479,496,521,523,605,590,70],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":45,"Def":135,"SpAtk":45,"SpDef":90,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If two of these meet get too close because their noses repel each other.","Species":"Compass Pokémon","Height":1,"Weight":97,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":4,"ID":106},{"Level":8,"ID":335},{"Level":11,"ID":88},{"Level":15,"ID":86},{"Level":18,"ID":350},{"Level":22,"ID":156},{"Level":25,"ID":209},{"Level":29,"ID":157},{"Level":32,"ID":408},{"Level":36,"ID":201},{"Level":39,"ID":435},{"Level":43,"ID":414},{"Level":46,"ID":444},{"Level":50,"ID":199},{"Level":51,"ID":192}],"EvolutionConditions":[{"Condition":"Mt. Mortar","ConditionType":"Place","Evolution":476,"Trigger":"LevelUp"}],"Items":[{"Id":125,"Chance":5}]} \ No newline at end of file +Name|Nosepass +Number|299 +ExperienceType|1 +BaseExperience|75 +Type1|Rock +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|299 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|5 +Ability2|42 +HiddenAbility|159 +EggMoves|335,38,203,222,205,446,469,153,457 +Machines|223,174,205,92,192,249,237,241,173,63,182,203,218,87,89,216,189,104,8,207,214,201,111,9,197,156,213,7,34,36,38,99,85,90,102,117,120,130,86,153,157,164,269,351,317,259,263,290,416,397,444,446,445,363,479,496,521,523,605,590,70 +BaseHP|30 +BaseAttack|45 +BaseDefense|135 +BaseSpAttack|45 +BaseSpDefense|90 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If two of these meet get too close because their noses repel each other.\Compass Pokémon\97\1\0,148,0 +Scale|1 +Move|1,33 +Move|4,106 +Move|8,335 +Move|11,88 +Move|15,86 +Move|18,350 +Move|22,156 +Move|25,209 +Move|29,157 +Move|32,408 +Move|36,201 +Move|39,435 +Move|43,414 +Move|46,444 +Move|50,199 +Move|50,192 +TradeValue|50 +Item|5,125 +EvolutionCondition|476,location,Mt. Mortar,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/3.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/3.dat index 3de70e368..63e938798 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/3.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/3.dat @@ -1 +1,56 @@ -{"Name":"Venusaur","Number":3,"ExperienceType":"MediumSlow","BaseExperience":236,"Type1":"Grass","Type2":"Poison","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":1,"Devolution":2,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":34,"EggMoves":[133,204,174,203,202,320,275,437,345,267,80,438,130,124,580],"Machines":[29,174,46,92,249,237,241,230,173,63,182,202,203,218,76,89,216,189,104,207,214,188,111,197,156,213,210,14,34,36,38,99,72,90,102,117,164,331,113,219,263,290,412,416,445,363,447,474,496,497,523,267,590,15,70,148,431,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":82,"Def":83,"SpAtk":100,"SpDef":100,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"By spreading the broad petals of its flower and catching the sun's rays, it fills its body with power.","Species":"Seed Pokémon","Height":2,"Weight":100,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":70,"Moves":[{"Level":1,"ID":22},{"Level":2,"ID":33},{"Level":3,"ID":45},{"Level":4,"ID":73},{"Level":5,"ID":45},{"Level":7,"ID":73},{"Level":9,"ID":22},{"Level":13,"ID":77},{"Level":14,"ID":79},{"Level":15,"ID":36},{"Level":20,"ID":75},{"Level":23,"ID":230},{"Level":28,"ID":74},{"Level":31,"ID":38},{"Level":32,"ID":80},{"Level":39,"ID":1},{"Level":45,"ID":235},{"Level":50,"ID":572},{"Level":53,"ID":76}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Venusaur +Number|3 +ExperienceType|2 +BaseExperience|236 +Type1|Grass +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|1 +IsGenderLess|0 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|34 +EggMoves|133,204,174,203,202,320,275,437,345,267,80,438,130,124,580 +Machines|29,174,46,92,249,237,241,230,173,63,182,202,203,218,76,89,216,189,104,207,214,188,111,197,156,213,210,14,34,36,38,99,72,90,102,117,164,331,113,219,263,290,412,416,445,363,447,474,496,497,523,267,590,15,70,148,431,560 +TutorMoves|338 +BaseHP|80 +BaseAttack|82 +BaseDefense|83 +BaseSpAttack|100 +BaseSpDefense|100 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|By spreading the broad petals of its flower and catching the sun's rays, it fills its body with power.\Seed Pokémon\100\2\0,148,0 +Scale|1.4 +Move|1,22 +Move|1,33 +Move|1,45 +Move|1,73 +Move|3,45 +Move|7,73 +Move|9,22 +Move|13,77 +Move|13,79 +Move|15,36 +Move|20,75 +Move|23,230 +Move|28,74 +Move|31,38 +Move|32,80 +Move|39,388 +Move|45,235 +Move|50,572 +Move|53,76 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/30.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/30.dat index 156e8e9c8..8bc0d4a30 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/30.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/30.dat @@ -1 +1,50 @@ -{"Name":"Nidorina","Number":30,"ExperienceType":"MediumSlow","BaseExperience":128,"Type1":"Poison","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":29,"Devolution":29,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[38,79],"HiddenAbility":55,"EggMoves":[251,130,599,204,68,50,116,228,48,36,498,203,231,342],"Machines":[29,174,46,92,249,237,241,173,59,63,182,240,203,218,231,87,216,91,189,104,207,214,188,111,197,156,213,168,32,34,36,61,55,58,68,99,85,102,117,130,164,352,351,332,263,290,421,416,445,363,398,468,474,496,497,590,15,70,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":62,"Def":67,"SpAtk":55,"SpDef":55,"Speed":56},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When feeding its young, it first chews the food into a paste, then spits it out for the offspring.","Species":"Poison Pin Pokémon","Height":0.8,"Weight":20,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":25,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":45},{"Level":7,"ID":39},{"Level":9,"ID":24},{"Level":13,"ID":40},{"Level":20,"ID":154},{"Level":23,"ID":44},{"Level":28,"ID":1},{"Level":35,"ID":390},{"Level":38,"ID":260},{"Level":43,"ID":242},{"Level":50,"ID":445},{"Level":58,"ID":305}],"EvolutionConditions":[{"Condition":"8","ConditionType":"Item","Evolution":31,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Nidorina +Number|30 +ExperienceType|2 +BaseExperience|128 +Type1|Poison +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|29 +IsGenderLess|0 +IsMale|0 +Ability1|38 +Ability2|79 +HiddenAbility|55 +EggMoves|251,130,599,204,68,50,116,228,48,36,498,203,231,342 +Machines|29,174,46,92,249,237,241,173,59,63,182,240,203,218,231,87,216,91,189,104,207,214,188,111,197,156,213,168,32,34,36,61,55,58,68,99,85,102,117,130,164,352,351,332,263,290,421,416,445,363,398,468,474,496,497,590,15,70,560 +BaseHP|70 +BaseAttack|62 +BaseDefense|67 +BaseSpAttack|55 +BaseSpDefense|55 +BaseSpeed|56 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When feeding its young, it first chews the food into a paste, then spits it out for the offspring.\Poison Pin Pokémon\20\0.8\0,148,0 +Scale|0.92 +Move|1,10 +Move|1,45 +Move|7,39 +Move|9,24 +Move|13,40 +Move|20,154 +Move|23,44 +Move|28,270 +Move|35,390 +Move|38,260 +Move|43,242 +Move|50,445 +Move|58,305 +EvolutionCondition|31,item,8,item +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/300.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/300.dat index ce665dd4d..ae84df4ce 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/300.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/300.dat @@ -1 +1,59 @@ -{"Name":"Skitty","Number":300,"ExperienceType":"Fast","BaseExperience":52,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Fairy","BaseEggSteps":4080,"EggPokemon":300,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[56,96],"HiddenAbility":147,"EggMoves":[226,445,322,252,313,270,387,426,493,389,253,273,428,321,244,164],"Machines":[174,205,92,192,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,91,247,189,104,207,214,129,111,138,197,156,213,34,36,61,55,58,6,99,85,102,117,130,86,164,352,347,219,351,263,290,451,371,416,445,363,447,496,497,514,526,528,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":45,"Def":45,"SpAtk":35,"SpDef":35,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It’s adorable when it chases its own tail. It’s difficult to earn its trust.","Species":"Kitten Pokémon","Height":0.6,"Weight":11,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":252},{"Level":2,"ID":45},{"Level":3,"ID":39},{"Level":4,"ID":33},{"Level":5,"ID":193},{"Level":8,"ID":213},{"Level":11,"ID":47},{"Level":15,"ID":3},{"Level":18,"ID":1},{"Level":22,"ID":274},{"Level":25,"ID":204},{"Level":29,"ID":185},{"Level":32,"ID":358},{"Level":36,"ID":343},{"Level":39,"ID":215},{"Level":42,"ID":38},{"Level":46,"ID":445},{"Level":49,"ID":583}],"EvolutionConditions":[{"Condition":"8","ConditionType":"Item","Evolution":301,"Trigger":"ItemUse"}],"Items":[{"Id":2005,"Chance":5},{"Id":2002,"Chance":50}]} \ No newline at end of file +Name|Skitty +Number|300 +ExperienceType|0 +BaseExperience|52 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Fairy +BaseEggSteps|4080 +EggPokemon|300 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|56 +Ability2|96 +HiddenAbility|147 +EggMoves|226,445,322,252,313,270,387,426,493,389,253,273,428,321,244,164 +Machines|174,205,92,192,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,91,247,189,104,207,214,129,111,138,197,156,213,34,36,61,55,58,6,99,85,102,117,130,86,164,352,347,219,351,263,290,451,371,416,445,363,447,496,497,514,526,528,590,148 +BaseHP|50 +BaseAttack|45 +BaseDefense|45 +BaseSpAttack|35 +BaseSpDefense|35 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It’s adorable when it chases its own tail. It’s difficult to earn its trust.\Kitten Pokémon\11\0.6\0,148,0 +Scale|0.84 +Move|1,252 +Move|1,45 +Move|1,39 +Move|1,33 +Move|4,193 +Move|8,213 +Move|11,47 +Move|15,3 +Move|18,383 +Move|22,274 +Move|25,204 +Move|29,185 +Move|32,358 +Move|36,343 +Move|39,215 +Move|42,38 +Move|46,445 +Move|49,583 +TradeValue|25 +Item|5,2005 +Item|50,2002 +EvolutionCondition|301,item,8,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/301.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/301.dat index 0277444f5..fa8a600bd 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/301.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/301.dat @@ -1 +1,43 @@ -{"Name":"Delcatty","Number":301,"ExperienceType":"Fast","BaseExperience":133,"Type1":"Normal","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Fairy","BaseEggSteps":4080,"EggPokemon":300,"Devolution":300,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[56,96],"HiddenAbility":147,"EggMoves":[226,445,322,252,313,270,387,426,493,389,253,273,428,321,244,164],"Machines":[174,205,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,91,247,189,104,207,214,129,111,138,197,156,213,34,36,38,61,55,58,6,99,85,102,117,130,86,164,352,347,219,351,263,290,451,371,416,445,363,447,496,497,514,526,528,590,70,148,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":65,"Def":65,"SpAtk":55,"SpDef":55,"Speed":70},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It dislikes dirty places. It often searches for a comfortable place in which to groom itself.","Species":"Prim Pokémon","Height":1.1,"Weight":32.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":45,"Moves":[{"Level":1,"ID":252},{"Level":2,"ID":213},{"Level":3,"ID":47},{"Level":4,"ID":3}],"EvolutionConditions":[],"Items":[{"Id":2002,"Chance":50}]} \ No newline at end of file +Name|Delcatty +Number|301 +ExperienceType|0 +BaseExperience|133 +Type1|Normal +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Fairy +BaseEggSteps|4080 +EggPokemon|300 +IsGenderLess|0 +CanBreed|1 +Devolution|300 +IsMale|25 +Ability1|56 +Ability2|96 +HiddenAbility|147 +EggMoves|226,445,322,252,313,270,387,426,493,389,253,273,428,321,244,164 +Machines|174,205,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,91,247,189,104,207,214,129,111,138,197,156,213,34,36,38,61,55,58,6,99,85,102,117,130,86,164,352,347,219,351,263,290,451,371,416,445,363,447,496,497,514,526,528,590,70,148,560 +BaseHP|70 +BaseAttack|65 +BaseDefense|65 +BaseSpAttack|55 +BaseSpDefense|55 +BaseSpeed|70 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It dislikes dirty places. It often searches for a comfortable place in which to groom itself.\Prim Pokémon\32.6\1.1\0,148,0 +Scale|1.04 +Move|1,252 +Move|1,213 +Move|1,47 +Move|1,3 +TradeValue|45 +Item|50,2002 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/302.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/302.dat index 9df41cf12..9855fdd30 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/302.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/302.dat @@ -1 +1,59 @@ -{"Name":"Sableye","Number":302,"ExperienceType":"MediumSlow","BaseExperience":133,"Type1":"Dark","Type2":"Ghost","CatchRate":45,"BaseFriendship":35,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":302,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51,100],"HiddenAbility":158,"EggMoves":[445,364,260,286,212,368,236,417,105,389,271,244],"Machines":[223,174,92,249,244,237,241,173,63,196,182,240,203,218,216,91,94,247,189,104,8,207,214,9,138,197,156,213,168,7,210,171,5,25,34,36,6,66,68,69,99,102,117,118,149,164,264,352,269,280,351,317,332,259,263,290,289,374,261,373,421,371,416,445,399,363,398,468,477,490,496,510,514,555,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":75,"Def":75,"SpAtk":65,"SpDef":65,"Speed":50},"RewardEV":{"HP":0,"Atk":1,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It dwells in the darkness of caves. It uses its sharp claws to dig up gems to nourish itself.","Species":"Darkness Pokémon","Height":0.5,"Weight":11,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":212},{"Level":2,"ID":428},{"Level":3,"ID":43},{"Level":4,"ID":10},{"Level":5,"ID":193},{"Level":8,"ID":101},{"Level":11,"ID":310},{"Level":15,"ID":154},{"Level":18,"ID":252},{"Level":22,"ID":197},{"Level":25,"ID":425},{"Level":29,"ID":282},{"Level":32,"ID":185},{"Level":36,"ID":386},{"Level":39,"ID":421},{"Level":43,"ID":408},{"Level":46,"ID":109},{"Level":50,"ID":1},{"Level":53,"ID":428},{"Level":57,"ID":247},{"Level":60,"ID":212}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Sableye +Number|302 +ExperienceType|2 +BaseExperience|133 +Type1|Dark +Type2|Ghost +CatchRate|45 +BaseFriendship|35 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|302 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|51 +Ability2|100 +HiddenAbility|158 +EggMoves|445,364,260,286,212,368,236,417,105,389,271,244 +Machines|223,174,92,249,244,237,241,173,63,196,182,240,203,218,216,91,94,247,189,104,8,207,214,9,138,197,156,213,168,7,210,171,5,25,34,36,6,66,68,69,99,102,117,118,149,164,264,352,269,280,351,317,332,259,263,290,289,374,261,373,421,371,416,445,399,363,398,468,477,490,496,510,514,555,612,605,590,148 +BaseHP|50 +BaseAttack|75 +BaseDefense|75 +BaseSpAttack|65 +BaseSpDefense|65 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It dwells in the darkness of caves. It uses its sharp claws to dig up gems to nourish itself.\Darkness Pokémon\11\0.5\0,148,0 +Scale|0.7 +Move|1,212 +Move|1,428 +Move|1,43 +Move|1,10 +Move|4,193 +Move|8,101 +Move|11,310 +Move|15,154 +Move|18,252 +Move|22,197 +Move|25,425 +Move|29,282 +Move|32,185 +Move|36,386 +Move|39,421 +Move|43,408 +Move|46,109 +Move|50,492 +Move|53,428 +Move|57,247 +Move|60,212 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/302_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/302_mega.dat new file mode 100644 index 000000000..9db304283 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/302_mega.dat @@ -0,0 +1,59 @@ +Name|Mega Sableye +Number|302 +ExperienceType|2 +BaseExperience|133 +Type1|Dark +Type2|Ghost +CatchRate|45 +BaseFriendship|35 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|302 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|156 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|445,364,260,286,212,368,236,417,105,389,271,244 +Machines|223,174,92,249,244,237,241,173,63,196,182,240,203,218,216,91,94,247,189,104,8,207,214,9,138,197,156,213,168,7,210,171,5,25,34,36,6,66,68,69,99,102,117,118,149,164,264,352,269,280,351,317,332,259,263,290,289,374,261,373,421,371,416,445,399,363,398,468,477,490,496,510,514,555,612,605,590,148 +BaseHP|50 +BaseAttack|85 +BaseDefense|125 +BaseSpAttack|85 +BaseSpDefense|115 +BaseSpeed|20 +FPHP|0 +FPAttack|1 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It dwells in the darkness of caves. It uses its sharp claws to dig up gems to nourish itself.\Darkness Pokémon\161\0.5\0,148,0 +Scale|0.7 +Move|1,212 +Move|1,428 +Move|1,43 +Move|1,10 +Move|4,193 +Move|8,101 +Move|11,310 +Move|15,154 +Move|18,252 +Move|22,197 +Move|25,425 +Move|29,282 +Move|32,185 +Move|36,386 +Move|39,421 +Move|43,408 +Move|46,109 +Move|50,492 +Move|53,428 +Move|57,247 +Move|60,212 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/303.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/303.dat index 4b65f36fe..6603afbf0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/303.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/303.dat @@ -1 +1,59 @@ -{"Name":"Mawile","Number":303,"ExperienceType":"Fast","BaseExperience":133,"Type1":"Steel","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Fairy","BaseEggSteps":5355,"EggPokemon":303,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[52,22],"HiddenAbility":125,"EggMoves":[246,445,424,385,423,368,581,305,386,69,21,389,422,206,244,14,321],"Machines":[223,174,92,249,244,237,241,173,63,196,182,240,203,218,76,216,247,189,104,8,207,214,188,201,126,9,197,156,213,5,14,25,34,36,58,6,66,68,69,99,102,117,130,157,164,264,269,280,53,317,259,263,290,411,206,374,451,373,371,416,444,445,399,363,447,430,496,510,612,590,15,70],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":85,"Def":85,"SpAtk":55,"SpDef":55,"Speed":50},"RewardEV":{"HP":0,"Atk":1,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It chomps with its gaping mouth. Its huge jaws are actually steel horns that have been transformed.","Species":"Deceiver Pokémon","Height":0.6,"Weight":11.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":40,"Moves":[{"Level":1,"ID":583},{"Level":2,"ID":442},{"Level":3,"ID":269},{"Level":4,"ID":45},{"Level":5,"ID":584},{"Level":6,"ID":310},{"Level":7,"ID":313},{"Level":11,"ID":44},{"Level":16,"ID":230},{"Level":21,"ID":11},{"Level":26,"ID":185},{"Level":31,"ID":226},{"Level":36,"ID":242},{"Level":41,"ID":334},{"Level":46,"ID":389},{"Level":50,"ID":254},{"Level":51,"ID":256},{"Level":52,"ID":255},{"Level":56,"ID":442},{"Level":60,"ID":583}],"EvolutionConditions":[],"Items":[{"Id":2035,"Chance":5}]} \ No newline at end of file +Name|Mawile +Number|303 +ExperienceType|0 +BaseExperience|133 +Type1|Steel +Type2|Fairy +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Fairy +BaseEggSteps|5355 +EggPokemon|303 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|52 +Ability2|22 +HiddenAbility|125 +EggMoves|246,445,424,385,423,368,581,305,386,69,21,389,422,206,244,14,321 +Machines|223,174,92,249,244,237,241,173,63,196,182,240,203,218,76,216,247,189,104,8,207,214,188,201,126,9,197,156,213,5,14,25,34,36,58,6,66,68,69,99,102,117,130,157,164,264,269,280,53,317,259,263,290,411,206,374,451,373,371,416,444,445,399,363,447,430,496,510,612,590,15,70 +BaseHP|50 +BaseAttack|85 +BaseDefense|85 +BaseSpAttack|55 +BaseSpDefense|55 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It chomps with its gaping mouth. Its huge jaws are actually steel horns that have been transformed.\Deceiver Pokémon\11.5\0.6\0,148,0 +Scale|0.84 +Move|1,583 +Move|1,442 +Move|1,269 +Move|1,45 +Move|1,584 +Move|1,310 +Move|6,313 +Move|11,44 +Move|16,230 +Move|21,11 +Move|26,185 +Move|31,226 +Move|36,242 +Move|41,334 +Move|46,389 +Move|50,254 +Move|50,256 +Move|50,255 +Move|56,442 +Move|60,583 +TradeValue|40 +Item|5,2035 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/303_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/303_mega.dat new file mode 100644 index 000000000..86b970ef1 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/303_mega.dat @@ -0,0 +1,59 @@ +Name|Mega Mawile +Number|303 +ExperienceType|0 +BaseExperience|133 +Type1|Steel +Type2|Fairy +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Fairy +BaseEggSteps|5355 +EggPokemon|303 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|37 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|246,445,424,385,423,368,581,305,386,69,21,389,422,206,244,14,321 +Machines|223,174,92,249,244,237,241,173,63,196,182,240,203,218,76,216,247,189,104,8,207,214,188,201,126,9,197,156,213,5,14,25,34,36,58,6,66,68,69,99,102,117,130,157,164,264,269,280,53,317,259,263,290,411,206,374,451,373,371,416,444,445,399,363,447,430,496,510,612,590,15,70 +BaseHP|50 +BaseAttack|105 +BaseDefense|125 +BaseSpAttack|55 +BaseSpDefense|95 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It chomps with its gaping mouth. Its huge jaws are actually steel horns that have been transformed.\Deceiver Pokémon\23.5\1\0,148,0 +Scale|0.84 +Move|1,583 +Move|1,442 +Move|1,269 +Move|1,45 +Move|1,584 +Move|1,310 +Move|6,313 +Move|11,44 +Move|16,230 +Move|21,11 +Move|26,185 +Move|31,226 +Move|36,242 +Move|41,334 +Move|46,389 +Move|50,254 +Move|50,256 +Move|50,255 +Move|56,442 +Move|60,583 +TradeValue|40 +Item|5,2035 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/304.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/304.dat index 67ab0fd33..348c2123e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/304.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/304.dat @@ -1 +1,56 @@ -{"Name":"Aron","Number":304,"ExperienceType":"Slow","BaseExperience":66,"Type1":"Steel","Type2":"Rock","CatchRate":180,"BaseFriendship":35,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":304,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5,69],"HiddenAbility":134,"EggMoves":[34,174,407,283,457,442,179,103,265,446,23,276],"Machines":[29,174,205,46,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,111,197,156,213,210,34,36,38,99,82,102,117,130,157,164,352,351,317,332,263,290,421,416,397,446,445,363,468,496,523,590,15,70,560],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":70,"Def":100,"SpAtk":40,"SpDef":40,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it evolves carapace that covered its whole body and develops a new one.","Species":"Iron Armor Pokémon","Height":0.4,"Weight":60,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":106},{"Level":4,"ID":189},{"Level":8,"ID":29},{"Level":11,"ID":232},{"Level":15,"ID":334},{"Level":18,"ID":46},{"Level":22,"ID":36},{"Level":25,"ID":442},{"Level":29,"ID":182},{"Level":32,"ID":319},{"Level":36,"ID":231},{"Level":39,"ID":1},{"Level":43,"ID":484},{"Level":46,"ID":38},{"Level":50,"ID":368}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":305,"Trigger":"LevelUp"}],"Items":[{"Id":125,"Chance":5}]} \ No newline at end of file +Name|Aron +Number|304 +ExperienceType|3 +BaseExperience|66 +Type1|Steel +Type2|Rock +CatchRate|180 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|304 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|5 +Ability2|69 +HiddenAbility|134 +EggMoves|34,174,407,283,457,442,179,103,265,446,23,276 +Machines|29,174,205,46,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,111,197,156,213,210,34,36,38,99,82,102,117,130,157,164,352,351,317,332,263,290,421,416,397,446,445,363,468,496,523,590,15,70,560 +BaseHP|50 +BaseAttack|70 +BaseDefense|100 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it evolves carapace that covered its whole body and develops a new one.\Iron Armor Pokémon\60\0.4\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,106 +Move|4,189 +Move|8,29 +Move|11,232 +Move|15,334 +Move|18,46 +Move|22,36 +Move|25,442 +Move|29,182 +Move|32,319 +Move|36,231 +Move|39,475 +Move|43,484 +Move|46,38 +Move|50,368 +TradeValue|20 +Item|5,125 +EvolutionCondition|305,Level,32,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/305.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/305.dat index 6d4f7aac7..9eb544a4c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/305.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/305.dat @@ -1 +1,58 @@ -{"Name":"Lairon","Number":305,"ExperienceType":"Slow","BaseExperience":151,"Type1":"Steel","Type2":"Rock","CatchRate":90,"BaseFriendship":35,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":304,"Devolution":304,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5,69],"HiddenAbility":134,"EggMoves":[34,174,407,283,457,442,179,103,265,446,23,276],"Machines":[29,174,205,46,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,111,197,156,213,210,25,34,36,38,99,82,90,102,117,130,157,164,352,351,317,263,290,421,416,397,444,446,445,363,468,496,523,590,15,70,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":90,"Def":140,"SpAtk":50,"SpDef":50,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It loves iron ore. Groups of them fight for territory by bashing one another with their steel bodies.","Species":"Iron Armor Pokémon","Height":0.9,"Weight":120,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":45,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":106},{"Level":3,"ID":189},{"Level":4,"ID":29},{"Level":5,"ID":189},{"Level":8,"ID":29},{"Level":11,"ID":232},{"Level":15,"ID":334},{"Level":18,"ID":46},{"Level":22,"ID":36},{"Level":25,"ID":442},{"Level":29,"ID":182},{"Level":34,"ID":319},{"Level":40,"ID":231},{"Level":45,"ID":1},{"Level":51,"ID":484},{"Level":56,"ID":38},{"Level":62,"ID":368}],"EvolutionConditions":[{"Condition":"42","ConditionType":"Level","Evolution":306,"Trigger":"LevelUp"}],"Items":[{"Id":125,"Chance":5}]} \ No newline at end of file +Name|Lairon +Number|305 +ExperienceType|3 +BaseExperience|151 +Type1|Steel +Type2|Rock +CatchRate|90 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|304 +IsGenderLess|0 +CanBreed|1 +Devolution|304 +IsMale|50 +Ability1|5 +Ability2|69 +HiddenAbility|134 +EggMoves|34,174,407,283,457,442,179,103,265,446,23,276 +Machines|29,174,205,46,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,111,197,156,213,210,25,34,36,38,99,82,90,102,117,130,157,164,352,351,317,263,290,421,416,397,444,446,445,363,468,496,523,590,15,70,560 +BaseHP|60 +BaseAttack|90 +BaseDefense|140 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It loves iron ore. Groups of them fight for territory by bashing one another with their steel bodies.\Iron Armor Pokémon\120\0.9\0,148,0 +Scale|0.96 +Move|1,33 +Move|1,106 +Move|1,189 +Move|1,29 +Move|4,189 +Move|8,29 +Move|11,232 +Move|15,334 +Move|18,46 +Move|22,36 +Move|25,442 +Move|29,182 +Move|34,319 +Move|40,231 +Move|45,475 +Move|51,484 +Move|56,38 +Move|62,368 +TradeValue|45 +Item|5,125 +EvolutionCondition|306,Level,42,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/306.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/306.dat index 32015e7af..7f011e46b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/306.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/306.dat @@ -1 +1,57 @@ -{"Name":"Aggron","Number":306,"ExperienceType":"Slow","BaseExperience":239,"Type1":"Steel","Type2":"Rock","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":304,"Devolution":305,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5,69],"HiddenAbility":134,"EggMoves":[34,174,407,283,457,442,179,103,265,446,23,276],"Machines":[223,29,174,205,46,92,192,249,237,241,173,59,63,196,182,203,218,76,231,225,87,89,216,91,189,104,8,207,214,201,126,111,9,197,156,213,7,210,5,25,32,34,36,38,58,66,68,69,99,82,85,90,102,117,130,86,157,164,264,337,352,269,280,351,53,317,332,263,290,411,374,406,421,371,416,397,444,419,446,445,399,363,430,468,479,496,510,523,525,612,590,15,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":110,"Def":180,"SpAtk":60,"SpDef":60,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":3,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"You can tell its age by the length of its iron horns. It claims an entire mountain as its territory.","Species":"Iron Armor Pokémon","Height":2.1,"Weight":360,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.44,"Y":1.44,"Z":1.44},"TradeValue":65,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":106},{"Level":3,"ID":189},{"Level":4,"ID":29},{"Level":5,"ID":189},{"Level":8,"ID":29},{"Level":11,"ID":232},{"Level":15,"ID":334},{"Level":18,"ID":46},{"Level":22,"ID":36},{"Level":25,"ID":442},{"Level":29,"ID":182},{"Level":34,"ID":319},{"Level":40,"ID":231},{"Level":48,"ID":1},{"Level":57,"ID":484},{"Level":65,"ID":38},{"Level":74,"ID":368}],"EvolutionConditions":[],"Items":[{"Id":125,"Chance":5}]} \ No newline at end of file +Name|Aggron +Number|306 +ExperienceType|3 +BaseExperience|239 +Type1|Steel +Type2|Rock +CatchRate|45 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|304 +IsGenderLess|0 +CanBreed|1 +Devolution|305 +IsMale|50 +Ability1|5 +Ability2|69 +HiddenAbility|134 +EggMoves|34,174,407,283,457,442,179,103,265,446,23,276 +Machines|223,29,174,205,46,92,192,249,237,241,173,59,63,196,182,203,218,76,231,225,87,89,216,91,189,104,8,207,214,201,126,111,9,197,156,213,7,210,5,25,32,34,36,38,58,66,68,69,99,82,85,90,102,117,130,86,157,164,264,337,352,269,280,351,53,317,332,263,290,411,374,406,421,371,416,397,444,419,446,445,399,363,430,468,479,496,510,523,525,612,590,15,57,70,250,431,560 +BaseHP|70 +BaseAttack|110 +BaseDefense|180 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|You can tell its age by the length of its iron horns. It claims an entire mountain as its territory.\Iron Armor Pokémon\360\2.1\0,148,0 +Scale|1.44 +Move|1,33 +Move|1,106 +Move|1,189 +Move|1,29 +Move|4,189 +Move|8,29 +Move|11,232 +Move|15,334 +Move|18,46 +Move|22,36 +Move|25,442 +Move|29,182 +Move|34,319 +Move|40,231 +Move|48,475 +Move|57,484 +Move|65,38 +Move|74,368 +TradeValue|65 +Item|5,125 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/306_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/306_mega.dat new file mode 100644 index 000000000..61a16d439 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/306_mega.dat @@ -0,0 +1,57 @@ +Name|Mega Aggron +Number|306 +ExperienceType|3 +BaseExperience|239 +Type1|Steel +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|304 +IsGenderLess|0 +CanBreed|1 +Devolution|305 +IsMale|50 +Ability1|111 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|34,174,407,283,457,442,179,103,265,446,23,276 +Machines|223,29,174,205,46,92,192,249,237,241,173,59,63,196,182,203,218,76,231,225,87,89,216,91,189,104,8,207,214,201,126,111,9,197,156,213,7,210,5,25,32,34,36,38,58,66,68,69,99,82,85,90,102,117,130,86,157,164,264,337,352,269,280,351,53,317,332,263,290,411,374,406,421,371,416,397,444,419,446,445,399,363,430,468,479,496,510,523,525,612,590,15,57,70,250,431,560 +BaseHP|70 +BaseAttack|140 +BaseDefense|230 +BaseSpAttack|60 +BaseSpDefense|80 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|You can tell its age by the length of its iron horns. It claims an entire mountain as its territory.\Iron Armor Pokémon\395\2.2\0,148,0 +Scale|1.44 +Move|1,33 +Move|1,106 +Move|1,189 +Move|1,29 +Move|4,189 +Move|8,29 +Move|11,232 +Move|15,334 +Move|18,46 +Move|22,36 +Move|25,442 +Move|29,182 +Move|34,319 +Move|40,231 +Move|48,475 +Move|57,484 +Move|65,38 +Move|74,368 +TradeValue|65 +Item|5,125 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/307.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/307.dat index 08e6d3572..b1c22433b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/307.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/307.dat @@ -1 +1,54 @@ -{"Name":"Meditite","Number":307,"ExperienceType":"MediumFast","BaseExperience":56,"Type1":"Fighting","Type2":"Psychic","CatchRate":180,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":307,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[74],"HiddenAbility":140,"EggMoves":[226,418,409,223,252,7,193,385,8,384,427,501,290,9],"Machines":[223,174,92,249,244,237,241,173,63,182,240,203,218,216,94,247,189,104,8,207,214,129,9,138,197,156,213,7,5,25,34,36,66,68,69,99,100,102,115,117,118,130,149,157,164,264,347,339,113,280,317,263,290,411,374,409,278,416,445,363,398,447,473,477,490,496,514,526,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":40,"Def":55,"SpAtk":40,"SpDef":55,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It meditates to heighten its inner energy and to float in the air. It eats one berry a day.","Species":"Meditate Pokémon","Height":0.6,"Weight":11.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":117},{"Level":4,"ID":96},{"Level":8,"ID":93},{"Level":11,"ID":197},{"Level":15,"ID":237},{"Level":18,"ID":170},{"Level":22,"ID":364},{"Level":25,"ID":347},{"Level":29,"ID":395},{"Level":32,"ID":136},{"Level":36,"ID":244},{"Level":39,"ID":367},{"Level":43,"ID":379},{"Level":46,"ID":179},{"Level":50,"ID":105}],"EvolutionConditions":[{"Condition":"37","ConditionType":"Level","Evolution":308,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Meditite +Number|307 +ExperienceType|1 +BaseExperience|56 +Type1|Fighting +Type2|Psychic +CatchRate|180 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|307 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|74 +Ability2|Nothing +HiddenAbility|140 +EggMoves|226,418,409,223,252,7,193,385,8,384,427,501,290,9 +Machines|223,174,92,249,244,237,241,173,63,182,240,203,218,216,94,247,189,104,8,207,214,129,9,138,197,156,213,7,5,25,34,36,66,68,69,99,100,102,115,117,118,130,149,157,164,264,347,339,113,280,317,263,290,411,374,409,278,416,445,363,398,447,473,477,490,496,514,526,612,590,70,148 +BaseHP|30 +BaseAttack|40 +BaseDefense|55 +BaseSpAttack|40 +BaseSpDefense|55 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It meditates to heighten its inner energy and to float in the air. It eats one berry a day.\Meditate Pokémon\11.2\0.6\0,148,0 +Scale|0.84 +Move|1,117 +Move|4,96 +Move|8,93 +Move|11,197 +Move|15,237 +Move|18,170 +Move|22,364 +Move|25,347 +Move|29,395 +Move|32,136 +Move|36,244 +Move|39,367 +Move|43,379 +Move|46,179 +Move|50,105 +TradeValue|25 +EvolutionCondition|308,Level,37,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/308.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/308.dat index 45dce0c40..f31096495 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/308.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/308.dat @@ -1 +1,60 @@ -{"Name":"Medicham","Number":308,"ExperienceType":"MediumFast","BaseExperience":144,"Type1":"Fighting","Type2":"Psychic","CatchRate":90,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":307,"Devolution":307,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[74],"HiddenAbility":140,"EggMoves":[226,418,409,223,252,7,193,385,8,384,427,501,290,9],"Machines":[223,174,92,249,244,237,241,173,63,182,240,203,218,216,94,247,189,104,8,207,214,129,9,138,197,156,213,7,5,25,34,36,38,66,68,69,99,100,102,115,117,118,130,149,157,164,264,347,339,113,280,317,263,290,411,412,374,409,278,416,445,363,398,447,473,477,490,496,514,526,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":60,"Def":75,"SpAtk":60,"SpDef":75,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Through yoga training the psychic power to predict its foe's next move.","Species":"Meditate Pokémon","Height":1.3,"Weight":31.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":45,"Moves":[{"Level":1,"ID":428},{"Level":2,"ID":7},{"Level":3,"ID":9},{"Level":4,"ID":8},{"Level":5,"ID":117},{"Level":6,"ID":96},{"Level":7,"ID":93},{"Level":8,"ID":197},{"Level":9,"ID":96},{"Level":10,"ID":93},{"Level":11,"ID":197},{"Level":15,"ID":237},{"Level":18,"ID":170},{"Level":22,"ID":364},{"Level":25,"ID":347},{"Level":29,"ID":395},{"Level":32,"ID":136},{"Level":36,"ID":244},{"Level":42,"ID":367},{"Level":49,"ID":379},{"Level":55,"ID":179},{"Level":62,"ID":105}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Medicham +Number|308 +ExperienceType|1 +BaseExperience|144 +Type1|Fighting +Type2|Psychic +CatchRate|90 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|307 +IsGenderLess|0 +CanBreed|1 +Devolution|307 +IsMale|50 +Ability1|74 +Ability2|Nothing +HiddenAbility|140 +EggMoves|226,418,409,223,252,7,193,385,8,384,427,501,290,9 +Machines|223,174,92,249,244,237,241,173,63,182,240,203,218,216,94,247,189,104,8,207,214,129,9,138,197,156,213,7,5,25,34,36,38,66,68,69,99,100,102,115,117,118,130,149,157,164,264,347,339,113,280,317,263,290,411,412,374,409,278,416,445,363,398,447,473,477,490,496,514,526,612,590,70,148 +BaseHP|60 +BaseAttack|60 +BaseDefense|75 +BaseSpAttack|60 +BaseSpDefense|75 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Through yoga training the psychic power to predict its foe's next move.\Meditate Pokémon\31.5\1.3\0,148,0 +Scale|1.12 +Move|1,428 +Move|1,7 +Move|1,9 +Move|1,8 +Move|1,117 +Move|1,96 +Move|1,93 +Move|1,197 +Move|4,96 +Move|8,93 +Move|11,197 +Move|15,237 +Move|18,170 +Move|22,364 +Move|25,347 +Move|29,395 +Move|32,136 +Move|36,244 +Move|42,367 +Move|49,379 +Move|55,179 +Move|62,105 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/308_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/308_mega.dat new file mode 100644 index 000000000..1fe3e2bec --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/308_mega.dat @@ -0,0 +1,60 @@ +Name|Mega Medicham +Number|308 +ExperienceType|1 +BaseExperience|144 +Type1|Fighting +Type2|Psychic +CatchRate|90 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|307 +IsGenderLess|0 +CanBreed|1 +Devolution|307 +IsMale|50 +Ability1|74 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|226,418,409,223,252,7,193,385,8,384,427,501,290,9 +Machines|223,174,92,249,244,237,241,173,63,182,240,203,218,216,94,247,189,104,8,207,214,129,9,138,197,156,213,7,5,25,34,36,38,66,68,69,99,100,102,115,117,118,130,149,157,164,264,347,339,113,280,317,263,290,411,412,374,409,278,416,445,363,398,447,473,477,490,496,514,526,612,590,70,148 +BaseHP|60 +BaseAttack|100 +BaseDefense|85 +BaseSpAttack|80 +BaseSpDefense|85 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Through yoga training the psychic power to predict its foe's next move.\Meditate Pokémon\31.5\1.3\0,148,0 +Scale|1.12 +Move|1,428 +Move|1,7 +Move|1,9 +Move|1,8 +Move|1,117 +Move|1,96 +Move|1,93 +Move|1,197 +Move|4,96 +Move|8,93 +Move|11,197 +Move|15,237 +Move|18,170 +Move|22,364 +Move|25,347 +Move|29,395 +Move|32,136 +Move|36,244 +Move|42,367 +Move|49,379 +Move|55,179 +Move|62,105 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/309.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/309.dat index 1d7f9f4b3..0e6956f98 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/309.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/309.dat @@ -1 +1,53 @@ -{"Name":"Electrike","Number":309,"ExperienceType":"Slow","BaseExperience":59,"Type1":"Electric","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":309,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[9,31],"HiddenAbility":58,"EggMoves":[242,174,435,598,486,424,481,29,423,351,129,415,422,253],"Machines":[174,46,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,197,156,213,168,34,36,99,85,102,117,130,86,164,113,351,53,263,290,451,416,445,363,496,521,528,555,590,70,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":45,"Def":40,"SpAtk":65,"SpDef":40,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It stores electricity in its fur. It gives off sparks from all over its body in seasons when the air is dry.","Species":"Lightning Pokémon","Height":0.6,"Weight":15.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":33},{"Level":4,"ID":86},{"Level":9,"ID":43},{"Level":12,"ID":336},{"Level":17,"ID":98},{"Level":20,"ID":209},{"Level":25,"ID":316},{"Level":28,"ID":44},{"Level":33,"ID":422},{"Level":36,"ID":46},{"Level":41,"ID":435},{"Level":44,"ID":268},{"Level":49,"ID":528},{"Level":52,"ID":87}],"EvolutionConditions":[{"Condition":"26","ConditionType":"Level","Evolution":310,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Electrike +Number|309 +ExperienceType|3 +BaseExperience|59 +Type1|Electric +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|309 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|9 +Ability2|31 +HiddenAbility|58 +EggMoves|242,174,435,598,486,424,481,29,423,351,129,415,422,253 +Machines|174,46,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,197,156,213,168,34,36,99,85,102,117,130,86,164,113,351,53,263,290,451,416,445,363,496,521,528,555,590,70,148 +BaseHP|40 +BaseAttack|45 +BaseDefense|40 +BaseSpAttack|65 +BaseSpDefense|40 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It stores electricity in its fur. It gives off sparks from all over its body in seasons when the air is dry.\Lightning Pokémon\15.2\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|4,86 +Move|9,43 +Move|12,336 +Move|17,98 +Move|20,209 +Move|25,316 +Move|28,44 +Move|33,422 +Move|36,46 +Move|41,435 +Move|44,268 +Move|49,528 +Move|52,87 +TradeValue|25 +EvolutionCondition|310,level,26,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/31.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/31.dat index 8d28a0018..a48e7202c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/31.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/31.dat @@ -1 +1,45 @@ -{"Name":"Nidoqueen","Number":31,"ExperienceType":"MediumSlow","BaseExperience":223,"Type1":"Poison","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":29,"Devolution":30,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[38,79],"HiddenAbility":125,"EggMoves":[251,130,599,204,68,50,116,228,48,36,498,203,231,342],"Machines":[223,29,174,205,46,92,249,237,241,173,59,63,196,182,240,203,218,231,87,89,216,91,247,189,104,8,207,214,188,201,126,111,9,197,156,213,168,7,210,5,32,34,36,38,61,55,58,6,66,68,69,99,85,90,102,117,130,157,164,264,337,352,269,280,351,53,317,332,259,263,290,411,374,406,421,416,444,419,446,445,363,398,468,474,479,482,496,497,510,511,523,525,612,590,15,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":92,"Def":87,"SpAtk":75,"SpDef":85,"Speed":76},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its body is covered with needle-like scales. It never shows signs of shrinking from any attack.","Species":"Drill Pokémon","Height":1.3,"Weight":60,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":50,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":24},{"Level":3,"ID":39},{"Level":4,"ID":40},{"Level":5,"ID":276},{"Level":23,"ID":498},{"Level":35,"ID":34},{"Level":43,"ID":414},{"Level":58,"ID":276}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Nidoqueen +Number|31 +ExperienceType|2 +BaseExperience|223 +Type1|Poison +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|29 +IsGenderLess|0 +IsMale|0 +Ability1|38 +Ability2|79 +HiddenAbility|125 +EggMoves|251,130,599,204,68,50,116,228,48,36,498,203,231,342 +Machines|223,29,174,205,46,92,249,237,241,173,59,63,196,182,240,203,218,231,87,89,216,91,247,189,104,8,207,214,188,201,126,111,9,197,156,213,168,7,210,5,32,34,36,38,61,55,58,6,66,68,69,99,85,90,102,117,130,157,164,264,337,352,269,280,351,53,317,332,259,263,290,411,374,406,421,416,444,419,446,445,363,398,468,474,479,482,496,497,510,511,523,525,612,590,15,57,70,250,431,560 +BaseHP|90 +BaseAttack|92 +BaseDefense|87 +BaseSpAttack|75 +BaseSpDefense|85 +BaseSpeed|76 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its body is covered with needle-like scales. It never shows signs of shrinking from any attack.\Drill Pokémon\60\1.3\0,148,0 +Scale|1.12 +Move|1,10 +Move|1,24 +Move|1,39 +Move|1,40 +Move|1,276 +Move|23,498 +Move|35,34 +Move|43,414 +Move|58,276 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/310.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/310.dat index f8fb4e9a3..88c369cae 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/310.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/310.dat @@ -1 +1,58 @@ -{"Name":"Manectric","Number":310,"ExperienceType":"Slow","BaseExperience":166,"Type1":"Electric","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":309,"Devolution":309,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[9,31],"HiddenAbility":58,"EggMoves":[242,174,435,598,486,424,481,29,423,351,129,415,422,253],"Machines":[174,46,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,197,156,213,168,25,34,36,38,99,85,102,117,130,86,164,113,351,53,263,290,315,451,416,445,363,496,521,528,555,590,70,148,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":75,"Def":60,"SpAtk":105,"SpDef":60,"Speed":105},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its nest can be found where a thunderbolt hits. It is discharging electricity from its mane.","Species":"Discharge Pokémon","Height":1.5,"Weight":40.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":45,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":424},{"Level":3,"ID":33},{"Level":4,"ID":86},{"Level":5,"ID":43},{"Level":6,"ID":336},{"Level":7,"ID":86},{"Level":9,"ID":43},{"Level":12,"ID":336},{"Level":17,"ID":98},{"Level":20,"ID":209},{"Level":25,"ID":316},{"Level":30,"ID":44},{"Level":37,"ID":422},{"Level":42,"ID":46},{"Level":49,"ID":435},{"Level":54,"ID":268},{"Level":61,"ID":528},{"Level":66,"ID":87},{"Level":70,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Manectric +Number|310 +ExperienceType|3 +BaseExperience|166 +Type1|Electric +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|309 +IsGenderLess|0 +CanBreed|1 +Devolution|309 +IsMale|50 +Ability1|9 +Ability2|31 +HiddenAbility|58 +EggMoves|242,174,435,598,486,424,481,29,423,351,129,415,422,253 +Machines|174,46,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,197,156,213,168,25,34,36,38,99,85,102,117,130,86,164,113,351,53,263,290,315,451,416,445,363,496,521,528,555,590,70,148,560 +BaseHP|70 +BaseAttack|75 +BaseDefense|60 +BaseSpAttack|105 +BaseSpDefense|60 +BaseSpeed|105 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Its nest can be found where a thunderbolt hits. It is discharging electricity from its mane.\Discharge Pokémon\40.2\1.5\0,148,0 +Scale|1.2 +Move|1,604 +Move|1,424 +Move|1,33 +Move|1,86 +Move|1,43 +Move|1,336 +Move|4,86 +Move|9,43 +Move|12,336 +Move|17,98 +Move|20,209 +Move|25,316 +Move|30,44 +Move|37,422 +Move|42,46 +Move|49,435 +Move|54,268 +Move|61,528 +Move|66,87 +Move|70,604 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/310_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/310_mega.dat new file mode 100644 index 000000000..4720af1d0 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/310_mega.dat @@ -0,0 +1,58 @@ +Name|Mega Manectric +Number|310 +ExperienceType|3 +BaseExperience|166 +Type1|Electric +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|309 +IsGenderLess|0 +CanBreed|1 +Devolution|309 +IsMale|50 +Ability1|22 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|242,174,435,598,486,424,481,29,423,351,129,415,422,253 +Machines|174,46,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,197,156,213,168,25,34,36,38,99,85,102,117,130,86,164,113,351,53,263,290,315,451,416,445,363,496,521,528,555,590,70,148,560 +BaseHP|70 +BaseAttack|75 +BaseDefense|80 +BaseSpAttack|135 +BaseSpDefense|80 +BaseSpeed|135 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Its nest can be found where a thunderbolt hits. It is discharging electricity from its mane.\Discharge Pokémon\44\1.8\0,148,0 +Scale|1.2 +Move|1,604 +Move|1,424 +Move|1,33 +Move|1,86 +Move|1,43 +Move|1,336 +Move|4,86 +Move|9,43 +Move|12,336 +Move|17,98 +Move|20,209 +Move|25,316 +Move|30,44 +Move|37,422 +Move|42,46 +Move|49,435 +Move|54,268 +Move|61,528 +Move|66,87 +Move|70,604 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/311.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/311.dat index fc63a408e..145f4dedf 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/311.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/311.dat @@ -1 +1,60 @@ -{"Name":"Plusle","Number":311,"ExperienceType":"MediumFast","BaseExperience":142,"Type1":"Electric","Type2":"Blank","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":311,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[57],"HiddenAbility":31,"EggMoves":[435,381,47,186,273,164],"Machines":[223,174,205,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,111,9,197,156,213,5,34,36,68,69,99,85,102,117,118,86,164,113,351,263,290,374,451,416,445,363,447,496,497,521,528,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":50,"Def":40,"SpAtk":85,"SpDef":75,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It absorbs electricity from telephone poles. It shorts out its body to create crackling noises.","Species":"Cheering Pokémon","Height":0.4,"Weight":4.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":30,"Moves":[{"Level":1,"ID":417},{"Level":2,"ID":609},{"Level":3,"ID":1},{"Level":4,"ID":589},{"Level":5,"ID":45},{"Level":6,"ID":86},{"Level":7,"ID":98},{"Level":10,"ID":1},{"Level":15,"ID":209},{"Level":17,"ID":227},{"Level":21,"ID":589},{"Level":24,"ID":1},{"Level":29,"ID":486},{"Level":31,"ID":129},{"Level":35,"ID":313},{"Level":38,"ID":268},{"Level":42,"ID":87},{"Level":44,"ID":226},{"Level":48,"ID":97},{"Level":50,"ID":387},{"Level":56,"ID":417},{"Level":63,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Plusle +Number|311 +ExperienceType|1 +BaseExperience|142 +Type1|Electric +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|311 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|57 +Ability2|Nothing +HiddenAbility|31 +EggMoves|435,381,47,186,273,164 +Machines|223,174,205,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,111,9,197,156,213,5,34,36,68,69,99,85,102,117,118,86,164,113,351,263,290,374,451,416,445,363,447,496,497,521,528,590,148 +BaseHP|60 +BaseAttack|50 +BaseDefense|40 +BaseSpAttack|85 +BaseSpDefense|75 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It absorbs electricity from telephone poles. It shorts out its body to create crackling noises.\Cheering Pokémon\4.2\0.4\0,148,0 +Scale|0.7 +Move|1,417 +Move|1,609 +Move|1,494 +Move|1,589 +Move|1,45 +Move|3,86 +Move|7,98 +Move|10,270 +Move|15,209 +Move|17,227 +Move|21,589 +Move|24,383 +Move|29,486 +Move|31,129 +Move|35,313 +Move|38,268 +Move|42,87 +Move|44,226 +Move|48,97 +Move|50,387 +Move|56,417 +Move|63,494 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/312.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/312.dat index 6ebc44a93..197ffabf7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/312.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/312.dat @@ -1 +1,60 @@ -{"Name":"Minun","Number":312,"ExperienceType":"MediumFast","BaseExperience":142,"Type1":"Electric","Type2":"Blank","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":312,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[58],"HiddenAbility":10,"EggMoves":[435,381,47,186,273,164],"Machines":[223,174,205,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,111,9,197,156,213,5,34,36,68,69,99,85,102,117,118,86,164,113,351,263,290,374,451,416,445,363,447,496,497,521,528,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":40,"Def":50,"SpAtk":75,"SpDef":85,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Exposure to electricity from MINUN and PLUSLE promotes blood circulation and relaxes muscles.","Species":"Cheering Pokémon","Height":0.4,"Weight":4.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":30,"Moves":[{"Level":1,"ID":417},{"Level":2,"ID":609},{"Level":3,"ID":1},{"Level":4,"ID":589},{"Level":5,"ID":45},{"Level":6,"ID":86},{"Level":7,"ID":98},{"Level":10,"ID":1},{"Level":15,"ID":209},{"Level":17,"ID":227},{"Level":21,"ID":204},{"Level":24,"ID":1},{"Level":29,"ID":486},{"Level":31,"ID":129},{"Level":35,"ID":313},{"Level":38,"ID":268},{"Level":42,"ID":87},{"Level":44,"ID":226},{"Level":48,"ID":97},{"Level":51,"ID":376},{"Level":56,"ID":417},{"Level":63,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Minun +Number|312 +ExperienceType|1 +BaseExperience|142 +Type1|Electric +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|312 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|58 +Ability2|Nothing +HiddenAbility|10 +EggMoves|435,381,47,186,273,164 +Machines|223,174,205,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,111,9,197,156,213,5,34,36,68,69,99,85,102,117,118,86,164,113,351,263,290,374,451,416,445,363,447,496,497,521,528,590,148 +BaseHP|60 +BaseAttack|40 +BaseDefense|50 +BaseSpAttack|75 +BaseSpDefense|85 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Exposure to electricity from MINUN and PLUSLE promotes blood circulation and relaxes muscles.\Cheering Pokémon\4.2\0.4\0,148,0 +Scale|0.7 +Move|1,417 +Move|1,609 +Move|1,494 +Move|1,589 +Move|1,45 +Move|3,86 +Move|7,98 +Move|10,270 +Move|15,209 +Move|17,227 +Move|21,204 +Move|24,383 +Move|29,486 +Move|31,129 +Move|35,313 +Move|38,268 +Move|42,87 +Move|44,226 +Move|48,97 +Move|51,376 +Move|56,417 +Move|63,494 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/313.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/313.dat index affc045c2..650118a48 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/313.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/313.dat @@ -1 +1,51 @@ -{"Name":"Volbeat","Number":313,"ExperienceType":"MediumFast","BaseExperience":140,"Type1":"Bug","Type2":"Blank","CatchRate":150,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"HumanLike","BaseEggSteps":4080,"EggPokemon":313,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[35,68],"HiddenAbility":158,"EggMoves":[226,405,146,227,69,318,271,74],"Machines":[223,174,92,244,237,241,230,173,63,182,240,202,203,218,87,216,247,189,104,8,207,214,129,9,197,156,213,168,5,34,36,6,66,68,69,99,72,85,102,117,118,86,164,264,352,113,280,351,332,263,290,355,374,451,318,416,445,363,369,496,522,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":73,"Def":55,"SpAtk":47,"SpDef":75,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It emits light from its tail to communicate. It loves the sweet aroma given off by ILLUMISE.","Species":"Firefly Pokémon","Height":0.7,"Weight":17.7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":30,"Moves":[{"Level":1,"ID":148},{"Level":2,"ID":33},{"Level":5,"ID":104},{"Level":9,"ID":109},{"Level":13,"ID":236},{"Level":17,"ID":98},{"Level":21,"ID":294},{"Level":25,"ID":324},{"Level":29,"ID":182},{"Level":33,"ID":1},{"Level":37,"ID":428},{"Level":41,"ID":405},{"Level":45,"ID":38}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Volbeat +Number|313 +ExperienceType|1 +BaseExperience|140 +Type1|Bug +Type2| +CatchRate|150 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|HumanLike +BaseEggSteps|4080 +EggPokemon|313 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|100 +Ability1|35 +Ability2|68 +HiddenAbility|158 +EggMoves|226,405,146,227,69,318,271,74 +Machines|223,174,92,244,237,241,230,173,63,182,240,202,203,218,87,216,247,189,104,8,207,214,129,9,197,156,213,168,5,34,36,6,66,68,69,99,72,85,102,117,118,86,164,264,352,113,280,351,332,263,290,355,374,451,318,416,445,363,369,496,522,612,605,590,148 +BaseHP|65 +BaseAttack|73 +BaseDefense|55 +BaseSpAttack|47 +BaseSpDefense|75 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It emits light from its tail to communicate. It loves the sweet aroma given off by ILLUMISE.\Firefly Pokémon\17.7\0.7\0,148,0 +Scale|0.88 +Move|1,148 +Move|1,33 +Move|5,104 +Move|9,109 +Move|13,236 +Move|17,98 +Move|21,294 +Move|25,324 +Move|29,182 +Move|33,270 +Move|37,428 +Move|41,405 +Move|45,38 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/314.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/314.dat index bd7f04291..4ff42e8fa 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/314.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/314.dat @@ -1 +1,51 @@ -{"Name":"Illumise","Number":314,"ExperienceType":"MediumFast","BaseExperience":140,"Type1":"Bug","Type2":"Blank","CatchRate":150,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"HumanLike","BaseEggSteps":4080,"EggPokemon":314,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[12,110],"HiddenAbility":158,"EggMoves":[226,405,445,109,227,313,74,318],"Machines":[223,174,92,244,237,241,230,173,63,182,240,202,203,218,87,216,247,189,104,8,207,214,129,9,197,156,213,168,5,34,36,6,66,68,69,99,72,85,102,117,118,86,164,264,352,113,280,351,332,263,290,355,374,451,318,416,445,363,369,496,512,522,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":47,"Def":55,"SpAtk":73,"SpDef":75,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its fragrance attracts a swarm of VOLBEAT, so they draw over 200 patterns in the night sky.","Species":"Firefly Pokémon","Height":0.6,"Weight":17.7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":30,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":589},{"Level":5,"ID":230},{"Level":9,"ID":204},{"Level":13,"ID":236},{"Level":17,"ID":98},{"Level":21,"ID":273},{"Level":25,"ID":227},{"Level":29,"ID":260},{"Level":33,"ID":1},{"Level":37,"ID":428},{"Level":41,"ID":405},{"Level":45,"ID":343}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Illumise +Number|314 +ExperienceType|1 +BaseExperience|140 +Type1|Bug +Type2| +CatchRate|150 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|HumanLike +BaseEggSteps|4080 +EggPokemon|314 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|0 +Ability1|12 +Ability2|110 +HiddenAbility|158 +EggMoves|226,405,445,109,227,313,74,318 +Machines|223,174,92,244,237,241,230,173,63,182,240,202,203,218,87,216,247,189,104,8,207,214,129,9,197,156,213,168,5,34,36,6,66,68,69,99,72,85,102,117,118,86,164,264,352,113,280,351,332,263,290,355,374,451,318,416,445,363,369,496,512,522,612,605,590,148 +BaseHP|65 +BaseAttack|47 +BaseDefense|55 +BaseSpAttack|73 +BaseSpDefense|75 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Its fragrance attracts a swarm of VOLBEAT, so they draw over 200 patterns in the night sky.\Firefly Pokémon\17.7\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|1,589 +Move|5,230 +Move|9,204 +Move|13,236 +Move|17,98 +Move|21,273 +Move|25,227 +Move|29,260 +Move|33,270 +Move|37,428 +Move|41,405 +Move|45,343 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/315.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/315.dat index b43fe4a38..72f87b332 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/315.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/315.dat @@ -1 +1,57 @@ -{"Name":"Roselia","Number":315,"ExperienceType":"MediumSlow","BaseExperience":140,"Type1":"Grass","Type2":"Poison","CatchRate":150,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":406,"Devolution":406,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[30,38],"HiddenAbility":102,"EggMoves":[331,178,326,202,320,437,170,363,42,75,402,79,191,235],"Machines":[174,92,244,237,241,230,173,63,182,240,202,203,218,76,216,247,189,104,207,214,188,129,197,156,213,210,171,14,34,36,99,72,102,117,164,331,263,290,412,416,445,363,398,447,474,496,512,267,605,590,15,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":60,"Def":45,"SpAtk":100,"SpDef":80,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"ROSELIA that drink nutritionally rich springwater are said to reveal rare coloration when they bloom.","Species":"Thorn Pokémon","Height":0.3,"Weight":2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":30,"Moves":[{"Level":1,"ID":71},{"Level":4,"ID":74},{"Level":7,"ID":40},{"Level":10,"ID":78},{"Level":13,"ID":72},{"Level":16,"ID":73},{"Level":19,"ID":345},{"Level":22,"ID":320},{"Level":25,"ID":202},{"Level":28,"ID":390},{"Level":31,"ID":230},{"Level":34,"ID":275},{"Level":37,"ID":80},{"Level":40,"ID":92},{"Level":43,"ID":312},{"Level":46,"ID":235},{"Level":50,"ID":572}],"EvolutionConditions":[{"Condition":"135","ConditionType":"Item","Evolution":407,"Trigger":"ItemUse"}],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Roselia +Number|315 +ExperienceType|2 +BaseExperience|140 +Type1|Grass +Type2|Poison +CatchRate|150 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|406 +IsGenderLess|0 +CanBreed|1 +Devolution|406 +IsMale|50 +Ability1|30 +Ability2|38 +HiddenAbility|102 +EggMoves|331,178,326,202,320,437,170,363,42,75,402,79,191,235 +Machines|174,92,244,237,241,230,173,63,182,240,202,203,218,76,216,247,189,104,207,214,188,129,197,156,213,210,171,14,34,36,99,72,102,117,164,331,263,290,412,416,445,363,398,447,474,496,512,267,605,590,15,148 +BaseHP|50 +BaseAttack|60 +BaseDefense|45 +BaseSpAttack|100 +BaseSpDefense|80 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|ROSELIA that drink nutritionally rich springwater are said to reveal rare coloration when they bloom.\Thorn Pokémon\2\0.3\0,148,0 +Scale|0.7 +Move|1,71 +Move|4,74 +Move|7,40 +Move|10,78 +Move|13,72 +Move|16,73 +Move|19,345 +Move|22,320 +Move|25,202 +Move|28,390 +Move|31,230 +Move|34,275 +Move|37,80 +Move|40,92 +Move|43,312 +Move|46,235 +Move|50,572 +TradeValue|30 +Item|5,81 +EvolutionCondition|407,item,135,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/316.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/316.dat index 0320216be..522bd0d9b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/316.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/316.dat @@ -1 +1,56 @@ -{"Name":"Gulpin","Number":316,"ExperienceType":"MediumFast","BaseExperience":60,"Type1":"Poison","Type2":"Blank","CatchRate":225,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":316,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[64,60],"HiddenAbility":82,"EggMoves":[151,174,194,441,189,220,123,599,138],"Machines":[223,174,205,92,249,237,241,173,63,182,240,202,203,218,76,216,247,189,104,8,207,214,188,111,9,138,197,156,213,7,171,34,36,58,68,99,72,102,117,120,153,164,352,331,351,263,290,289,416,445,363,474,482,496,611,612,590,70],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":43,"Def":53,"SpAtk":43,"SpDef":53,"Speed":40},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has a small heart and brain. Its stomach comprises most of its body, with enzymes to dissolve anything.","Species":"Stomach Pokémon","Height":0.4,"Weight":10.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":6,"ID":281},{"Level":9,"ID":139},{"Level":14,"ID":124},{"Level":17,"ID":133},{"Level":23,"ID":227},{"Level":28,"ID":92},{"Level":34,"ID":491},{"Level":39,"ID":254},{"Level":40,"ID":255},{"Level":41,"ID":256},{"Level":42,"ID":1},{"Level":44,"ID":188},{"Level":49,"ID":1},{"Level":54,"ID":378},{"Level":59,"ID":441}],"EvolutionConditions":[{"Condition":"26","ConditionType":"Level","Evolution":317,"Trigger":"LevelUp"}],"Items":[{"Id":111,"Chance":5}]} \ No newline at end of file +Name|Gulpin +Number|316 +ExperienceType|1 +BaseExperience|60 +Type1|Poison +Type2| +CatchRate|225 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|316 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|64 +Ability2|60 +HiddenAbility|82 +EggMoves|151,174,194,441,189,220,123,599,138 +Machines|223,174,205,92,249,237,241,173,63,182,240,202,203,218,76,216,247,189,104,8,207,214,188,111,9,138,197,156,213,7,171,34,36,58,68,99,72,102,117,120,153,164,352,331,351,263,290,289,416,445,363,474,482,496,611,612,590,70 +BaseHP|70 +BaseAttack|43 +BaseDefense|53 +BaseSpAttack|43 +BaseSpDefense|53 +BaseSpeed|40 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has a small heart and brain. Its stomach comprises most of its body, with enzymes to dissolve anything.\Stomach Pokémon\10.3\0.4\0,148,0 +Scale|0.7 +Move|1,1 +Move|6,281 +Move|9,139 +Move|14,124 +Move|17,133 +Move|23,227 +Move|28,92 +Move|34,491 +Move|39,254 +Move|39,255 +Move|39,256 +Move|40,562 +Move|44,188 +Move|49,380 +Move|54,378 +Move|59,441 +TradeValue|25 +Item|5,111 +EvolutionCondition|317,level,26,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/317.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/317.dat index 7a1f11fda..2d96fd658 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/317.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/317.dat @@ -1 +1,58 @@ -{"Name":"Swalot","Number":317,"ExperienceType":"MediumFast","BaseExperience":163,"Type1":"Poison","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":316,"Devolution":316,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[64,60],"HiddenAbility":82,"EggMoves":[151,174,194,441,189,220,123,599,138],"Machines":[223,174,205,92,249,237,241,173,63,182,240,202,203,218,76,89,216,247,189,104,8,207,214,188,111,9,138,197,156,213,7,171,34,36,38,58,68,99,72,102,117,120,153,164,352,331,351,263,290,289,416,445,363,474,482,496,523,611,612,590,70],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":73,"Def":83,"SpAtk":73,"SpDef":83,"Speed":55},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It gulps anything that fits in its mouth. Its special enzymes can dissolve anything.","Species":"Poison Bag Pokémon","Height":1.7,"Weight":80,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":45,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":124},{"Level":3,"ID":139},{"Level":4,"ID":281},{"Level":6,"ID":281},{"Level":9,"ID":139},{"Level":14,"ID":124},{"Level":17,"ID":133},{"Level":23,"ID":227},{"Level":26,"ID":34},{"Level":30,"ID":92},{"Level":38,"ID":491},{"Level":45,"ID":254},{"Level":46,"ID":255},{"Level":47,"ID":256},{"Level":52,"ID":188},{"Level":59,"ID":1},{"Level":66,"ID":378},{"Level":73,"ID":441}],"EvolutionConditions":[],"Items":[{"Id":111,"Chance":5}]} \ No newline at end of file +Name|Swalot +Number|317 +ExperienceType|1 +BaseExperience|163 +Type1|Poison +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|316 +IsGenderLess|0 +CanBreed|1 +Devolution|316 +IsMale|50 +Ability1|64 +Ability2|60 +HiddenAbility|82 +EggMoves|151,174,194,441,189,220,123,599,138 +Machines|223,174,205,92,249,237,241,173,63,182,240,202,203,218,76,89,216,247,189,104,8,207,214,188,111,9,138,197,156,213,7,171,34,36,38,58,68,99,72,102,117,120,153,164,352,331,351,263,290,289,416,445,363,474,482,496,523,611,612,590,70 +BaseHP|100 +BaseAttack|73 +BaseDefense|83 +BaseSpAttack|73 +BaseSpDefense|83 +BaseSpeed|55 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It gulps anything that fits in its mouth. Its special enzymes can dissolve anything.\Poison Bag Pokémon\80\1.7\0,148,0 +Scale|1.28 +Move|1,1 +Move|26,34 +Move|30,92 +Move|1,124 +Move|14,124 +Move|17,133 +Move|1,139 +Move|9,139 +Move|52,188 +Move|23,227 +Move|45,254 +Move|45,255 +Move|45,256 +Move|1,281 +Move|6,281 +Move|66,378 +Move|59,380 +Move|73,441 +Move|38,491 +TradeValue|45 +Item|5,111 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/318.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/318.dat index c48c9a295..65c7f7383 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/318.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/318.dat @@ -1 +1,53 @@ -{"Name":"Carvanha","Number":318,"ExperienceType":"Slow","BaseExperience":61,"Type1":"Water","Type2":"Dark","CatchRate":225,"BaseFriendship":35,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":318,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[24],"HiddenAbility":3,"EggMoves":[246,362,194,38,56,129,37],"Machines":[174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,168,210,36,61,55,58,99,102,117,130,164,352,258,269,259,263,290,362,371,416,445,399,363,496,503,514,555,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":90,"Def":20,"SpAtk":65,"SpDef":20,"Speed":65},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They form packs to attack boats and rip out their hulls to sink them. They live in rivers in the jungle.","Species":"Savage Pokémon","Height":0.8,"Weight":20.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":45,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":44},{"Level":6,"ID":99},{"Level":8,"ID":116},{"Level":11,"ID":184},{"Level":16,"ID":423},{"Level":18,"ID":103},{"Level":21,"ID":207},{"Level":26,"ID":372},{"Level":28,"ID":242},{"Level":31,"ID":453},{"Level":36,"ID":97},{"Level":38,"ID":36}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":319,"Trigger":"LevelUp"}],"Items":[{"Id":167,"Chance":5}]} \ No newline at end of file +Name|Carvanha +Number|318 +ExperienceType|3 +BaseExperience|61 +Type1|Water +Type2|Dark +CatchRate|225 +BaseFriendship|35 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|318 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|24 +Ability2|Nothing +HiddenAbility|3 +EggMoves|246,362,194,38,56,129,37 +Machines|174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,168,210,36,61,55,58,99,102,117,130,164,352,258,269,259,263,290,362,371,416,445,399,363,496,503,514,555,590,57,250,127,291 +BaseHP|45 +BaseAttack|90 +BaseDefense|20 +BaseSpAttack|65 +BaseSpDefense|20 +BaseSpeed|65 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They form packs to attack boats and rip out their hulls to sink them. They live in rivers in the jungle.\Savage Pokémon\20.8\0.8\0,148,0 +Scale|0.92 +Move|1,43 +Move|1,44 +Move|6,99 +Move|8,116 +Move|11,184 +Move|16,423 +Move|18,103 +Move|21,207 +Move|26,372 +Move|28,242 +Move|31,453 +Move|36,97 +Move|38,36 +TradeValue|45 +Item|5,167 +EvolutionCondition|319,level,30,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/319.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/319.dat index 6c0daf99a..61f1c361b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/319.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/319.dat @@ -1 +1,59 @@ -{"Name":"Sharpedo","Number":319,"ExperienceType":"Slow","BaseExperience":161,"Type1":"Water","Type2":"Dark","CatchRate":60,"BaseFriendship":35,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":319,"Devolution":318,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[24],"HiddenAbility":3,"EggMoves":[246,362,194,56,129,37,38],"Machines":[174,46,92,249,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,129,197,156,213,168,210,36,38,61,55,58,99,102,117,130,164,352,258,269,317,259,263,290,362,371,416,419,445,399,363,398,496,503,514,523,555,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":120,"Def":40,"SpAtk":95,"SpDef":40,"Speed":95},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can swim at speeds of 75 mph by jetting seawater through its body. It is the bandit of the sea.","Species":"Brutal Pokémon","Height":1.8,"Weight":88.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":50,"Moves":[{"Level":1,"ID":400},{"Level":2,"ID":364},{"Level":3,"ID":43},{"Level":4,"ID":44},{"Level":5,"ID":99},{"Level":6,"ID":116},{"Level":7,"ID":99},{"Level":8,"ID":116},{"Level":11,"ID":184},{"Level":16,"ID":423},{"Level":18,"ID":103},{"Level":21,"ID":207},{"Level":26,"ID":372},{"Level":28,"ID":242},{"Level":30,"ID":163},{"Level":34,"ID":453},{"Level":40,"ID":269},{"Level":45,"ID":97},{"Level":50,"ID":130},{"Level":56,"ID":400}],"EvolutionConditions":[],"Items":[{"Id":5,"Chance":167}]} \ No newline at end of file +Name|Sharpedo +Number|319 +ExperienceType|3 +BaseExperience|161 +Type1|Water +Type2|Dark +CatchRate|60 +BaseFriendship|35 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|318 +IsGenderLess|0 +CanBreed|1 +Devolution|318 +IsMale|50 +Ability1|24 +Ability2|Nothing +HiddenAbility|3 +EggMoves|246,362,194,56,129,37,38 +Machines|174,46,92,249,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,129,197,156,213,168,210,36,38,61,55,58,99,102,117,130,164,352,258,269,317,259,263,290,362,371,416,419,445,399,363,398,496,503,514,523,555,590,57,70,250,127,291 +BaseHP|70 +BaseAttack|120 +BaseDefense|40 +BaseSpAttack|95 +BaseSpDefense|40 +BaseSpeed|95 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can swim at speeds of 75 mph by jetting seawater through its body. It is the bandit of the sea.\Brutal Pokémon\88.8\1.8\0,148,0 +Scale|1.32 +Move|1,400 +Move|1,364 +Move|1,43 +Move|1,44 +Move|1,99 +Move|1,116 +Move|6,99 +Move|8,116 +Move|11,184 +Move|16,423 +Move|18,103 +Move|21,207 +Move|26,372 +Move|28,242 +Move|30,163 +Move|34,453 +Move|40,269 +Move|45,97 +Move|50,130 +Move|56,400 +TradeValue|50 +Item|5,167 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/319_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/319_mega.dat new file mode 100644 index 000000000..6890b8c18 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/319_mega.dat @@ -0,0 +1,59 @@ +Name|Mega Sharpedo +Number|319 +ExperienceType|3 +BaseExperience|161 +Type1|Water +Type2|Dark +CatchRate|60 +BaseFriendship|35 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|318 +IsGenderLess|0 +CanBreed|1 +Devolution|318 +IsMale|50 +Ability1|173 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|246,362,194,56,129,37,38 +Machines|174,46,92,249,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,129,197,156,213,168,210,36,38,61,55,58,99,102,117,130,164,352,258,269,317,259,263,290,362,371,416,419,445,399,363,398,496,503,514,523,555,590,57,70,250,127,291 +BaseHP|70 +BaseAttack|140 +BaseDefense|70 +BaseSpAttack|110 +BaseSpDefense|65 +BaseSpeed|105 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can swim at speeds of 75 mph by jetting seawater through its body. It is the bandit of the sea.\Brutal Pokémon\130.3\2.5\0,148,0 +Scale|1.32 +Move|1,400 +Move|1,364 +Move|1,43 +Move|1,44 +Move|1,99 +Move|1,116 +Move|6,99 +Move|8,116 +Move|11,184 +Move|16,423 +Move|18,103 +Move|21,207 +Move|26,372 +Move|28,242 +Move|30,163 +Move|34,453 +Move|40,269 +Move|45,97 +Move|50,130 +Move|56,400 +TradeValue|50 +Item|5,167 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/32.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/32.dat index 80b19d578..30bc6267d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/32.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/32.dat @@ -1 +1,50 @@ -{"Name":"Nidoran","Number":32,"ExperienceType":"MediumSlow","BaseExperience":55,"Type1":"Poison","Type2":"Blank","CatchRate":235,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":32,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[38,79],"HiddenAbility":55,"EggMoves":[133,251,498,93,68,50,203,457,231,342,389,48,36,599],"Machines":[29,174,92,249,237,241,173,59,63,182,240,203,218,231,87,216,91,189,104,207,214,188,111,197,156,213,168,32,34,36,58,68,99,85,102,117,130,164,352,351,263,290,421,416,445,363,398,468,474,496,497,590,15,70],"TutorMoves":[],"BaseStats":{"HP":46,"Atk":57,"Def":40,"SpAtk":40,"SpDef":40,"Speed":50},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is small with poison. It charges then stabs with the horn to inject poison.","Species":"Poison Pin Pokémon","Height":0.5,"Weight":9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":64},{"Level":7,"ID":116},{"Level":9,"ID":24},{"Level":13,"ID":40},{"Level":19,"ID":31},{"Level":21,"ID":30},{"Level":25,"ID":1},{"Level":31,"ID":390},{"Level":33,"ID":260},{"Level":37,"ID":398},{"Level":43,"ID":445},{"Level":45,"ID":32}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":33,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Nidoran +Number|32 +ExperienceType|2 +BaseExperience|55 +Type1|Poison +Type2| +CatchRate|235 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|32 +IsGenderLess|0 +IsMale|100 +Ability1|38 +Ability2|79 +HiddenAbility|55 +EggMoves|133,251,498,93,68,50,203,457,231,342,389,48,36,599 +Machines|29,174,92,249,237,241,173,59,63,182,240,203,218,231,87,216,91,189,104,207,214,188,111,197,156,213,168,32,34,36,58,68,99,85,102,117,130,164,352,351,263,290,421,416,445,363,398,468,474,496,497,590,15,70 +BaseHP|46 +BaseAttack|57 +BaseDefense|40 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is small with poison. It charges then stabs with the horn to inject poison.\Poison Pin Pokémon\9\0.5\0,148,0 +Scale|0.7 +Move|1,43 +Move|1,64 +Move|7,116 +Move|9,24 +Move|13,40 +Move|19,31 +Move|21,30 +Move|25,270 +Move|31,390 +Move|33,260 +Move|37,398 +Move|43,445 +Move|45,32 +EvolutionCondition|33,Level,16,Level +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/320.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/320.dat index 18128aee9..29c7986a1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/320.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/320.dat @@ -1 +1,55 @@ -{"Name":"Wailmer","Number":320,"ExperienceType":"MediumFast","BaseExperience":80,"Type1":"Water","Type2":"Blank","CatchRate":125,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Water2","BaseEggSteps":10455,"EggPokemon":320,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[41,12],"HiddenAbility":46,"EggMoves":[392,34,499,174,111,38,90,214,173,487,37,321,428,207],"Machines":[174,205,46,92,249,237,173,59,63,196,182,240,203,218,89,216,104,207,214,111,197,156,213,34,36,38,61,55,58,99,102,117,120,130,164,352,258,317,263,290,362,416,419,445,363,496,497,503,523,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":130,"Atk":70,"Def":35,"SpAtk":70,"SpDef":35,"Speed":60},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It bounces playfully like a ball. The more seawater it swallows, the higher it bounces.","Species":"Ball Whale Pokémon","Height":2,"Weight":130,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":30,"Moves":[{"Level":1,"ID":150},{"Level":4,"ID":45},{"Level":7,"ID":55},{"Level":11,"ID":205},{"Level":14,"ID":250},{"Level":17,"ID":310},{"Level":21,"ID":352},{"Level":24,"ID":54},{"Level":27,"ID":156},{"Level":31,"ID":362},{"Level":34,"ID":323},{"Level":37,"ID":133},{"Level":41,"ID":291},{"Level":44,"ID":340},{"Level":47,"ID":56},{"Level":50,"ID":484}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":321,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Wailmer +Number|320 +ExperienceType|1 +BaseExperience|80 +Type1|Water +Type2| +CatchRate|125 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Water2 +BaseEggSteps|10455 +EggPokemon|320 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|41 +Ability2|12 +HiddenAbility|46 +EggMoves|392,34,499,174,111,38,90,214,173,487,37,321,428,207 +Machines|174,205,46,92,249,237,173,59,63,196,182,240,203,218,89,216,104,207,214,111,197,156,213,34,36,38,61,55,58,99,102,117,120,130,164,352,258,317,263,290,362,416,419,445,363,496,497,503,523,590,57,70,250,127,291 +BaseHP|130 +BaseAttack|70 +BaseDefense|35 +BaseSpAttack|70 +BaseSpDefense|35 +BaseSpeed|60 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It bounces playfully like a ball. The more seawater it swallows, the higher it bounces.\Ball Whale Pokémon\130\2\0,148,0 +Scale|1.4 +Move|1,150 +Move|4,45 +Move|7,55 +Move|11,205 +Move|14,250 +Move|17,310 +Move|21,352 +Move|24,54 +Move|27,156 +Move|31,362 +Move|34,323 +Move|37,133 +Move|41,291 +Move|44,340 +Move|47,56 +Move|50,484 +TradeValue|30 +EvolutionCondition|321,level,40,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/321.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/321.dat index ce5fa1140..c28be16c9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/321.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/321.dat @@ -1 +1,57 @@ -{"Name":"Wailord","Number":321,"ExperienceType":"MediumFast","BaseExperience":175,"Type1":"Water","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Water2","BaseEggSteps":10455,"EggPokemon":320,"Devolution":320,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[41,12],"HiddenAbility":46,"EggMoves":[392,34,499,174,111,38,90,214,173,487,37,321,428,207],"Machines":[174,205,46,92,249,237,173,59,63,196,182,240,203,218,89,216,104,207,214,111,197,156,213,34,36,38,61,55,58,99,102,117,120,130,164,352,258,317,263,290,362,416,419,445,363,496,497,503,523,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":170,"Atk":90,"Def":45,"SpAtk":90,"SpDef":45,"Speed":60},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is the largest of all identified Pokémon. They jump as a pack to herd their prey.","Species":"Float Whale Pokémon","Height":14.5,"Weight":398,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":50,"Moves":[{"Level":1,"ID":150},{"Level":2,"ID":45},{"Level":3,"ID":55},{"Level":4,"ID":205},{"Level":5,"ID":45},{"Level":7,"ID":55},{"Level":11,"ID":205},{"Level":14,"ID":250},{"Level":17,"ID":310},{"Level":21,"ID":352},{"Level":24,"ID":54},{"Level":27,"ID":156},{"Level":31,"ID":362},{"Level":34,"ID":323},{"Level":37,"ID":133},{"Level":46,"ID":291},{"Level":54,"ID":340},{"Level":62,"ID":56},{"Level":70,"ID":484}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Wailord +Number|321 +ExperienceType|1 +BaseExperience|175 +Type1|Water +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Water2 +BaseEggSteps|10455 +EggPokemon|320 +IsGenderLess|0 +CanBreed|1 +Devolution|320 +IsMale|50 +Ability1|41 +Ability2|12 +HiddenAbility|46 +EggMoves|392,34,499,174,111,38,90,214,173,487,37,321,428,207 +Machines|174,205,46,92,249,237,173,59,63,196,182,240,203,218,89,216,104,207,214,111,197,156,213,34,36,38,61,55,58,99,102,117,120,130,164,352,258,317,263,290,362,416,419,445,363,496,497,503,523,590,57,70,250,127,291 +BaseHP|170 +BaseAttack|90 +BaseDefense|45 +BaseSpAttack|90 +BaseSpDefense|45 +BaseSpeed|60 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is the largest of all identified Pokémon. They jump as a pack to herd their prey.\Float Whale Pokémon\398\14.5\0,148,0 +Scale|2 +Move|1,150 +Move|1,45 +Move|1,55 +Move|1,205 +Move|4,45 +Move|7,55 +Move|11,205 +Move|14,250 +Move|17,310 +Move|21,352 +Move|24,54 +Move|27,156 +Move|31,362 +Move|34,323 +Move|37,133 +Move|46,291 +Move|54,340 +Move|62,56 +Move|70,484 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/322.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/322.dat index 2e8203f06..5663d596b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/322.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/322.dat @@ -1 +1,55 @@ -{"Name":"Numel","Number":322,"ExperienceType":"MediumFast","BaseExperience":61,"Type1":"Fire","Type2":"Ground","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":322,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[12,86],"HiddenAbility":20,"EggMoves":[246,34,111,203,74,257,336,442,426,205,184,255,254,23,256,281],"Machines":[174,205,92,249,237,241,173,63,182,203,218,89,216,189,104,207,214,126,111,197,156,213,25,34,36,38,99,90,102,117,130,164,263,290,315,416,446,445,363,488,496,510,523,267,590,70,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":60,"Def":40,"SpAtk":65,"SpDef":45,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The flaming magma it stores in the hump on its back is the source of its tremendous power.","Species":"Numb Pokémon","Height":0.7,"Weight":24,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":20,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":33},{"Level":5,"ID":52},{"Level":8,"ID":222},{"Level":12,"ID":116},{"Level":15,"ID":481},{"Level":19,"ID":133},{"Level":22,"ID":436},{"Level":26,"ID":414},{"Level":29,"ID":174},{"Level":31,"ID":36},{"Level":36,"ID":281},{"Level":40,"ID":89},{"Level":43,"ID":53},{"Level":47,"ID":38}],"EvolutionConditions":[{"Condition":"33","ConditionType":"Level","Evolution":323,"Trigger":"LevelUp"}],"Items":[{"Id":2003,"Chance":100}]} \ No newline at end of file +Name|Numel +Number|322 +ExperienceType|1 +BaseExperience|61 +Type1|Fire +Type2|Ground +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|322 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|12 +Ability2|86 +HiddenAbility|20 +EggMoves|246,34,111,203,74,257,336,442,426,205,184,255,254,23,256,281 +Machines|174,205,92,249,237,241,173,63,182,203,218,89,216,189,104,207,214,126,111,197,156,213,25,34,36,38,99,90,102,117,130,164,263,290,315,416,446,445,363,488,496,510,523,267,590,70,560 +BaseHP|60 +BaseAttack|60 +BaseDefense|40 +BaseSpAttack|65 +BaseSpDefense|45 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The flaming magma it stores in the hump on its back is the source of its tremendous power.\Numb Pokémon\24\0.7\0,148,0 +Scale|0.88 +Move|1,45 +Move|1,33 +Move|5,52 +Move|8,222 +Move|12,116 +Move|15,481 +Move|19,133 +Move|22,436 +Move|26,414 +Move|29,174 +Move|31,36 +Move|36,281 +Move|40,89 +Move|43,53 +Move|47,38 +TradeValue|20 +Item|100,2003 +EvolutionCondition|323,level,33,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/323.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/323.dat index a8d33ddbc..3774b8718 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/323.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/323.dat @@ -1 +1,59 @@ -{"Name":"Camerupt","Number":323,"ExperienceType":"MediumFast","BaseExperience":161,"Type1":"Fire","Type2":"Ground","CatchRate":150,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":322,"Devolution":322,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[40,116],"HiddenAbility":83,"EggMoves":[246,34,111,203,74,257,336,442,426,205,184,255,254,23,256,281],"Machines":[174,205,46,92,249,237,241,173,63,182,203,218,89,216,189,104,207,214,126,111,197,156,213,25,34,36,38,99,90,102,117,120,130,164,263,290,315,416,446,445,363,488,496,510,523,267,590,70,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":100,"Def":70,"SpAtk":105,"SpDef":75,"Speed":40},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives in the crater of a volcano. It is well known that the humps on its back erupt every 10 years.","Species":"Eruption Pokémon","Height":1.9,"Weight":220,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":50,"Moves":[{"Level":1,"ID":90},{"Level":2,"ID":284},{"Level":3,"ID":45},{"Level":4,"ID":33},{"Level":5,"ID":52},{"Level":6,"ID":222},{"Level":7,"ID":52},{"Level":8,"ID":222},{"Level":12,"ID":116},{"Level":15,"ID":481},{"Level":19,"ID":133},{"Level":22,"ID":436},{"Level":26,"ID":414},{"Level":29,"ID":174},{"Level":31,"ID":36},{"Level":33,"ID":157},{"Level":39,"ID":281},{"Level":46,"ID":89},{"Level":52,"ID":284},{"Level":59,"ID":90}],"EvolutionConditions":[],"Items":[{"Id":2003,"Chance":100}]} \ No newline at end of file +Name|Camerupt +Number|323 +ExperienceType|1 +BaseExperience|161 +Type1|Fire +Type2|Ground +CatchRate|150 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|322 +IsGenderLess|0 +CanBreed|1 +Devolution|322 +IsMale|50 +Ability1|40 +Ability2|116 +HiddenAbility|83 +EggMoves|246,34,111,203,74,257,336,442,426,205,184,255,254,23,256,281 +Machines|174,205,46,92,249,237,241,173,63,182,203,218,89,216,189,104,207,214,126,111,197,156,213,25,34,36,38,99,90,102,117,120,130,164,263,290,315,416,446,445,363,488,496,510,523,267,590,70,560 +BaseHP|70 +BaseAttack|100 +BaseDefense|70 +BaseSpAttack|105 +BaseSpDefense|75 +BaseSpeed|40 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives in the crater of a volcano. It is well known that the humps on its back erupt every 10 years.\Eruption Pokémon\220\1.9\0,148,0 +Scale|1.36 +Move|1,90 +Move|1,284 +Move|1,45 +Move|1,33 +Move|1,52 +Move|1,222 +Move|5,52 +Move|8,222 +Move|12,116 +Move|15,481 +Move|19,133 +Move|22,436 +Move|26,414 +Move|29,174 +Move|31,36 +Move|33,157 +Move|39,281 +Move|46,89 +Move|52,284 +Move|59,90 +TradeValue|50 +Item|100,2003 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/323_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/323_mega.dat new file mode 100644 index 000000000..3b32929bf --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/323_mega.dat @@ -0,0 +1,59 @@ +Name|Mega Camerupt +Number|323 +ExperienceType|1 +BaseExperience|161 +Type1|Fire +Type2|Ground +CatchRate|150 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|322 +IsGenderLess|0 +CanBreed|1 +Devolution|322 +IsMale|50 +Ability1|125 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|246,34,111,203,74,257,336,442,426,205,184,255,254,23,256,281 +Machines|174,205,46,92,249,237,241,173,63,182,203,218,89,216,189,104,207,214,126,111,197,156,213,25,34,36,38,99,90,102,117,120,130,164,263,290,315,416,446,445,363,488,496,510,523,267,590,70,560 +BaseHP|70 +BaseAttack|120 +BaseDefense|100 +BaseSpAttack|145 +BaseSpDefense|105 +BaseSpeed|20 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives in the crater of a volcano. It is well known that the humps on its back erupt every 10 years.\Eruption Pokémon\320.5\2.5\0,148,0 +Scale|1.36 +Move|1,90 +Move|1,284 +Move|1,45 +Move|1,33 +Move|1,52 +Move|1,222 +Move|5,52 +Move|8,222 +Move|12,116 +Move|15,481 +Move|19,133 +Move|22,436 +Move|26,414 +Move|29,174 +Move|31,36 +Move|33,157 +Move|39,281 +Move|46,89 +Move|52,284 +Move|59,90 +TradeValue|50 +Item|100,2003 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/324.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/324.dat index 0fcfc5336..654c60d33 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/324.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/324.dat @@ -1 +1,62 @@ -{"Name":"Torkoal","Number":324,"ExperienceType":"MediumFast","BaseExperience":165,"Type1":"Fire","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":324,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[73],"HiddenAbility":75,"EggMoves":[499,203,284,90,481,130,214,276,281,89],"Machines":[174,92,249,237,241,173,63,182,203,218,76,231,216,189,104,207,214,188,126,197,156,213,25,34,36,38,99,102,117,120,130,153,157,164,53,317,263,290,315,261,416,444,360,446,445,363,488,496,510,523,267,590,70,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":85,"Def":140,"SpAtk":85,"SpDef":70,"Speed":20},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"You find abandoned coal mines full of them. They dig tirelessly in search of coal.","Species":"Coal Pokémon","Height":0.5,"Weight":80.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":45,"Moves":[{"Level":1,"ID":517},{"Level":2,"ID":257},{"Level":3,"ID":182},{"Level":4,"ID":175},{"Level":5,"ID":504},{"Level":6,"ID":52},{"Level":7,"ID":123},{"Level":8,"ID":110},{"Level":12,"ID":174},{"Level":17,"ID":83},{"Level":20,"ID":108},{"Level":23,"ID":172},{"Level":25,"ID":229},{"Level":28,"ID":53},{"Level":33,"ID":34},{"Level":36,"ID":182},{"Level":39,"ID":436},{"Level":44,"ID":334},{"Level":49,"ID":133},{"Level":52,"ID":175},{"Level":55,"ID":257},{"Level":60,"ID":517},{"Level":65,"ID":504}],"EvolutionConditions":[],"Items":[{"Id":138,"Chance":5}]} \ No newline at end of file +Name|Torkoal +Number|324 +ExperienceType|1 +BaseExperience|165 +Type1|Fire +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|324 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|73 +Ability2|Nothing +HiddenAbility|75 +EggMoves|499,203,284,90,481,130,214,276,281,89 +Machines|174,92,249,237,241,173,63,182,203,218,76,231,216,189,104,207,214,188,126,197,156,213,25,34,36,38,99,102,117,120,130,153,157,164,53,317,263,290,315,261,416,444,360,446,445,363,488,496,510,523,267,590,70,560 +BaseHP|70 +BaseAttack|85 +BaseDefense|140 +BaseSpAttack|85 +BaseSpDefense|70 +BaseSpeed|20 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|You find abandoned coal mines full of them. They dig tirelessly in search of coal.\Coal Pokémon\80.4\0.5\0,148,0 +Scale|0.7 +Move|1,517 +Move|1,257 +Move|1,182 +Move|1,175 +Move|1,504 +Move|1,52 +Move|4,123 +Move|7,110 +Move|12,174 +Move|17,83 +Move|20,108 +Move|23,172 +Move|25,229 +Move|28,53 +Move|33,34 +Move|36,182 +Move|39,436 +Move|44,334 +Move|49,133 +Move|52,175 +Move|55,257 +Move|60,517 +Move|65,504 +TradeValue|45 +Item|5,138 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/325.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/325.dat index a0c9f3698..b94f24d10 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/325.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/325.dat @@ -1 +1,55 @@ -{"Name":"Spoink","Number":325,"ExperienceType":"Fast","BaseExperience":66,"Type1":"Psychic","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":325,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[47,20],"HiddenAbility":82,"EggMoves":[133,203,326,248,381,243,493,285,271,18,428,164],"Machines":[174,92,244,237,241,173,63,196,182,240,203,218,231,216,94,247,104,207,214,129,138,197,156,213,168,34,36,99,102,115,117,86,149,164,347,269,113,351,259,263,290,285,289,451,371,278,416,445,363,447,433,473,477,496,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":25,"Def":35,"SpAtk":70,"SpDef":80,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It bounces around on its tail to keep its heart pumping. It carries a pearl from CLAMPERL on its head.","Species":"Bounce Pokémon","Height":0.7,"Weight":30.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":25,"Moves":[{"Level":1,"ID":150},{"Level":7,"ID":149},{"Level":10,"ID":316},{"Level":14,"ID":60},{"Level":15,"ID":244},{"Level":18,"ID":109},{"Level":21,"ID":277},{"Level":26,"ID":428},{"Level":29,"ID":156},{"Level":30,"ID":173},{"Level":33,"ID":408},{"Level":38,"ID":473},{"Level":40,"ID":371},{"Level":44,"ID":94},{"Level":50,"ID":340}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":326,"Trigger":"LevelUp"}],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Spoink +Number|325 +ExperienceType|0 +BaseExperience|66 +Type1|Psychic +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|325 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|47 +Ability2|20 +HiddenAbility|82 +EggMoves|133,203,326,248,381,243,493,285,271,18,428,164 +Machines|174,92,244,237,241,173,63,196,182,240,203,218,231,216,94,247,104,207,214,129,138,197,156,213,168,34,36,99,102,115,117,86,149,164,347,269,113,351,259,263,290,285,289,451,371,278,416,445,363,447,433,473,477,496,590,148 +BaseHP|60 +BaseAttack|25 +BaseDefense|35 +BaseSpAttack|70 +BaseSpDefense|80 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It bounces around on its tail to keep its heart pumping. It carries a pearl from CLAMPERL on its head.\Bounce Pokémon\30.6\0.7\0,148,0 +Scale|0.88 +Move|1,150 +Move|7,149 +Move|10,316 +Move|14,60 +Move|15,244 +Move|18,109 +Move|21,277 +Move|26,428 +Move|29,156 +Move|29,173 +Move|33,408 +Move|38,473 +Move|40,371 +Move|44,94 +Move|50,340 +TradeValue|25 +Item|50,2007 +EvolutionCondition|326,level,32,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/326.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/326.dat index 9e5953b46..89d26451f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/326.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/326.dat @@ -1 +1,57 @@ -{"Name":"Grumpig","Number":326,"ExperienceType":"Fast","BaseExperience":165,"Type1":"Psychic","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":325,"Devolution":325,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[47,20],"HiddenAbility":82,"EggMoves":[133,203,326,248,381,243,493,285,271,18,428,164],"Machines":[223,174,92,244,237,241,173,63,196,182,240,203,218,231,216,94,247,189,104,8,207,214,129,9,138,197,156,213,168,7,5,34,36,38,66,68,69,99,102,115,117,130,86,149,161,164,264,347,269,113,280,351,259,263,290,285,289,411,412,374,451,409,371,278,416,445,363,447,433,473,477,496,523,612,590,148],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":45,"Def":65,"SpAtk":90,"SpDef":110,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can perform odd dance steps to influence foes. Its style of dancing became hugely popular overseas.","Species":"Manipulate Pokémon","Height":0.9,"Weight":71.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":45,"Moves":[{"Level":1,"ID":150},{"Level":2,"ID":149},{"Level":3,"ID":316},{"Level":4,"ID":60},{"Level":7,"ID":149},{"Level":10,"ID":316},{"Level":14,"ID":60},{"Level":15,"ID":244},{"Level":18,"ID":109},{"Level":21,"ID":277},{"Level":26,"ID":428},{"Level":29,"ID":156},{"Level":30,"ID":173},{"Level":35,"ID":408},{"Level":42,"ID":473},{"Level":46,"ID":371},{"Level":52,"ID":94},{"Level":60,"ID":340}],"EvolutionConditions":[],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Grumpig +Number|326 +ExperienceType|0 +BaseExperience|165 +Type1|Psychic +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|325 +IsGenderLess|0 +CanBreed|1 +Devolution|325 +IsMale|50 +Ability1|47 +Ability2|20 +HiddenAbility|82 +EggMoves|133,203,326,248,381,243,493,285,271,18,428,164 +Machines|223,174,92,244,237,241,173,63,196,182,240,203,218,231,216,94,247,189,104,8,207,214,129,9,138,197,156,213,168,7,5,34,36,38,66,68,69,99,102,115,117,130,86,149,161,164,264,347,269,113,280,351,259,263,290,285,289,411,412,374,451,409,371,278,416,445,363,447,433,473,477,496,523,612,590,148 +BaseHP|80 +BaseAttack|45 +BaseDefense|65 +BaseSpAttack|90 +BaseSpDefense|110 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can perform odd dance steps to influence foes. Its style of dancing became hugely popular overseas.\Manipulate Pokémon\71.5\0.9\0,148,0 +Scale|0.96 +Move|1,150 +Move|1,149 +Move|1,316 +Move|1,60 +Move|7,149 +Move|10,316 +Move|14,60 +Move|15,244 +Move|18,109 +Move|21,277 +Move|26,428 +Move|29,156 +Move|29,173 +Move|35,408 +Move|42,473 +Move|46,371 +Move|52,94 +Move|60,340 +TradeValue|45 +Item|50,2007 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/327.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/327.dat index aa2c06b8b..152e77cc0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/327.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/327.dat @@ -1 +1,52 @@ -{"Name":"Spinda","Number":327,"ExperienceType":"Fast","BaseExperience":126,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"HumanLike","BaseEggSteps":4080,"EggPokemon":327,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[20,77],"HiddenAbility":126,"EggMoves":[274,226,50,227,313,470,196,427,375,229,272,265,271,352,273,252,157],"Machines":[223,174,205,92,249,244,237,241,173,63,196,182,240,203,218,216,91,94,247,189,104,8,207,214,129,111,9,138,197,156,213,168,7,171,5,34,36,6,66,68,69,99,102,117,118,149,157,161,164,264,352,219,280,351,317,263,290,285,289,374,409,278,416,445,363,433,496,514,526,528,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":60,"Def":60,"SpAtk":60,"SpDef":60,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The chances of two SPINDA having identical spot patterns is less than one in four billion.","Species":"Spot Panda Pokémon","Height":1.1,"Weight":5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":35,"Moves":[{"Level":1,"ID":33},{"Level":5,"ID":253},{"Level":10,"ID":1},{"Level":14,"ID":185},{"Level":19,"ID":60},{"Level":23,"ID":95},{"Level":28,"ID":146},{"Level":32,"ID":389},{"Level":37,"ID":298},{"Level":41,"ID":244},{"Level":46,"ID":38},{"Level":50,"ID":175},{"Level":51,"ID":37}],"EvolutionConditions":[],"Items":[{"Id":2001,"Chance":5}]} \ No newline at end of file +Name|Spinda +Number|327 +ExperienceType|0 +BaseExperience|126 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|4080 +EggPokemon|327 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|20 +Ability2|77 +HiddenAbility|126 +EggMoves|274,226,50,227,313,470,196,427,375,229,272,265,271,352,273,252,157 +Machines|223,174,205,92,249,244,237,241,173,63,196,182,240,203,218,216,91,94,247,189,104,8,207,214,129,111,9,138,197,156,213,168,7,171,5,34,36,6,66,68,69,99,102,117,118,149,157,161,164,264,352,219,280,351,317,263,290,285,289,374,409,278,416,445,363,433,496,514,526,528,612,590,70,148 +BaseHP|60 +BaseAttack|60 +BaseDefense|60 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The chances of two SPINDA having identical spot patterns is less than one in four billion.\Spot Panda Pokémon\5\1.1\0,148,0 +Scale|1.04 +Move|1,33 +Move|5,253 +Move|10,383 +Move|14,185 +Move|19,60 +Move|23,95 +Move|28,146 +Move|32,389 +Move|37,298 +Move|41,244 +Move|46,38 +Move|50,175 +Move|50,37 +TradeValue|35 +Item|5,2001 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/328.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/328.dat index 7e23413cf..896d5f024 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/328.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/328.dat @@ -1 +1,60 @@ -{"Name":"Trapinch","Number":328,"ExperienceType":"MediumSlow","BaseExperience":58,"Type1":"Ground","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":328,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[52,71],"HiddenAbility":125,"EggMoves":[450,414,203,175,116,210,16,341,98,324],"Machines":[174,92,249,237,241,173,63,182,202,203,218,76,225,89,216,91,189,104,207,214,201,197,156,213,210,34,36,99,90,102,117,157,164,317,263,290,416,445,363,496,522,523,590],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":100,"Def":45,"SpAtk":45,"SpDef":45,"Speed":10},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its nest is a sloped, bowl-like pit in the desert. Once something has fallen in, there is no escape.","Species":"Ant Pit Pokémon","Height":0.7,"Weight":15,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":25,"Moves":[{"Level":1,"ID":90},{"Level":2,"ID":276},{"Level":3,"ID":364},{"Level":4,"ID":44},{"Level":5,"ID":28},{"Level":7,"ID":185},{"Level":10,"ID":328},{"Level":13,"ID":189},{"Level":17,"ID":117},{"Level":21,"ID":523},{"Level":25,"ID":157},{"Level":29,"ID":91},{"Level":34,"ID":242},{"Level":39,"ID":414},{"Level":44,"ID":201},{"Level":49,"ID":63},{"Level":55,"ID":89},{"Level":61,"ID":364},{"Level":67,"ID":276},{"Level":73,"ID":90}],"EvolutionConditions":[{"Condition":"35","ConditionType":"Level","Evolution":329,"Trigger":"LevelUp"}],"Items":[{"Id":76,"Chance":5}]} \ No newline at end of file +Name|Trapinch +Number|328 +ExperienceType|2 +BaseExperience|58 +Type1|Ground +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|328 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|52 +Ability2|71 +HiddenAbility|125 +EggMoves|450,414,203,175,116,210,16,341,98,324 +Machines|174,92,249,237,241,173,63,182,202,203,218,76,225,89,216,91,189,104,207,214,201,197,156,213,210,34,36,99,90,102,117,157,164,317,263,290,416,445,363,496,522,523,590 +BaseHP|45 +BaseAttack|100 +BaseDefense|45 +BaseSpAttack|45 +BaseSpDefense|45 +BaseSpeed|10 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its nest is a sloped, bowl-like pit in the desert. Once something has fallen in, there is no escape.\Ant Pit Pokémon\15\0.7\0,148,0 +Scale|0.88 +Move|1,90 +Move|1,276 +Move|1,364 +Move|1,44 +Move|4,28 +Move|7,185 +Move|10,328 +Move|13,189 +Move|17,117 +Move|21,523 +Move|25,157 +Move|29,91 +Move|34,242 +Move|39,414 +Move|44,201 +Move|49,63 +Move|55,89 +Move|61,364 +Move|67,276 +Move|73,90 +TradeValue|25 +Item|5,76 +EvolutionCondition|329,level,35,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/329.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/329.dat index 3163309b9..7e43ea264 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/329.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/329.dat @@ -1 +1,58 @@ -{"Name":"Vibrava","Number":329,"ExperienceType":"MediumSlow","BaseExperience":119,"Type1":"Ground","Type2":"Dragon","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":328,"Devolution":328,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[450,414,203,175,116,210,16,341,98,324],"Machines":[174,92,249,237,241,173,63,182,202,203,218,76,225,89,216,91,189,104,207,214,201,129,197,156,213,211,210,13,18,34,36,99,82,90,102,117,157,164,317,263,290,355,406,318,416,432,445,363,369,496,522,523,590,19,70,560],"TutorMoves":[434],"BaseStats":{"HP":50,"Atk":70,"Def":50,"SpAtk":50,"SpDef":50,"Speed":70},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It vibrates its wings vigorously creating ultrasonic waves that cause serious headaches.","Species":"Vibration Pokémon","Height":1.1,"Weight":15.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":45,"Moves":[{"Level":1,"ID":49},{"Level":2,"ID":28},{"Level":3,"ID":185},{"Level":4,"ID":328},{"Level":5,"ID":28},{"Level":7,"ID":185},{"Level":10,"ID":328},{"Level":13,"ID":189},{"Level":17,"ID":117},{"Level":21,"ID":523},{"Level":25,"ID":157},{"Level":29,"ID":48},{"Level":34,"ID":103},{"Level":35,"ID":225},{"Level":39,"ID":414},{"Level":44,"ID":201},{"Level":49,"ID":63}],"EvolutionConditions":[{"Condition":"45","ConditionType":"Level","Evolution":330,"Trigger":"LevelUp"}],"Items":[{"Id":76,"Chance":5}]} \ No newline at end of file +Name|Vibrava +Number|329 +ExperienceType|2 +BaseExperience|119 +Type1|Ground +Type2|Dragon +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|328 +IsGenderLess|0 +CanBreed|1 +Devolution|328 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|450,414,203,175,116,210,16,341,98,324 +Machines|174,92,249,237,241,173,63,182,202,203,218,76,225,89,216,91,189,104,207,214,201,129,197,156,213,211,210,13,18,34,36,99,82,90,102,117,157,164,317,263,290,355,406,318,416,432,445,363,369,496,522,523,590,19,70,560 +TutorMoves|434 +BaseHP|50 +BaseAttack|70 +BaseDefense|50 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|70 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It vibrates its wings vigorously creating ultrasonic waves that cause serious headaches.\Vibration Pokémon\15.3\1.1\0,148,0 +Scale|1.04 +Move|1,49 +Move|1,28 +Move|1,185 +Move|1,328 +Move|4,28 +Move|7,185 +Move|10,328 +Move|13,189 +Move|17,117 +Move|21,523 +Move|25,157 +Move|29,48 +Move|34,103 +Move|35,225 +Move|39,414 +Move|44,201 +Move|49,63 +TradeValue|45 +Item|5,76 +EvolutionCondition|330,level,45,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/33.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/33.dat index d97ed8944..1a3c5318c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/33.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/33.dat @@ -1 +1,50 @@ -{"Name":"Nidorino","Number":33,"ExperienceType":"MediumSlow","BaseExperience":128,"Type1":"Poison","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":32,"Devolution":32,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[38,79],"HiddenAbility":55,"EggMoves":[133,251,498,93,68,50,203,457,231,342,389,48,36,599],"Machines":[29,174,46,92,249,237,241,173,59,63,182,240,203,218,231,87,216,91,189,104,207,214,188,111,197,156,213,168,32,34,36,61,55,58,68,99,85,102,117,130,164,352,351,263,290,421,416,445,363,398,468,474,496,497,590,15,70,560],"TutorMoves":[],"BaseStats":{"HP":61,"Atk":72,"Def":57,"SpAtk":55,"SpDef":55,"Speed":65},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It raises its big ears to check its surroundings. If it senses anything, it attacks immediately.","Species":"Poison Pin Pokémon","Height":0.9,"Weight":19.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":25,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":64},{"Level":7,"ID":116},{"Level":9,"ID":24},{"Level":13,"ID":40},{"Level":20,"ID":31},{"Level":23,"ID":30},{"Level":28,"ID":1},{"Level":35,"ID":390},{"Level":38,"ID":260},{"Level":43,"ID":398},{"Level":50,"ID":445},{"Level":58,"ID":32}],"EvolutionConditions":[{"Condition":"8","ConditionType":"Item","Evolution":34,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Nidorino +Number|33 +ExperienceType|2 +BaseExperience|128 +Type1|Poison +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|32 +IsGenderLess|0 +IsMale|100 +Ability1|38 +Ability2|79 +HiddenAbility|55 +EggMoves|133,251,498,93,68,50,203,457,231,342,389,48,36,599 +Machines|29,174,46,92,249,237,241,173,59,63,182,240,203,218,231,87,216,91,189,104,207,214,188,111,197,156,213,168,32,34,36,61,55,58,68,99,85,102,117,130,164,352,351,263,290,421,416,445,363,398,468,474,496,497,590,15,70,560 +BaseHP|61 +BaseAttack|72 +BaseDefense|57 +BaseSpAttack|55 +BaseSpDefense|55 +BaseSpeed|65 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It raises its big ears to check its surroundings. If it senses anything, it attacks immediately.\Poison Pin Pokémon\19.5\0.9\0,148,0 +Scale|0.96 +Move|1,43 +Move|1,64 +Move|7,116 +Move|9,24 +Move|13,40 +Move|20,31 +Move|23,30 +Move|28,270 +Move|35,390 +Move|38,260 +Move|43,398 +Move|50,445 +Move|58,32 +EvolutionCondition|34,item,8,item +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/330.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/330.dat index bd8f3b634..9a10a616e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/330.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/330.dat @@ -1 +1,58 @@ -{"Name":"Flygon","Number":330,"ExperienceType":"MediumSlow","BaseExperience":234,"Type1":"Ground","Type2":"Dragon","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":328,"Devolution":329,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[450,414,203,175,116,210,16,341,98,324],"Machines":[174,92,249,237,241,173,63,182,202,203,218,76,231,225,89,216,91,189,104,207,214,201,126,129,9,197,156,213,211,7,210,13,18,34,36,38,66,69,99,82,90,102,117,143,157,164,337,53,317,332,263,290,355,406,318,416,432,444,445,363,369,468,496,510,522,523,525,612,590,19,70,560],"TutorMoves":[434],"BaseStats":{"HP":80,"Atk":100,"Def":80,"SpAtk":80,"SpDef":80,"Speed":100},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is nicknamed \"The Desert Spirit\" because the flapping of its wings sounds like a woman singing.","Species":"Mystic Pokémon","Height":2,"Weight":82,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":70,"Moves":[{"Level":1,"ID":49},{"Level":2,"ID":28},{"Level":3,"ID":185},{"Level":4,"ID":328},{"Level":5,"ID":28},{"Level":7,"ID":185},{"Level":10,"ID":328},{"Level":13,"ID":189},{"Level":17,"ID":117},{"Level":21,"ID":523},{"Level":25,"ID":157},{"Level":29,"ID":48},{"Level":34,"ID":103},{"Level":35,"ID":225},{"Level":39,"ID":414},{"Level":44,"ID":201},{"Level":45,"ID":525},{"Level":49,"ID":63},{"Level":55,"ID":337}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Flygon +Number|330 +ExperienceType|2 +BaseExperience|234 +Type1|Ground +Type2|Dragon +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|328 +IsGenderLess|0 +CanBreed|1 +Devolution|329 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|450,414,203,175,116,210,16,341,98,324 +Machines|174,92,249,237,241,173,63,182,202,203,218,76,231,225,89,216,91,189,104,207,214,201,126,129,9,197,156,213,211,7,210,13,18,34,36,38,66,69,99,82,90,102,117,143,157,164,337,53,317,332,263,290,355,406,318,416,432,444,445,363,369,468,496,510,522,523,525,612,590,19,70,560 +TutorMoves|434 +BaseHP|80 +BaseAttack|100 +BaseDefense|80 +BaseSpAttack|80 +BaseSpDefense|80 +BaseSpeed|100 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It is nicknamed "The Desert Spirit" because the flapping of its wings sounds like a woman singing.\Mystic Pokémon\82\2\0,148,0 +Scale|1.4 +Move|1,49 +Move|1,28 +Move|1,185 +Move|1,328 +Move|4,28 +Move|7,185 +Move|10,328 +Move|13,189 +Move|17,117 +Move|21,523 +Move|25,157 +Move|29,48 +Move|34,103 +Move|35,225 +Move|39,414 +Move|44,201 +Move|45,525 +Move|49,63 +Move|55,337 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/331.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/331.dat index ccbce09d8..305d4f56b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/331.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/331.dat @@ -1 +1,56 @@ -{"Name":"Cacnea","Number":331,"ExperienceType":"MediumSlow","BaseExperience":67,"Type1":"Grass","Type2":"Blank","CatchRate":190,"BaseFriendship":35,"EggGroup1":"Grass","EggGroup2":"HumanLike","BaseEggSteps":5355,"EggPokemon":331,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[8],"HiddenAbility":11,"EggMoves":[51,562,335,68,50,223,565,67,345,417,563,402,265,415,298,388,320],"Machines":[223,174,92,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,201,9,197,156,213,210,5,25,34,36,68,99,72,102,117,164,264,331,263,290,412,409,416,445,399,363,496,267,612,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":85,"Def":40,"SpAtk":85,"SpDef":40,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives in arid locations. Its yellow flowers bloom once a year.","Species":"Cactus Pokémon","Height":0.4,"Weight":51.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":40},{"Level":2,"ID":43},{"Level":5,"ID":71},{"Level":9,"ID":74},{"Level":13,"ID":73},{"Level":17,"ID":28},{"Level":21,"ID":42},{"Level":25,"ID":275},{"Level":29,"ID":185},{"Level":33,"ID":191},{"Level":37,"ID":389},{"Level":41,"ID":371},{"Level":45,"ID":302},{"Level":49,"ID":178},{"Level":53,"ID":201},{"Level":57,"ID":194}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":332,"Trigger":"LevelUp"}],"Items":[{"Id":70,"Chance":5}]} \ No newline at end of file +Name|Cacnea +Number|331 +ExperienceType|2 +BaseExperience|67 +Type1|Grass +Type2| +CatchRate|190 +BaseFriendship|35 +EggGroup1|Grass +EggGroup2|HumanLike +BaseEggSteps|5355 +EggPokemon|331 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|8 +Ability2|Nothing +HiddenAbility|11 +EggMoves|51,562,335,68,50,223,565,67,345,417,563,402,265,415,298,388,320 +Machines|223,174,92,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,201,9,197,156,213,210,5,25,34,36,68,99,72,102,117,164,264,331,263,290,412,409,416,445,399,363,496,267,612,590,148 +BaseHP|50 +BaseAttack|85 +BaseDefense|40 +BaseSpAttack|85 +BaseSpDefense|40 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives in arid locations. Its yellow flowers bloom once a year.\Cactus Pokémon\51.3\0.4\0,148,0 +Scale|0.7 +Move|1,40 +Move|1,43 +Move|5,71 +Move|9,74 +Move|13,73 +Move|17,28 +Move|21,42 +Move|25,275 +Move|29,185 +Move|33,191 +Move|37,389 +Move|41,371 +Move|45,302 +Move|49,178 +Move|53,201 +Move|57,194 +TradeValue|25 +Item|5,70 +EvolutionCondition|332,level,32,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/332.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/332.dat index d61b2528f..073d9e311 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/332.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/332.dat @@ -1 +1,59 @@ -{"Name":"Cacturne","Number":332,"ExperienceType":"MediumSlow","BaseExperience":166,"Type1":"Grass","Type2":"Dark","CatchRate":60,"BaseFriendship":35,"EggGroup1":"Grass","EggGroup2":"HumanLike","BaseEggSteps":5355,"EggPokemon":331,"Devolution":331,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[8],"HiddenAbility":11,"EggMoves":[51,562,335,68,50,223,565,67,345,417,563,402,265,415,298,388,320],"Machines":[223,174,92,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,201,9,197,156,213,210,5,25,34,36,38,66,68,69,99,72,102,117,130,164,264,331,263,290,411,412,409,373,416,445,399,363,496,267,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":115,"Def":60,"SpAtk":115,"SpDef":60,"Speed":55},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Packs of them follow travelers through the desert until the travelers can no longer move.","Species":"Scarecrow Pokémon","Height":1.3,"Weight":77.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":55,"Moves":[{"Level":1,"ID":194},{"Level":2,"ID":279},{"Level":3,"ID":40},{"Level":4,"ID":43},{"Level":5,"ID":71},{"Level":6,"ID":74},{"Level":7,"ID":71},{"Level":9,"ID":74},{"Level":13,"ID":73},{"Level":17,"ID":28},{"Level":21,"ID":42},{"Level":25,"ID":275},{"Level":29,"ID":185},{"Level":35,"ID":191},{"Level":41,"ID":389},{"Level":47,"ID":371},{"Level":53,"ID":302},{"Level":59,"ID":178},{"Level":65,"ID":201},{"Level":71,"ID":194}],"EvolutionConditions":[],"Items":[{"Id":70,"Chance":5}]} \ No newline at end of file +Name|Cacturne +Number|332 +ExperienceType|2 +BaseExperience|166 +Type1|Grass +Type2|Dark +CatchRate|60 +BaseFriendship|35 +EggGroup1|Grass +EggGroup2|HumanLike +BaseEggSteps|5355 +EggPokemon|331 +IsGenderLess|0 +CanBreed|1 +Devolution|331 +IsMale|50 +Ability1|8 +Ability2|Nothing +HiddenAbility|11 +EggMoves|51,562,335,68,50,223,565,67,345,417,563,402,265,415,298,388,320 +Machines|223,174,92,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,201,9,197,156,213,210,5,25,34,36,38,66,68,69,99,72,102,117,130,164,264,331,263,290,411,412,409,373,416,445,399,363,496,267,612,590,70,148 +BaseHP|70 +BaseAttack|115 +BaseDefense|60 +BaseSpAttack|115 +BaseSpDefense|60 +BaseSpeed|55 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Packs of them follow travelers through the desert until the travelers can no longer move.\Scarecrow Pokémon\77.4\1.3\0,148,0 +Scale|1.12 +Move|1,194 +Move|1,279 +Move|1,40 +Move|1,43 +Move|1,71 +Move|1,74 +Move|5,71 +Move|9,74 +Move|13,73 +Move|17,28 +Move|21,42 +Move|25,275 +Move|29,185 +Move|35,191 +Move|41,389 +Move|47,371 +Move|53,302 +Move|59,178 +Move|65,201 +Move|71,194 +TradeValue|55 +Item|5,70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/333.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/333.dat index cfc6dbf2c..dca10dea5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/333.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/333.dat @@ -1 +1,55 @@ -{"Name":"Swablu","Number":333,"ExperienceType":"MediumFast","BaseExperience":62,"Type1":"Normal","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":333,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[30],"HiddenAbility":13,"EggMoves":[97,407,297,114,304,384,228,99,355,211],"Machines":[174,92,244,237,241,173,63,182,240,203,218,76,225,216,189,104,207,214,129,138,197,156,213,168,211,13,18,34,36,58,99,82,102,117,143,164,219,332,263,290,355,406,416,445,363,365,496,497,605,590,19],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":40,"Def":60,"SpAtk":40,"SpDef":75,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its wings bring cottony clouds to mind. It grooms with springwater and loves to sit on heads.","Species":"Cotton Bird Pokémon","Height":0.4,"Weight":1.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":64},{"Level":2,"ID":45},{"Level":4,"ID":310},{"Level":8,"ID":47},{"Level":10,"ID":31},{"Level":13,"ID":219},{"Level":15,"ID":54},{"Level":18,"ID":1},{"Level":21,"ID":363},{"Level":25,"ID":36},{"Level":29,"ID":287},{"Level":34,"ID":119},{"Level":39,"ID":538},{"Level":42,"ID":406},{"Level":48,"ID":195},{"Level":50,"ID":585}],"EvolutionConditions":[{"Condition":"35","ConditionType":"Level","Evolution":334,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Swablu +Number|333 +ExperienceType|1 +BaseExperience|62 +Type1|Normal +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|333 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|30 +Ability2|Nothing +HiddenAbility|13 +EggMoves|97,407,297,114,304,384,228,99,355,211 +Machines|174,92,244,237,241,173,63,182,240,203,218,76,225,216,189,104,207,214,129,138,197,156,213,168,211,13,18,34,36,58,99,82,102,117,143,164,219,332,263,290,355,406,416,445,363,365,496,497,605,590,19 +BaseHP|45 +BaseAttack|40 +BaseDefense|60 +BaseSpAttack|40 +BaseSpDefense|75 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its wings bring cottony clouds to mind. It grooms with springwater and loves to sit on heads.\Cotton Bird Pokémon\1.2\0.4\0,148,0 +Scale|0.7 +Move|1,64 +Move|1,45 +Move|4,310 +Move|8,47 +Move|10,31 +Move|13,219 +Move|15,54 +Move|18,496 +Move|21,363 +Move|25,36 +Move|29,287 +Move|34,119 +Move|39,538 +Move|42,406 +Move|48,195 +Move|50,585 +TradeValue|25 +EvolutionCondition|334,Level,35,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/334.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/334.dat index 0f1ceac0e..cbbe61f04 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/334.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/334.dat @@ -1 +1,61 @@ -{"Name":"Altaria","Number":334,"ExperienceType":"MediumFast","BaseExperience":172,"Type1":"Dragon","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":333,"Devolution":333,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[30],"HiddenAbility":13,"EggMoves":[97,407,297,114,304,384,228,99,355,211],"Machines":[174,46,92,249,244,237,241,173,63,182,240,203,218,76,231,225,216,189,104,207,214,126,129,138,197,156,213,168,211,13,18,34,36,58,99,82,102,117,130,143,164,337,219,53,332,263,290,355,406,416,445,363,365,468,496,497,510,523,605,590,19],"TutorMoves":[434],"BaseStats":{"HP":75,"Atk":70,"Def":90,"SpAtk":70,"SpDef":105,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It flies gracefully through the sky. Its melodic humming makes you feel like you're in a dream.","Species":"Humming Pokémon","Height":1.1,"Weight":20.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":45,"Moves":[{"Level":1,"ID":143},{"Level":2,"ID":365},{"Level":3,"ID":64},{"Level":4,"ID":45},{"Level":5,"ID":310},{"Level":6,"ID":47},{"Level":7,"ID":310},{"Level":8,"ID":47},{"Level":10,"ID":31},{"Level":13,"ID":219},{"Level":15,"ID":54},{"Level":18,"ID":1},{"Level":21,"ID":363},{"Level":25,"ID":36},{"Level":29,"ID":287},{"Level":34,"ID":349},{"Level":35,"ID":225},{"Level":42,"ID":538},{"Level":48,"ID":406},{"Level":57,"ID":195},{"Level":60,"ID":585},{"Level":64,"ID":143}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Altaria +Number|334 +ExperienceType|1 +BaseExperience|172 +Type1|Dragon +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|333 +IsGenderLess|0 +CanBreed|1 +Devolution|333 +IsMale|50 +Ability1|30 +Ability2|Nothing +HiddenAbility|13 +EggMoves|97,407,297,114,304,384,228,99,355,211 +Machines|174,46,92,249,244,237,241,173,63,182,240,203,218,76,231,225,216,189,104,207,214,126,129,138,197,156,213,168,211,13,18,34,36,58,99,82,102,117,130,143,164,337,219,53,332,263,290,355,406,416,445,363,365,468,496,497,510,523,605,590,19 +TutorMoves|434 +BaseHP|75 +BaseAttack|70 +BaseDefense|90 +BaseSpAttack|70 +BaseSpDefense|105 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It flies gracefully through the sky. Its melodic humming makes you feel like you're in a dream.\Humming Pokémon\20.6\1.1\0,148,0 +Scale|1.04 +Move|1,143 +Move|1,365 +Move|1,64 +Move|1,45 +Move|1,310 +Move|1,47 +Move|4,310 +Move|8,47 +Move|10,31 +Move|13,219 +Move|15,54 +Move|18,496 +Move|21,363 +Move|25,36 +Move|29,287 +Move|34,349 +Move|35,225 +Move|42,538 +Move|48,406 +Move|57,195 +Move|60,585 +Move|64,143 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/334_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/334_mega.dat new file mode 100644 index 000000000..1dcff7ef2 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/334_mega.dat @@ -0,0 +1,61 @@ +Name|Mega Altaria +Number|334 +ExperienceType|1 +BaseExperience|172 +Type1|Dragon +Type2|Fairy +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|333 +IsGenderLess|0 +CanBreed|1 +Devolution|333 +IsMale|50 +Ability1|182 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|97,407,297,114,304,384,228,99,355,211 +Machines|174,46,92,249,244,237,241,173,63,182,240,203,218,76,231,225,216,189,104,207,214,126,129,138,197,156,213,168,211,13,18,34,36,58,99,82,102,117,130,143,164,337,219,53,332,263,290,355,406,416,445,363,365,468,496,497,510,523,605,590,19 +TutorMoves|434 +BaseHP|75 +BaseAttack|110 +BaseDefense|110 +BaseSpAttack|110 +BaseSpDefense|105 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It flies gracefully through the sky. Its melodic humming makes you feel like you're in a dream.\Humming Pokémon\20.6\1.5\0,148,0 +Scale|1.04 +Move|1,143 +Move|1,365 +Move|1,64 +Move|1,45 +Move|1,310 +Move|1,47 +Move|4,310 +Move|8,47 +Move|10,31 +Move|13,219 +Move|15,54 +Move|18,496 +Move|21,363 +Move|25,36 +Move|29,287 +Move|34,349 +Move|35,225 +Move|42,538 +Move|48,406 +Move|57,195 +Move|60,585 +Move|64,143 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/335.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/335.dat index 103fe6716..ca2df3fce 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/335.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/335.dat @@ -1 +1,54 @@ -{"Name":"Zangoose","Number":335,"ExperienceType":"MediumFast","BaseExperience":160,"Type1":"Normal","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":335,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[17],"HiddenAbility":137,"EggMoves":[68,174,50,458,24,364,515,175,154,231,232,400,501,13,46],"Machines":[223,174,205,46,92,249,237,241,173,59,63,196,182,240,202,203,218,76,231,87,216,91,247,189,104,8,207,214,126,129,111,9,197,156,213,168,7,210,5,14,25,34,36,38,61,55,58,6,66,68,69,99,85,102,117,118,130,157,164,264,337,352,269,280,351,53,317,332,263,290,411,206,374,373,421,371,416,445,404,363,398,468,496,510,514,526,612,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":73,"Atk":115,"Def":60,"SpAtk":60,"SpDef":60,"Speed":90},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its fur would all stand on end if it smelled a SEVIPER nearby. Its sharp claws tear up its foes.","Species":"Cat Ferret Pokémon","Height":1.3,"Weight":40.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":40,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":5,"ID":98},{"Level":8,"ID":210},{"Level":12,"ID":228},{"Level":15,"ID":163},{"Level":19,"ID":373},{"Level":22,"ID":306},{"Level":26,"ID":279},{"Level":29,"ID":206},{"Level":33,"ID":197},{"Level":36,"ID":404},{"Level":40,"ID":269},{"Level":43,"ID":14},{"Level":47,"ID":370}],"EvolutionConditions":[],"Items":[{"Id":73,"Chance":5}]} \ No newline at end of file +Name|Zangoose +Number|335 +ExperienceType|1 +BaseExperience|160 +Type1|Normal +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|335 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|17 +Ability2|Nothing +HiddenAbility|137 +EggMoves|68,174,50,458,24,364,515,175,154,231,232,400,501,13,46 +Machines|223,174,205,46,92,249,237,241,173,59,63,196,182,240,202,203,218,76,231,87,216,91,247,189,104,8,207,214,126,129,111,9,197,156,213,168,7,210,5,14,25,34,36,38,61,55,58,6,66,68,69,99,85,102,117,118,130,157,164,264,337,352,269,280,351,53,317,332,263,290,411,206,374,373,421,371,416,445,404,363,398,468,496,510,514,526,612,590,15,70,431 +BaseHP|73 +BaseAttack|115 +BaseDefense|60 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|90 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its fur would all stand on end if it smelled a SEVIPER nearby. Its sharp claws tear up its foes.\Cat Ferret Pokémon\40.3\1.3\0,148,0 +Scale|1.12 +Move|1,10 +Move|1,43 +Move|5,98 +Move|8,210 +Move|12,228 +Move|15,163 +Move|19,373 +Move|22,306 +Move|26,279 +Move|29,206 +Move|33,197 +Move|36,404 +Move|40,269 +Move|43,14 +Move|47,370 +TradeValue|40 +Item|5,73 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/336.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/336.dat index 2d041132d..659929ddc 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/336.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/336.dat @@ -1 +1,57 @@ -{"Name":"Seviper","Number":336,"ExperienceType":"MediumFast","BaseExperience":160,"Type1":"Poison","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":336,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61],"HiddenAbility":151,"EggMoves":[372,515,231,400,386,184,255,254,256,415,378,34],"Machines":[174,92,249,237,241,173,63,182,240,202,203,218,231,225,89,216,91,189,104,207,214,188,129,197,156,213,168,210,34,36,38,99,72,82,90,102,117,130,164,269,53,263,290,289,371,416,445,399,404,363,398,474,482,496,514,523,525,611,590,70],"TutorMoves":[],"BaseStats":{"HP":73,"Atk":100,"Def":60,"SpAtk":100,"SpDef":60,"Speed":65},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"In battle counter any ZANGOOSE. It secretes a deadly venom in its tail.","Species":"Fang Snake Pokémon","Height":2.7,"Weight":52.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.68,"Y":1.68,"Z":1.68},"TradeValue":40,"Moves":[{"Level":1,"ID":35},{"Level":2,"ID":207},{"Level":5,"ID":44},{"Level":9,"ID":122},{"Level":12,"ID":342},{"Level":16,"ID":103},{"Level":20,"ID":474},{"Level":23,"ID":137},{"Level":27,"ID":305},{"Level":28,"ID":1},{"Level":31,"ID":400},{"Level":34,"ID":1},{"Level":38,"ID":114},{"Level":42,"ID":398},{"Level":45,"ID":242},{"Level":46,"ID":1},{"Level":48,"ID":489},{"Level":50,"ID":378}],"EvolutionConditions":[],"Items":[{"Id":2007,"Chance":100}]} \ No newline at end of file +Name|Seviper +Number|336 +ExperienceType|1 +BaseExperience|160 +Type1|Poison +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|336 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|61 +Ability2|Nothing +HiddenAbility|151 +EggMoves|372,515,231,400,386,184,255,254,256,415,378,34 +Machines|174,92,249,237,241,173,63,182,240,202,203,218,231,225,89,216,91,189,104,207,214,188,129,197,156,213,168,210,34,36,38,99,72,82,90,102,117,130,164,269,53,263,290,289,371,416,445,399,404,363,398,474,482,496,514,523,525,611,590,70 +BaseHP|73 +BaseAttack|100 +BaseDefense|60 +BaseSpAttack|100 +BaseSpDefense|60 +BaseSpeed|65 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|In battle counter any ZANGOOSE. It secretes a deadly venom in its tail.\Fang Snake Pokémon\52.5\2.7\0,148,0 +Scale|1.68 +Move|1,35 +Move|1,207 +Move|5,44 +Move|9,122 +Move|12,342 +Move|16,103 +Move|20,474 +Move|23,137 +Move|27,305 +Move|28,599 +Move|31,400 +Move|34,380 +Move|38,114 +Move|42,398 +Move|45,242 +Move|46,562 +Move|48,489 +Move|50,378 +TradeValue|40 +Item|100,2007 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/337.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/337.dat index f14acbe72..e356d8057 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/337.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/337.dat @@ -1 +1,57 @@ -{"Name":"Lunatone","Number":337,"ExperienceType":"Fast","BaseExperience":154,"Type1":"Rock","Type2":"Psychic","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":337,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,205,92,244,237,173,59,63,196,182,240,203,218,89,216,94,247,104,207,214,201,129,111,138,197,156,213,34,36,38,58,99,100,102,115,117,120,149,153,157,161,164,347,113,219,317,263,290,285,451,373,278,416,397,444,360,446,445,363,447,433,473,477,479,496,512,523,590,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":55,"Def":65,"SpAtk":95,"SpDef":85,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It was discovered at the site of a meteor strike 40 years ago. Its stare can lull its foes to sleep.","Species":"Meteorite Pokémon","Height":1,"Weight":168,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":88},{"Level":3,"ID":33},{"Level":4,"ID":106},{"Level":5,"ID":93},{"Level":6,"ID":88},{"Level":9,"ID":95},{"Level":13,"ID":397},{"Level":17,"ID":149},{"Level":21,"ID":373},{"Level":25,"ID":157},{"Level":29,"ID":322},{"Level":33,"ID":94},{"Level":37,"ID":377},{"Level":41,"ID":444},{"Level":45,"ID":248},{"Level":49,"ID":153},{"Level":50,"ID":585},{"Level":53,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":8,"Chance":5}]} \ No newline at end of file +Name|Lunatone +Number|337 +ExperienceType|0 +BaseExperience|154 +Type1|Rock +Type2|Psychic +CatchRate|45 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|337 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,205,92,244,237,173,59,63,196,182,240,203,218,89,216,94,247,104,207,214,201,129,111,138,197,156,213,34,36,38,58,99,100,102,115,117,120,149,153,157,161,164,347,113,219,317,263,290,285,451,373,278,416,397,444,360,446,445,363,447,433,473,477,479,496,512,523,590,148 +BaseHP|70 +BaseAttack|55 +BaseDefense|65 +BaseSpAttack|95 +BaseSpDefense|85 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It was discovered at the site of a meteor strike 40 years ago. Its stare can lull its foes to sleep.\Meteorite Pokémon\168\1\0,148,0 +Scale|1 +Move|1,478 +Move|1,88 +Move|1,33 +Move|1,106 +Move|1,93 +Move|5,88 +Move|9,95 +Move|13,397 +Move|17,149 +Move|21,373 +Move|25,157 +Move|29,322 +Move|33,94 +Move|37,377 +Move|41,444 +Move|45,248 +Move|49,153 +Move|50,585 +Move|53,478 +TradeValue|50 +Item|5,8 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/338.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/338.dat index 90fffe4dd..5b9634610 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/338.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/338.dat @@ -1 +1,56 @@ -{"Name":"Solrock","Number":338,"ExperienceType":"Fast","BaseExperience":154,"Type1":"Rock","Type2":"Psychic","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":338,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,20174,205,92,244,237,241,173,63,182,203,218,76,89,216,94,247,104,207,214,201,126,129,111,138,197,156,213,34,36,38,99,100,102,115,117,120,149,153,157,161,164,347,113,219,53,317,263,290,285,315,451,261,373,278,416,397,444,360,446,445,363,447,433,473,477,479,496,510,512,523,590,1485,92,244,237,241,173,63,182,203,218,76,89,216,94,247,104,207,214,201,126,129,111,138,197,156,213,34,36,38,99,100,102,115,117,120,149,153,157,161,164,347,113,219,53,317,263,290,285,315,451,261,373,278,416,397,444,360,446,445,363,447,433,473,477,479,496,510,512,523,590,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":95,"Def":85,"SpAtk":55,"SpDef":65,"Speed":70},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it rotates itself light similar to the sun, thus blinding its foes.","Species":"Meteorite Pokémon","Height":1.2,"Weight":154,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":88},{"Level":3,"ID":33},{"Level":4,"ID":106},{"Level":5,"ID":93},{"Level":6,"ID":88},{"Level":9,"ID":83},{"Level":13,"ID":397},{"Level":17,"ID":149},{"Level":21,"ID":373},{"Level":25,"ID":157},{"Level":29,"ID":322},{"Level":33,"ID":94},{"Level":37,"ID":377},{"Level":41,"ID":444},{"Level":45,"ID":76},{"Level":49,"ID":153},{"Level":53,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":169,"Chance":5}]} \ No newline at end of file +Name|Solrock +Number|338 +ExperienceType|0 +BaseExperience|154 +Type1|Rock +Type2|Psychic +CatchRate|45 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|338 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,20174,205,92,244,237,241,173,63,182,203,218,76,89,216,94,247,104,207,214,201,126,129,111,138,197,156,213,34,36,38,99,100,102,115,117,120,149,153,157,161,164,347,113,219,53,317,263,290,285,315,451,261,373,278,416,397,444,360,446,445,363,447,433,473,477,479,496,510,512,523,590,1485,92,244,237,241,173,63,182,203,218,76,89,216,94,247,104,207,214,201,126,129,111,138,197,156,213,34,36,38,99,100,102,115,117,120,149,153,157,161,164,347,113,219,53,317,263,290,285,315,451,261,373,278,416,397,444,360,446,445,363,447,433,473,477,479,496,510,512,523,590,148 +BaseHP|70 +BaseAttack|95 +BaseDefense|85 +BaseSpAttack|55 +BaseSpDefense|65 +BaseSpeed|70 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it rotates itself light similar to the sun, thus blinding its foes.\Meteorite Pokémon\154\1.2\0,148,0 +Scale|1.08 +Move|1,472 +Move|1,88 +Move|1,33 +Move|1,106 +Move|1,93 +Move|5,88 +Move|9,83 +Move|13,397 +Move|17,149 +Move|21,373 +Move|25,157 +Move|29,322 +Move|33,94 +Move|37,377 +Move|41,444 +Move|45,76 +Move|49,153 +Move|53,472 +TradeValue|50 +Item|5,169 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/339.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/339.dat index c04a31a18..0b48a12e8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/339.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/339.dat @@ -1 +1,53 @@ -{"Name":"Barboach","Number":339,"ExperienceType":"MediumFast","BaseExperience":58,"Type1":"Water","Type2":"Ground","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":339,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[12,107],"HiddenAbility":93,"EggMoves":[349,414,175,56,341,330,209,36,37,250],"Machines":[174,92,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,201,197,156,213,36,61,55,58,99,102,117,157,164,352,258,317,263,290,416,445,363,496,503,523,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":48,"Def":43,"SpAtk":46,"SpDef":41,"Speed":60},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"BARBOACH uses its whiskers to taste things just as a person uses his or her tongue to taste things.","Species":"Whiskers Pokémon","Height":0.4,"Weight":1.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":189},{"Level":6,"ID":300},{"Level":7,"ID":346},{"Level":10,"ID":55},{"Level":14,"ID":426},{"Level":18,"ID":133},{"Level":22,"ID":352},{"Level":26,"ID":222},{"Level":31,"ID":156},{"Level":32,"ID":173},{"Level":35,"ID":401},{"Level":39,"ID":89},{"Level":43,"ID":248},{"Level":47,"ID":90}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":340,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Barboach +Number|339 +ExperienceType|1 +BaseExperience|58 +Type1|Water +Type2|Ground +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|339 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|12 +Ability2|107 +HiddenAbility|93 +EggMoves|349,414,175,56,341,330,209,36,37,250 +Machines|174,92,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,201,197,156,213,36,61,55,58,99,102,117,157,164,352,258,317,263,290,416,445,363,496,503,523,590,57,250,127,291 +BaseHP|50 +BaseAttack|48 +BaseDefense|43 +BaseSpAttack|46 +BaseSpDefense|41 +BaseSpeed|60 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|BARBOACH uses its whiskers to taste things just as a person uses his or her tongue to taste things.\Whiskers Pokémon\1.9\0.4\0,148,0 +Scale|0.7 +Move|1,189 +Move|6,300 +Move|6,346 +Move|10,55 +Move|14,426 +Move|18,133 +Move|22,352 +Move|26,222 +Move|31,156 +Move|31,173 +Move|35,401 +Move|39,89 +Move|43,248 +Move|47,90 +TradeValue|25 +EvolutionCondition|340,level,30,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/34.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/34.dat index 772a1eb69..f77e40ed9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/34.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/34.dat @@ -1 +1,45 @@ -{"Name":"Nidoking","Number":34,"ExperienceType":"MediumSlow","BaseExperience":223,"Type1":"Poison","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":32,"Devolution":33,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[38,79],"HiddenAbility":125,"EggMoves":[133,251,498,93,68,50,203,457,231,342,389,48,36,599],"Machines":[223,29,174,46,92,249,237,241,173,59,63,196,182,240,203,218,231,87,89,216,91,247,189,104,8,207,214,188,201,126,111,9,197,156,213,168,7,210,5,32,34,36,38,61,55,58,6,66,68,69,99,85,90,102,117,130,157,164,264,337,352,269,280,351,53,317,259,263,290,411,374,406,421,416,444,419,446,445,363,398,468,474,479,482,496,497,510,511,523,525,612,590,15,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":81,"Atk":102,"Def":77,"SpAtk":85,"SpDef":75,"Speed":85},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It swings its big tail around during battle. If its foe flinches, it will charge with its sturdy body.","Species":"Drill Pokémon","Height":1.4,"Weight":62,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":50,"Moves":[{"Level":1,"ID":24},{"Level":2,"ID":40},{"Level":3,"ID":64},{"Level":4,"ID":116},{"Level":5,"ID":224},{"Level":23,"ID":498},{"Level":35,"ID":37},{"Level":43,"ID":414},{"Level":58,"ID":224}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Nidoking +Number|34 +ExperienceType|2 +BaseExperience|223 +Type1|Poison +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|32 +IsGenderLess|0 +IsMale|100 +Ability1|38 +Ability2|79 +HiddenAbility|125 +EggMoves|133,251,498,93,68,50,203,457,231,342,389,48,36,599 +Machines|223,29,174,46,92,249,237,241,173,59,63,196,182,240,203,218,231,87,89,216,91,247,189,104,8,207,214,188,201,126,111,9,197,156,213,168,7,210,5,32,34,36,38,61,55,58,6,66,68,69,99,85,90,102,117,130,157,164,264,337,352,269,280,351,53,317,259,263,290,411,374,406,421,416,444,419,446,445,363,398,468,474,479,482,496,497,510,511,523,525,612,590,15,57,70,250,431,560 +BaseHP|81 +BaseAttack|102 +BaseDefense|77 +BaseSpAttack|85 +BaseSpDefense|75 +BaseSpeed|85 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It swings its big tail around during battle. If its foe flinches, it will charge with its sturdy body.\Drill Pokémon\62\1.4\0,148,0 +Scale|1.16 +Move|1,24 +Move|1,40 +Move|1,64 +Move|1,116 +Move|1,224 +Move|23,498 +Move|35,37 +Move|43,414 +Move|58,224 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/340.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/340.dat index 7ae38748d..6d9434ef3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/340.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/340.dat @@ -1 +1,56 @@ -{"Name":"Whiscash","Number":340,"ExperienceType":"MediumFast","BaseExperience":164,"Type1":"Water","Type2":"Ground","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":339,"Devolution":339,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[12,107],"HiddenAbility":93,"EggMoves":[349,414,175,56,341,330,209,36,37,250],"Machines":[174,92,249,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,201,197,156,213,36,38,61,55,58,99,90,102,117,130,157,164,352,258,317,263,290,416,444,445,363,496,503,523,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":110,"Atk":78,"Def":73,"SpAtk":76,"SpDef":71,"Speed":60},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It claims a large swamp to itself. If a foe comes near it, it sets off tremors by thrashing around.","Species":"Whiskers Pokémon","Height":0.9,"Weight":23.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":45,"Moves":[{"Level":1,"ID":428},{"Level":2,"ID":321},{"Level":3,"ID":189},{"Level":4,"ID":300},{"Level":5,"ID":346},{"Level":6,"ID":300},{"Level":7,"ID":346},{"Level":10,"ID":55},{"Level":14,"ID":426},{"Level":18,"ID":133},{"Level":22,"ID":352},{"Level":26,"ID":222},{"Level":33,"ID":156},{"Level":34,"ID":173},{"Level":39,"ID":401},{"Level":45,"ID":89},{"Level":51,"ID":248},{"Level":57,"ID":90}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Whiscash +Number|340 +ExperienceType|1 +BaseExperience|164 +Type1|Water +Type2|Ground +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|339 +IsGenderLess|0 +CanBreed|1 +Devolution|339 +IsMale|50 +Ability1|12 +Ability2|107 +HiddenAbility|93 +EggMoves|349,414,175,56,341,330,209,36,37,250 +Machines|174,92,249,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,201,197,156,213,36,38,61,55,58,99,90,102,117,130,157,164,352,258,317,263,290,416,444,445,363,496,503,523,590,57,70,250,127,291 +BaseHP|110 +BaseAttack|78 +BaseDefense|73 +BaseSpAttack|76 +BaseSpDefense|71 +BaseSpeed|60 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It claims a large swamp to itself. If a foe comes near it, it sets off tremors by thrashing around.\Whiskers Pokémon\23.6\0.9\0,148,0 +Scale|0.96 +Move|1,428 +Move|1,321 +Move|1,189 +Move|1,300 +Move|1,346 +Move|6,300 +Move|6,346 +Move|10,55 +Move|14,426 +Move|18,133 +Move|22,352 +Move|26,222 +Move|33,156 +Move|33,173 +Move|39,401 +Move|45,89 +Move|51,248 +Move|57,90 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/341.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/341.dat index a17f9d7ed..b2afd51d7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/341.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/341.dat @@ -1 +1,52 @@ -{"Name":"Corphish","Number":341,"ExperienceType":"MediumFast","BaseExperience":62,"Type1":"Water","Type2":"Blank","CatchRate":205,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water3","BaseEggSteps":4080,"EggPokemon":341,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[52,75],"HiddenAbility":91,"EggMoves":[246,453,34,498,38,349,283,282,232,300,276,415,376],"Machines":[174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,188,197,156,213,210,14,34,36,61,55,58,68,99,102,117,130,157,164,352,258,269,280,317,332,263,290,206,374,371,416,445,404,363,468,496,503,590,15,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":43,"Atk":80,"Def":65,"SpAtk":50,"SpDef":35,"Speed":35},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It was originally a Pokémon from afar that escaped to the wild. It can adapt to the dirtiest river.","Species":"Ruffian Pokémon","Height":0.6,"Weight":11.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":30,"Moves":[{"Level":1,"ID":145},{"Level":7,"ID":106},{"Level":10,"ID":11},{"Level":13,"ID":43},{"Level":20,"ID":61},{"Level":23,"ID":182},{"Level":26,"ID":282},{"Level":32,"ID":269},{"Level":35,"ID":400},{"Level":38,"ID":152},{"Level":44,"ID":14},{"Level":47,"ID":242},{"Level":53,"ID":12}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":342,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Corphish +Number|341 +ExperienceType|1 +BaseExperience|62 +Type1|Water +Type2| +CatchRate|205 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|4080 +EggPokemon|341 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|52 +Ability2|75 +HiddenAbility|91 +EggMoves|246,453,34,498,38,349,283,282,232,300,276,415,376 +Machines|174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,188,197,156,213,210,14,34,36,61,55,58,68,99,102,117,130,157,164,352,258,269,280,317,332,263,290,206,374,371,416,445,404,363,468,496,503,590,15,57,70,250,127,291 +BaseHP|43 +BaseAttack|80 +BaseDefense|65 +BaseSpAttack|50 +BaseSpDefense|35 +BaseSpeed|35 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It was originally a Pokémon from afar that escaped to the wild. It can adapt to the dirtiest river.\Ruffian Pokémon\11.5\0.6\0,148,0 +Scale|0.84 +Move|1,145 +Move|7,106 +Move|10,11 +Move|13,43 +Move|20,61 +Move|23,182 +Move|26,282 +Move|32,269 +Move|35,400 +Move|38,152 +Move|44,14 +Move|47,242 +Move|53,12 +TradeValue|30 +EvolutionCondition|342,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/342.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/342.dat index c80a9f036..8e44e2c64 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/342.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/342.dat @@ -1 +1,56 @@ -{"Name":"Crawdaunt","Number":342,"ExperienceType":"MediumFast","BaseExperience":164,"Type1":"Water","Type2":"Dark","CatchRate":155,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water3","BaseEggSteps":4080,"EggPokemon":341,"Devolution":341,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[52,75],"HiddenAbility":91,"EggMoves":[246,453,34,498,38,349,283,282,232,300,276,415,376],"Machines":[174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,188,129,197,156,213,210,14,34,36,38,61,55,58,68,99,82,102,117,130,157,164,337,352,258,269,280,317,332,263,290,206,374,371,416,419,445,399,404,363,468,482,496,503,514,555,267,590,15,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":63,"Atk":120,"Def":85,"SpAtk":90,"SpDef":55,"Speed":55},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A brutish Pokémon that loves to battle. It will crash itself into any foe that approaches its nest.","Species":"Rogue Pokémon","Height":1.1,"Weight":32.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":45,"Moves":[{"Level":1,"ID":12},{"Level":2,"ID":145},{"Level":3,"ID":106},{"Level":4,"ID":11},{"Level":5,"ID":43},{"Level":7,"ID":106},{"Level":10,"ID":11},{"Level":13,"ID":43},{"Level":20,"ID":61},{"Level":23,"ID":182},{"Level":26,"ID":282},{"Level":30,"ID":129},{"Level":34,"ID":269},{"Level":39,"ID":400},{"Level":44,"ID":152},{"Level":52,"ID":14},{"Level":57,"ID":242},{"Level":65,"ID":12}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Crawdaunt +Number|342 +ExperienceType|1 +BaseExperience|164 +Type1|Water +Type2|Dark +CatchRate|155 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|4080 +EggPokemon|341 +IsGenderLess|0 +CanBreed|1 +Devolution|341 +IsMale|50 +Ability1|52 +Ability2|75 +HiddenAbility|91 +EggMoves|246,453,34,498,38,349,283,282,232,300,276,415,376 +Machines|174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,188,129,197,156,213,210,14,34,36,38,61,55,58,68,99,82,102,117,130,157,164,337,352,258,269,280,317,332,263,290,206,374,371,416,419,445,399,404,363,468,482,496,503,514,555,267,590,15,57,70,250,127,291 +BaseHP|63 +BaseAttack|120 +BaseDefense|85 +BaseSpAttack|90 +BaseSpDefense|55 +BaseSpeed|55 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A brutish Pokémon that loves to battle. It will crash itself into any foe that approaches its nest.\Rogue Pokémon\32.8\1.1\0,148,0 +Scale|1.04 +Move|1,12 +Move|1,145 +Move|1,106 +Move|1,11 +Move|1,43 +Move|7,106 +Move|10,11 +Move|13,43 +Move|20,61 +Move|23,182 +Move|26,282 +Move|30,129 +Move|34,269 +Move|39,400 +Move|44,152 +Move|52,14 +Move|57,242 +Move|65,12 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/343.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/343.dat index 838d97741..9e5efa19f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/343.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/343.dat @@ -1 +1,55 @@ -{"Name":"Baltoy","Number":343,"ExperienceType":"MediumFast","BaseExperience":60,"Type1":"Ground","Type2":"Psychic","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":343,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,244,237,241,173,63,182,240,203,218,76,89,216,91,94,247,189,104,207,214,201,138,197,156,213,32,36,58,99,90,100,102,115,117,120,130,149,153,157,161,164,347,113,317,263,290,285,451,278,416,397,360,446,445,363,447,433,473,477,479,496,502,523,605,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":40,"Def":55,"SpAtk":40,"SpDef":70,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It moves while spinning around on its single foot. Some BALTOY have been seen spinning on their heads.","Species":"Clay Doll Pokémon","Height":0.5,"Weight":21.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":106},{"Level":2,"ID":93},{"Level":4,"ID":229},{"Level":7,"ID":189},{"Level":10,"ID":317},{"Level":13,"ID":60},{"Level":17,"ID":379},{"Level":21,"ID":246},{"Level":25,"ID":120},{"Level":28,"ID":326},{"Level":31,"ID":322},{"Level":34,"ID":1},{"Level":35,"ID":1},{"Level":37,"ID":414},{"Level":41,"ID":201},{"Level":45,"ID":377},{"Level":49,"ID":153}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":344,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Baltoy +Number|343 +ExperienceType|1 +BaseExperience|60 +Type1|Ground +Type2|Psychic +CatchRate|255 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|343 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,244,237,241,173,63,182,240,203,218,76,89,216,91,94,247,189,104,207,214,201,138,197,156,213,32,36,58,99,90,100,102,115,117,120,130,149,153,157,161,164,347,113,317,263,290,285,451,278,416,397,360,446,445,363,447,433,473,477,479,496,502,523,605,590,148 +BaseHP|40 +BaseAttack|40 +BaseDefense|55 +BaseSpAttack|40 +BaseSpDefense|70 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It moves while spinning around on its single foot. Some BALTOY have been seen spinning on their heads.\Clay Doll Pokémon\21.5\0.5\0,148,0 +Scale|0.7 +Move|1,106 +Move|1,93 +Move|4,229 +Move|7,189 +Move|10,317 +Move|13,60 +Move|17,379 +Move|21,246 +Move|25,120 +Move|28,326 +Move|31,322 +Move|34,470 +Move|34,471 +Move|37,414 +Move|41,201 +Move|45,377 +Move|49,153 +TradeValue|50 +EvolutionCondition|344,Level,36,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/344.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/344.dat index 63eeabbc6..8363eb5a8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/344.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/344.dat @@ -1 +1,56 @@ -{"Name":"Claydol","Number":344,"ExperienceType":"MediumFast","BaseExperience":175,"Type1":"Ground","Type2":"Psychic","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":343,"Devolution":343,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,249,244,237,241,173,63,182,240,203,218,76,89,216,91,94,247,189,104,207,214,201,138,197,156,213,32,36,38,58,99,90,100,102,115,117,120,130,149,153,157,161,164,347,113,317,263,290,285,451,278,416,397,444,360,446,445,363,447,433,473,477,479,496,502,523,605,590,70,148,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":70,"Def":105,"SpAtk":70,"SpDef":120,"Speed":75},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is said that it originates from clay dolls made by an ancient civilization.","Species":"Clay Doll Pokémon","Height":1.5,"Weight":108,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":50,"Moves":[{"Level":1,"ID":100},{"Level":2,"ID":106},{"Level":3,"ID":93},{"Level":4,"ID":229},{"Level":5,"ID":229},{"Level":7,"ID":189},{"Level":10,"ID":317},{"Level":13,"ID":60},{"Level":17,"ID":379},{"Level":21,"ID":246},{"Level":28,"ID":326},{"Level":31,"ID":322},{"Level":34,"ID":1},{"Level":35,"ID":1},{"Level":36,"ID":63},{"Level":40,"ID":414},{"Level":47,"ID":201},{"Level":54,"ID":377},{"Level":61,"ID":153}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Claydol +Number|344 +ExperienceType|1 +BaseExperience|175 +Type1|Ground +Type2|Psychic +CatchRate|90 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|343 +IsGenderLess|1 +CanBreed|1 +Devolution|343 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,249,244,237,241,173,63,182,240,203,218,76,89,216,91,94,247,189,104,207,214,201,138,197,156,213,32,36,38,58,99,90,100,102,115,117,120,130,149,153,157,161,164,347,113,317,263,290,285,451,278,416,397,444,360,446,445,363,447,433,473,477,479,496,502,523,605,590,70,148,560 +BaseHP|60 +BaseAttack|70 +BaseDefense|105 +BaseSpAttack|70 +BaseSpDefense|120 +BaseSpeed|75 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is said that it originates from clay dolls made by an ancient civilization.\Clay Doll Pokémon\108\1.5\0,148,0 +Scale|1.2 +Move|1,100 +Move|1,106 +Move|1,93 +Move|1,229 +Move|4,229 +Move|7,189 +Move|10,317 +Move|13,60 +Move|17,379 +Move|21,246 +Move|28,326 +Move|31,322 +Move|34,470 +Move|34,471 +Move|36,63 +Move|40,414 +Move|47,201 +Move|54,377 +Move|61,153 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/345.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/345.dat index 1940bfc04..9ebdc3bc8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/345.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/345.dat @@ -1 +1,52 @@ -{"Name":"Lileep","Number":345,"ExperienceType":"MediumFast","BaseExperience":71,"Type1":"Rock","Type2":"Grass","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":345,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[21],"HiddenAbility":114,"EggMoves":[112,174,203,72,243,105,446,321,378,157],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,89,216,189,104,207,214,188,197,156,213,34,36,99,72,102,117,164,331,263,290,412,416,446,445,363,479,496,611,590,148],"TutorMoves":[],"BaseStats":{"HP":66,"Atk":41,"Def":77,"SpAtk":61,"SpDef":87,"Speed":23},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It disguises its tentacles as flowers to attract and catch prey. It became extinct in ancient times.","Species":"Sea Lily Pokémon","Height":1,"Weight":23.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":310},{"Level":2,"ID":132},{"Level":8,"ID":51},{"Level":15,"ID":275},{"Level":22,"ID":109},{"Level":29,"ID":133},{"Level":36,"ID":1},{"Level":43,"ID":246},{"Level":50,"ID":412},{"Level":57,"ID":254},{"Level":58,"ID":255},{"Level":59,"ID":256},{"Level":64,"ID":378}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":346,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Lileep +Number|345 +ExperienceType|1 +BaseExperience|71 +Type1|Rock +Type2|Grass +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|345 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|21 +Ability2|Nothing +HiddenAbility|114 +EggMoves|112,174,203,72,243,105,446,321,378,157 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,89,216,189,104,207,214,188,197,156,213,34,36,99,72,102,117,164,331,263,290,412,416,446,445,363,479,496,611,590,148 +BaseHP|66 +BaseAttack|41 +BaseDefense|77 +BaseSpAttack|61 +BaseSpDefense|87 +BaseSpeed|23 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It disguises its tentacles as flowers to attract and catch prey. It became extinct in ancient times.\Sea Lily Pokémon\23.8\1\0,148,0 +Scale|1 +Move|1,310 +Move|1,132 +Move|8,51 +Move|15,275 +Move|22,109 +Move|29,133 +Move|36,380 +Move|43,246 +Move|50,412 +Move|57,254 +Move|57,255 +Move|57,256 +Move|64,378 +TradeValue|50 +EvolutionCondition|346,Level,40,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/346.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/346.dat index f93be7f03..555d17914 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/346.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/346.dat @@ -1 +1,57 @@ -{"Name":"Cradily","Number":346,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Rock","Type2":"Grass","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":345,"Devolution":345,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[21],"HiddenAbility":114,"EggMoves":[112,174,203,72,243,105,446,321,378,157],"Machines":[174,92,249,237,241,230,173,63,182,202,203,218,76,89,216,189,104,207,214,188,197,156,213,34,36,38,99,72,102,117,130,164,331,263,290,412,416,446,445,363,479,482,496,611,590,70,148],"TutorMoves":[],"BaseStats":{"HP":86,"Atk":81,"Def":97,"SpAtk":81,"SpDef":107,"Speed":43},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives in warm seas. Its heavy body weighs it down so it won’t get washed away in rough weather.","Species":"Barnacle Pokémon","Height":1.5,"Weight":60.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":50,"Moves":[{"Level":1,"ID":378},{"Level":2,"ID":256},{"Level":3,"ID":255},{"Level":4,"ID":254},{"Level":5,"ID":310},{"Level":6,"ID":132},{"Level":7,"ID":51},{"Level":8,"ID":275},{"Level":9,"ID":51},{"Level":15,"ID":275},{"Level":22,"ID":109},{"Level":29,"ID":133},{"Level":36,"ID":246},{"Level":46,"ID":1},{"Level":56,"ID":412},{"Level":66,"ID":254},{"Level":67,"ID":255},{"Level":68,"ID":256},{"Level":76,"ID":378}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Cradily +Number|346 +ExperienceType|1 +BaseExperience|173 +Type1|Rock +Type2|Grass +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|345 +IsGenderLess|0 +CanBreed|1 +Devolution|345 +IsMale|87.5 +Ability1|21 +Ability2|Nothing +HiddenAbility|114 +EggMoves|112,174,203,72,243,105,446,321,378,157 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,89,216,189,104,207,214,188,197,156,213,34,36,38,99,72,102,117,130,164,331,263,290,412,416,446,445,363,479,482,496,611,590,70,148 +BaseHP|86 +BaseAttack|81 +BaseDefense|97 +BaseSpAttack|81 +BaseSpDefense|107 +BaseSpeed|43 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives in warm seas. Its heavy body weighs it down so it won’t get washed away in rough weather.\Barnacle Pokémon\60.4\1.5\0,148,0 +Scale|1.2 +Move|1,378 +Move|1,256 +Move|1,255 +Move|1,254 +Move|1,310 +Move|1,132 +Move|1,51 +Move|1,275 +Move|8,51 +Move|15,275 +Move|22,109 +Move|29,133 +Move|36,246 +Move|46,380 +Move|56,412 +Move|66,254 +Move|66,255 +Move|66,256 +Move|76,378 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/347.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/347.dat index 1fb8c2219..68683b3b6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/347.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/347.dat @@ -1 +1,51 @@ -{"Name":"Anorith","Number":347,"ExperienceType":"MediumFast","BaseExperience":71,"Type1":"Rock","Type2":"Bug","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":347,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[4],"HiddenAbility":33,"EggMoves":[453,440,174,334,282,103,352,229,157,14],"Machines":[174,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,197,156,213,210,34,36,99,72,102,117,164,352,263,290,206,416,446,445,363,468,479,496,522,590,15],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":95,"Def":50,"SpAtk":40,"SpDef":50,"Speed":75},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"An ancestral Pokémon that lived in the ocean. Over time, its eight feet transformed into wings.","Species":"Old Shrimp Pokémon","Height":0.7,"Weight":12.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":50,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":106},{"Level":7,"ID":300},{"Level":13,"ID":55},{"Level":19,"ID":232},{"Level":25,"ID":182},{"Level":31,"ID":246},{"Level":37,"ID":210},{"Level":43,"ID":163},{"Level":49,"ID":350},{"Level":55,"ID":306},{"Level":61,"ID":404}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":348,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Anorith +Number|347 +ExperienceType|1 +BaseExperience|71 +Type1|Rock +Type2|Bug +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|347 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|4 +Ability2|Nothing +HiddenAbility|33 +EggMoves|453,440,174,334,282,103,352,229,157,14 +Machines|174,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,197,156,213,210,34,36,99,72,102,117,164,352,263,290,206,416,446,445,363,468,479,496,522,590,15 +BaseHP|45 +BaseAttack|95 +BaseDefense|50 +BaseSpAttack|40 +BaseSpDefense|50 +BaseSpeed|75 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|An ancestral Pokémon that lived in the ocean. Over time, its eight feet transformed into wings.\Old Shrimp Pokémon\12.5\0.7\0,148,0 +Scale|0.88 +Move|1,10 +Move|1,106 +Move|7,300 +Move|13,55 +Move|19,232 +Move|25,182 +Move|31,246 +Move|37,210 +Move|43,163 +Move|49,350 +Move|55,306 +Move|61,404 +TradeValue|50 +EvolutionCondition|348,Level,40,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/348.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/348.dat index e1e324774..814bff177 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/348.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/348.dat @@ -1 +1,53 @@ -{"Name":"Armaldo","Number":348,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Rock","Type2":"Bug","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":347,"Devolution":347,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[4],"HiddenAbility":33,"EggMoves":[453,440,174,334,282,103,352,229,157,14],"Machines":[174,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,197,156,213,210,34,36,38,66,69,99,72,82,102,117,130,164,337,352,263,290,206,416,446,445,363,468,479,496,522,590,15,70,560],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":125,"Def":100,"SpAtk":70,"SpDef":80,"Speed":45},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its enormous can cut through most anything. Its entire body is clad in sturdy plates.","Species":"Plate Pokémon","Height":1.5,"Weight":68.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":50,"Moves":[{"Level":1,"ID":306},{"Level":2,"ID":10},{"Level":3,"ID":106},{"Level":4,"ID":300},{"Level":5,"ID":55},{"Level":7,"ID":300},{"Level":13,"ID":55},{"Level":19,"ID":232},{"Level":25,"ID":182},{"Level":31,"ID":246},{"Level":37,"ID":210},{"Level":46,"ID":163},{"Level":55,"ID":350},{"Level":67,"ID":306},{"Level":73,"ID":404}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Armaldo +Number|348 +ExperienceType|1 +BaseExperience|173 +Type1|Rock +Type2|Bug +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|347 +IsGenderLess|0 +CanBreed|1 +Devolution|347 +IsMale|87.5 +Ability1|4 +Ability2|Nothing +HiddenAbility|33 +EggMoves|453,440,174,334,282,103,352,229,157,14 +Machines|174,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,197,156,213,210,34,36,38,66,69,99,72,82,102,117,130,164,337,352,263,290,206,416,446,445,363,468,479,496,522,590,15,70,560 +BaseHP|75 +BaseAttack|125 +BaseDefense|100 +BaseSpAttack|70 +BaseSpDefense|80 +BaseSpeed|45 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its enormous can cut through most anything. Its entire body is clad in sturdy plates.\Plate Pokémon\68.2\1.5\0,148,0 +Scale|1.2 +Move|1,306 +Move|1,10 +Move|1,106 +Move|1,300 +Move|1,55 +Move|7,300 +Move|13,55 +Move|19,232 +Move|25,182 +Move|31,246 +Move|37,210 +Move|46,163 +Move|55,350 +Move|67,306 +Move|73,404 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/349.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/349.dat index 2ccbbb084..c17087ff9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/349.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/349.dat @@ -1 +1,42 @@ -{"Name":"Feebas","Number":349,"ExperienceType":"MediumFast","BaseExperience":40,"Type1":"Water","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":349,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,12],"HiddenAbility":91,"EggMoves":[362,445,109,406,225,114,95,231,243,54,300,321,113],"Machines":[174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,36,61,55,58,99,102,117,164,352,263,290,416,445,363,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":20,"Atk":15,"Def":20,"SpAtk":10,"SpDef":55,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is the shabbiest Pokémon of all. It forms in schools and lives at the bottom of rivers.","Species":"Fish Pokémon","Height":0.6,"Weight":7.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":5,"Moves":[{"Level":1,"ID":150},{"Level":15,"ID":33},{"Level":30,"ID":175}],"EvolutionConditions":[{"Condition":"83","ConditionType":"HoldItem","Evolution":350,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Feebas +Number|349 +ExperienceType|1 +BaseExperience|40 +Type1|Water +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|349 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|33 +Ability2|12 +HiddenAbility|91 +EggMoves|362,445,109,406,225,114,95,231,243,54,300,321,113 +Machines|174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,36,61,55,58,99,102,117,164,352,263,290,416,445,363,496,503,590,57,250,127,291 +BaseHP|20 +BaseAttack|15 +BaseDefense|20 +BaseSpAttack|10 +BaseSpDefense|55 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It is the shabbiest Pokémon of all. It forms in schools and lives at the bottom of rivers.\Fish Pokémon\7.4\0.6\0,148,0 +Scale|0.84 +Move|1,150 +Move|15,33 +Move|30,175 +TradeValue|5 +EvolutionCondition|350,holditem,83,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/35.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/35.dat index 7c4d915b2..e9fe4cc90 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/35.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/35.dat @@ -1 +1,65 @@ -{"Name":"Clefairy","Number":35,"ExperienceType":"Fast","BaseExperience":113,"Type1":"Fairy","Type2":"Blank","CatchRate":150,"BaseFriendship":140,"EggGroup1":"Fairy","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":173,"Devolution":173,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[56,98],"HiddenAbility":132,"EggMoves":[133,312,187,343,313,505,118,102,581,217,150,500,321,273,164],"Machines":[223,29,174,205,92,192,249,244,237,241,173,59,63,182,240,203,218,76,231,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,61,55,58,66,68,69,99,85,100,102,115,117,118,130,135,86,149,161,164,264,352,347,113,219,280,351,53,263,290,289,374,451,409,278,416,446,445,363,447,473,477,496,497,510,514,526,612,605,590,70,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":45,"Def":48,"SpAtk":60,"SpDef":65,"Speed":35},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The moonlight that it stores in the wings on its back apparently gives it the ability to float in midair.","Species":"Fairy Pokémon","Height":0.6,"Weight":7.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":20,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":45},{"Level":3,"ID":227},{"Level":4,"ID":361},{"Level":5,"ID":1},{"Level":6,"ID":574},{"Level":7,"ID":47},{"Level":10,"ID":3},{"Level":13,"ID":111},{"Level":16,"ID":1},{"Level":19,"ID":1},{"Level":22,"ID":358},{"Level":25,"ID":107},{"Level":28,"ID":500},{"Level":31,"ID":118},{"Level":34,"ID":322},{"Level":37,"ID":1},{"Level":40,"ID":34},{"Level":43,"ID":236},{"Level":46,"ID":585},{"Level":49,"ID":356},{"Level":50,"ID":309},{"Level":55,"ID":361},{"Level":58,"ID":1}],"EvolutionConditions":[{"Condition":"8","ConditionType":"Item","Evolution":36,"Trigger":"ItemUse"}],"Items":[{"Id":149,"Chance":1},{"Id":8,"Chance":5},{"Id":2005,"Chance":50}]} \ No newline at end of file +Name|Clefairy +Number|35 +ExperienceType|0 +BaseExperience|113 +Type1|Fairy +Type2| +CatchRate|150 +BaseFriendship|140 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|173 +Devolution|173 +IsGenderLess|0 +IsMale|25 +Ability1|56 +Ability2|98 +HiddenAbility|132 +EggMoves|133,312,187,343,313,505,118,102,581,217,150,500,321,273,164 +Machines|223,29,174,205,92,192,249,244,237,241,173,59,63,182,240,203,218,76,231,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,61,55,58,66,68,69,99,85,100,102,115,117,118,130,135,86,149,161,164,264,352,347,113,219,280,351,53,263,290,289,374,451,409,278,416,446,445,363,447,473,477,496,497,510,514,526,612,605,590,70,148 +BaseHP|70 +BaseAttack|45 +BaseDefense|48 +BaseSpAttack|60 +BaseSpDefense|65 +BaseSpeed|35 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The moonlight that it stores in the wings on its back apparently gives it the ability to float in midair.\Fairy Pokémon\7.5\0.6\0,148,0 +Scale|0.84 +Move|1,1 +Move|1,45 +Move|1,227 +Move|1,361 +Move|1,495 +Move|1,574 +Move|7,47 +Move|10,3 +Move|13,111 +Move|16,266 +Move|19,516 +Move|22,358 +Move|25,107 +Move|28,500 +Move|31,118 +Move|34,322 +Move|37,381 +Move|40,34 +Move|43,236 +Move|46,585 +Move|49,356 +Move|50,309 +Move|55,361 +Move|58,495 +EvolutionCondition|36,item,8,item +Item|1,149 +Item|5,8 +Item|50,2005 +TradeValue|20 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/350.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/350.dat index c4d124679..d177fc5cc 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/350.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/350.dat @@ -1 +1,52 @@ -{"Name":"Milotic","Number":350,"ExperienceType":"MediumFast","BaseExperience":189,"Type1":"Water","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":349,"Devolution":349,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[63,172],"HiddenAbility":56,"EggMoves":[362,445,109,406,225,114,95,231,243,54,300,321,113],"Machines":[174,92,244,237,173,59,63,196,182,240,203,218,231,225,216,189,104,207,214,129,197,156,213,34,36,38,61,55,58,99,82,102,117,130,164,352,263,290,406,416,419,445,363,496,503,525,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":60,"Def":79,"SpAtk":100,"SpDef":125,"Speed":81},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It's said that a glimpse of a MILOTIC and its beauty will calm any hostile emotions you're feeling.","Species":"Tender Pokémon","Height":6.2,"Weight":162,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":60,"Moves":[{"Level":1,"ID":55},{"Level":2,"ID":35},{"Level":5,"ID":346},{"Level":9,"ID":287},{"Level":13,"ID":352},{"Level":17,"ID":239},{"Level":21,"ID":105},{"Level":25,"ID":445},{"Level":29,"ID":401},{"Level":33,"ID":240},{"Level":37,"ID":56},{"Level":41,"ID":213},{"Level":45,"ID":219},{"Level":49,"ID":392}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Milotic +Number|350 +ExperienceType|1 +BaseExperience|189 +Type1|Water +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|349 +IsGenderLess|0 +CanBreed|1 +Devolution|349 +IsMale|50 +Ability1|63 +Ability2|172 +HiddenAbility|56 +EggMoves|362,445,109,406,225,114,95,231,243,54,300,321,113 +Machines|174,92,244,237,173,59,63,196,182,240,203,218,231,225,216,189,104,207,214,129,197,156,213,34,36,38,61,55,58,99,82,102,117,130,164,352,263,290,406,416,419,445,363,496,503,525,590,57,250,127,291 +BaseHP|95 +BaseAttack|60 +BaseDefense|79 +BaseSpAttack|100 +BaseSpDefense|125 +BaseSpeed|81 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It's said that a glimpse of a MILOTIC and its beauty will calm any hostile emotions you're feeling.\Tender Pokémon\162\6.2\0,148,0 +Scale|2 +Move|1,55 +Move|1,35 +Move|5,346 +Move|9,287 +Move|13,352 +Move|17,239 +Move|21,105 +Move|25,445 +Move|29,401 +Move|33,240 +Move|37,56 +Move|41,213 +Move|45,219 +Move|49,392 +TradeValue|60 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/351.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/351.dat index 46f3130b7..a6db98a77 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/351.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/351.dat @@ -1 +1,51 @@ -{"Name":"Castform","Number":351,"ExperienceType":"MediumFast","BaseExperience":147,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Undiscovered","BaseEggSteps":6630,"EggPokemon":351,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[59],"HiddenAbility":-1,"EggMoves":[133,499,322,50,248,385,506,381,466,513,244],"Machines":[29,174,92,244,237,241,173,59,63,196,182,240,203,218,76,87,216,247,104,207,214,201,126,129,111,197,156,213,168,34,61,55,58,99,85,102,117,86,164,352,258,351,53,263,290,412,416,419,445,363,496,503,510,514,526,590,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":70,"Def":70,"SpAtk":70,"SpDef":70,"Speed":70},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon can change its cells taking different forms based on the temperature and humidity.","Species":"Weather Pokémon","Height":0.3,"Weight":0.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":40,"Moves":[{"Level":1,"ID":33},{"Level":10,"ID":55},{"Level":11,"ID":52},{"Level":12,"ID":181},{"Level":15,"ID":29},{"Level":20,"ID":240},{"Level":21,"ID":241},{"Level":22,"ID":258},{"Level":30,"ID":311},{"Level":40,"ID":56},{"Level":41,"ID":126},{"Level":42,"ID":59}],"EvolutionConditions":[],"Items":[{"Id":95,"Chance":100}]} \ No newline at end of file +Name|Castform +Number|351 +ExperienceType|1 +BaseExperience|147 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Undiscovered +BaseEggSteps|6630 +EggPokemon|351 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|59 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|133,499,322,50,248,385,506,381,466,513,244 +Machines|29,174,92,244,237,241,173,59,63,196,182,240,203,218,76,87,216,247,104,207,214,201,126,129,111,197,156,213,168,34,61,55,58,99,85,102,117,86,164,352,258,351,53,263,290,412,416,419,445,363,496,503,510,514,526,590,148 +BaseHP|70 +BaseAttack|70 +BaseDefense|70 +BaseSpAttack|70 +BaseSpDefense|70 +BaseSpeed|70 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon can change its cells taking different forms based on the temperature and humidity.\Weather Pokémon\0.8\0.3\0,148,0 +Scale|0.7 +Move|1,33 +Move|10,55 +Move|10,52 +Move|10,181 +Move|15,29 +Move|20,240 +Move|20,241 +Move|20,258 +Move|30,311 +Move|40,56 +Move|40,126 +Move|40,59 +TradeValue|40 +Item|100,95 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/352.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/352.dat index ba4c413b2..e15109247 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/352.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/352.dat @@ -1 +1,59 @@ -{"Name":"Kecleon","Number":352,"ExperienceType":"MediumSlow","BaseExperience":154,"Type1":"Normal","Type2":"Blank","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":352,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[16],"HiddenAbility":168,"EggMoves":[293,50,146,252,492,277,417,105,285,289,271],"Machines":[223,174,205,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,91,247,189,104,8,207,214,126,129,111,9,197,156,213,168,7,210,5,34,36,61,55,58,6,66,68,69,99,85,102,117,118,130,86,157,164,264,352,280,351,53,317,332,263,290,285,289,374,451,409,421,278,416,446,445,363,447,433,468,496,510,514,526,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":90,"Def":70,"SpAtk":60,"SpDef":120,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It changes its shading to match its surroundings so it can sneak up on prey. Only its belly patterns stay fixed.","Species":"Color Swap Pokémon","Height":1,"Weight":22,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":40,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":246},{"Level":3,"ID":168},{"Level":4,"ID":39},{"Level":5,"ID":310},{"Level":6,"ID":122},{"Level":7,"ID":10},{"Level":8,"ID":20},{"Level":9,"ID":185},{"Level":10,"ID":154},{"Level":14,"ID":364},{"Level":18,"ID":60},{"Level":22,"ID":425},{"Level":27,"ID":163},{"Level":32,"ID":103},{"Level":37,"ID":164},{"Level":43,"ID":389},{"Level":49,"ID":421},{"Level":55,"ID":246},{"Level":58,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":2007,"Chance":5}]} \ No newline at end of file +Name|Kecleon +Number|352 +ExperienceType|2 +BaseExperience|154 +Type1|Normal +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|352 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|16 +Ability2|Nothing +HiddenAbility|168 +EggMoves|293,50,146,252,492,277,417,105,285,289,271 +Machines|223,174,205,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,91,247,189,104,8,207,214,126,129,111,9,197,156,213,168,7,210,5,34,36,61,55,58,6,66,68,69,99,85,102,117,118,130,86,157,164,264,352,280,351,53,317,332,263,290,285,289,374,451,409,421,278,416,446,445,363,447,433,468,496,510,514,526,612,590,70,148 +BaseHP|60 +BaseAttack|90 +BaseDefense|70 +BaseSpAttack|60 +BaseSpDefense|120 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It changes its shading to match its surroundings so it can sneak up on prey. Only its belly patterns stay fixed.\Color Swap Pokémon\22\1\0,148,0 +Scale|1 +Move|1,485 +Move|1,246 +Move|1,168 +Move|1,39 +Move|1,310 +Move|1,122 +Move|1,10 +Move|4,20 +Move|7,185 +Move|10,154 +Move|14,364 +Move|18,60 +Move|22,425 +Move|27,163 +Move|32,103 +Move|37,164 +Move|43,389 +Move|49,421 +Move|55,246 +Move|58,485 +TradeValue|40 +Item|5,2007 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/353.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/353.dat index cc1f789d8..ce518fb4d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/353.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/353.dat @@ -1 +1,55 @@ -{"Name":"Shuppet","Number":353,"ExperienceType":"Fast","BaseExperience":59,"Type1":"Ghost","Type2":"Blank","CatchRate":225,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":353,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[15,119],"HiddenAbility":130,"EggMoves":[310,109,194,50,193,441,286,466,566,228,425,371],"Machines":[174,92,244,237,241,173,63,196,182,240,203,218,87,216,94,247,104,207,214,138,197,156,213,168,171,34,99,85,102,117,86,149,164,347,269,351,259,263,290,285,289,451,261,373,371,416,445,399,363,433,477,496,605,590,148],"TutorMoves":[],"BaseStats":{"HP":44,"Atk":75,"Def":35,"SpAtk":63,"SpDef":33,"Speed":45},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It uses its horn to feed on envy and malice, or so it’s said. It’s very active at night.","Species":"Puppet Pokémon","Height":0.6,"Weight":2.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":30,"Moves":[{"Level":1,"ID":282},{"Level":4,"ID":103},{"Level":7,"ID":101},{"Level":10,"ID":180},{"Level":13,"ID":261},{"Level":16,"ID":425},{"Level":19,"ID":174},{"Level":22,"ID":185},{"Level":26,"ID":506},{"Level":30,"ID":247},{"Level":34,"ID":389},{"Level":38,"ID":373},{"Level":42,"ID":289},{"Level":46,"ID":1},{"Level":50,"ID":271}],"EvolutionConditions":[{"Condition":"37","ConditionType":"Level","Evolution":354,"Trigger":"LevelUp"}],"Items":[{"Id":113,"Chance":5}]} \ No newline at end of file +Name|Shuppet +Number|353 +ExperienceType|0 +BaseExperience|59 +Type1|Ghost +Type2| +CatchRate|225 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|353 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|15 +Ability2|119 +HiddenAbility|130 +EggMoves|310,109,194,50,193,441,286,466,566,228,425,371 +Machines|174,92,244,237,241,173,63,196,182,240,203,218,87,216,94,247,104,207,214,138,197,156,213,168,171,34,99,85,102,117,86,149,164,347,269,351,259,263,290,285,289,451,261,373,371,416,445,399,363,433,477,496,605,590,148 +BaseHP|44 +BaseAttack|75 +BaseDefense|35 +BaseSpAttack|63 +BaseSpDefense|33 +BaseSpeed|45 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It uses its horn to feed on envy and malice, or so it’s said. It’s very active at night.\Puppet Pokémon\2.3\0.6\0,148,0 +Scale|0.84 +Move|1,282 +Move|4,103 +Move|7,101 +Move|10,180 +Move|13,261 +Move|16,425 +Move|19,174 +Move|22,185 +Move|26,506 +Move|30,247 +Move|34,389 +Move|38,373 +Move|42,289 +Move|46,288 +Move|50,271 +TradeValue|30 +Item|5,113 +EvolutionCondition|354,Level,37,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/354.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/354.dat index 10aebc591..3e900ed8f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/354.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/354.dat @@ -1 +1,57 @@ -{"Name":"Banette","Number":354,"ExperienceType":"Fast","BaseExperience":159,"Type1":"Ghost","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":353,"Devolution":353,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[15,119],"HiddenAbility":130,"EggMoves":[310,109,194,50,193,441,286,466,566,228,425,371],"Machines":[174,92,192,244,237,241,173,63,196,182,240,203,218,87,216,94,247,189,104,207,214,138,197,156,213,168,171,34,6,99,85,102,117,118,86,149,164,347,269,351,259,263,290,285,289,374,451,261,373,421,371,416,445,399,363,433,477,496,611,605,590,148],"TutorMoves":[],"BaseStats":{"HP":64,"Atk":115,"Def":65,"SpAtk":83,"SpDef":63,"Speed":65},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon developed from an abandoned doll that amassed a grudge. It is seen in dark alleys.","Species":"Marionette Pokémon","Height":1.1,"Weight":12.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":50,"Moves":[{"Level":1,"ID":282},{"Level":2,"ID":103},{"Level":3,"ID":101},{"Level":4,"ID":174},{"Level":5,"ID":103},{"Level":7,"ID":101},{"Level":10,"ID":180},{"Level":13,"ID":261},{"Level":16,"ID":425},{"Level":19,"ID":174},{"Level":22,"ID":185},{"Level":26,"ID":506},{"Level":30,"ID":247},{"Level":34,"ID":389},{"Level":40,"ID":373},{"Level":46,"ID":289},{"Level":52,"ID":1},{"Level":58,"ID":271}],"EvolutionConditions":[],"Items":[{"Id":113,"Chance":5}]} \ No newline at end of file +Name|Banette +Number|354 +ExperienceType|0 +BaseExperience|159 +Type1|Ghost +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|353 +IsGenderLess|0 +CanBreed|1 +Devolution|353 +IsMale|50 +Ability1|15 +Ability2|119 +HiddenAbility|130 +EggMoves|310,109,194,50,193,441,286,466,566,228,425,371 +Machines|174,92,192,244,237,241,173,63,196,182,240,203,218,87,216,94,247,189,104,207,214,138,197,156,213,168,171,34,6,99,85,102,117,118,86,149,164,347,269,351,259,263,290,285,289,374,451,261,373,421,371,416,445,399,363,433,477,496,611,605,590,148 +BaseHP|64 +BaseAttack|115 +BaseDefense|65 +BaseSpAttack|83 +BaseSpDefense|63 +BaseSpeed|65 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon developed from an abandoned doll that amassed a grudge. It is seen in dark alleys.\Marionette Pokémon\12.5\1.1\0,148,0 +Scale|1.04 +Move|1,282 +Move|1,103 +Move|1,101 +Move|1,174 +Move|4,103 +Move|7,101 +Move|10,180 +Move|13,261 +Move|16,425 +Move|19,174 +Move|22,185 +Move|26,506 +Move|30,247 +Move|34,389 +Move|40,373 +Move|46,289 +Move|52,288 +Move|58,271 +TradeValue|50 +Item|5,113 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/354_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/354_mega.dat new file mode 100644 index 000000000..9b4c89c83 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/354_mega.dat @@ -0,0 +1,57 @@ +Name|Mega Banette +Number|354 +ExperienceType|0 +BaseExperience|159 +Type1|Ghost +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|353 +IsGenderLess|0 +CanBreed|1 +Devolution|353 +IsMale|50 +Ability1|158 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|310,109,194,50,193,441,286,466,566,228,425,371 +Machines|174,92,192,244,237,241,173,63,196,182,240,203,218,87,216,94,247,189,104,207,214,138,197,156,213,168,171,34,6,99,85,102,117,118,86,149,164,347,269,351,259,263,290,285,289,374,451,261,373,421,371,416,445,399,363,433,477,496,611,605,590,148 +BaseHP|64 +BaseAttack|165 +BaseDefense|75 +BaseSpAttack|93 +BaseSpDefense|83 +BaseSpeed|75 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon developed from an abandoned doll that amassed a grudge. It is seen in dark alleys.\Marionette Pokémon\13\1.2\0,148,0 +Scale|1.04 +Move|1,282 +Move|1,103 +Move|1,101 +Move|1,174 +Move|4,103 +Move|7,101 +Move|10,180 +Move|13,261 +Move|16,425 +Move|19,174 +Move|22,185 +Move|26,506 +Move|30,247 +Move|34,389 +Move|40,373 +Move|46,289 +Move|52,288 +Move|58,271 +TradeValue|50 +Item|5,113 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/355.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/355.dat index c5a34b98a..5a7530e93 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/355.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/355.dat @@ -1 +1,54 @@ -{"Name":"Duskull","Number":355,"ExperienceType":"Fast","BaseExperience":59,"Type1":"Ghost","Type2":"Blank","CatchRate":190,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":355,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":119,"EggMoves":[399,194,288,185,114,286,262,466,220,285],"Machines":[174,92,244,237,241,173,59,63,196,182,203,218,216,247,104,207,214,197,156,213,168,171,58,99,102,117,149,164,263,290,285,289,373,416,445,399,363,477,496,611,590,148],"TutorMoves":[],"BaseStats":{"HP":20,"Atk":40,"Def":90,"SpAtk":30,"SpDef":90,"Speed":25},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it finds bad children who won’t listen to their parents, it will spirit them away--or so it’s said.","Species":"Requiem Pokémon","Height":0.8,"Weight":15,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":30,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":101},{"Level":6,"ID":1},{"Level":9,"ID":193},{"Level":14,"ID":310},{"Level":17,"ID":109},{"Level":22,"ID":425},{"Level":25,"ID":228},{"Level":30,"ID":174},{"Level":33,"ID":261},{"Level":38,"ID":506},{"Level":41,"ID":212},{"Level":46,"ID":371},{"Level":49,"ID":248}],"EvolutionConditions":[{"Condition":"37","ConditionType":"Level","Evolution":356,"Trigger":"LevelUp"}],"Items":[{"Id":2047,"Chance":5}]} \ No newline at end of file +Name|Duskull +Number|355 +ExperienceType|0 +BaseExperience|59 +Type1|Ghost +Type2| +CatchRate|190 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|355 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|119 +EggMoves|399,194,288,185,114,286,262,466,220,285 +Machines|174,92,244,237,241,173,59,63,196,182,203,218,216,247,104,207,214,197,156,213,168,171,58,99,102,117,149,164,263,290,285,289,373,416,445,399,363,477,496,611,590,148 +BaseHP|20 +BaseAttack|40 +BaseDefense|90 +BaseSpAttack|30 +BaseSpDefense|90 +BaseSpeed|25 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it finds bad children who won’t listen to their parents, it will spirit them away--or so it’s said.\Requiem Pokémon\15\0.8\0,148,0 +Scale|0.92 +Move|1,43 +Move|1,101 +Move|6,50 +Move|9,193 +Move|14,310 +Move|17,109 +Move|22,425 +Move|25,228 +Move|30,174 +Move|33,261 +Move|38,506 +Move|41,212 +Move|46,371 +Move|49,248 +TradeValue|30 +Item|5,2047 +EvolutionCondition|356,Level,37,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/356.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/356.dat index 7bbe71200..343cecd9b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/356.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/356.dat @@ -1 +1,61 @@ -{"Name":"Dusclops","Number":356,"ExperienceType":"Fast","BaseExperience":159,"Type1":"Ghost","Type2":"Blank","CatchRate":90,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":355,"Devolution":355,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[46],"HiddenAbility":119,"EggMoves":[399,194,288,185,114,286,262,466,220,285],"Machines":[223,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,9,138,197,156,213,168,7,171,5,58,6,66,68,69,99,102,117,118,149,157,164,264,347,269,280,317,259,263,290,285,289,374,451,261,373,371,416,445,399,363,433,477,496,523,611,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":70,"Def":130,"SpAtk":60,"SpDef":130,"Speed":25},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Anyone who dares peer into its body to see its spectral ball of fire will have their spirit stolen away.","Species":"Beckon Pokémon","Height":1.6,"Weight":30.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":50,"Moves":[{"Level":1,"ID":7},{"Level":2,"ID":8},{"Level":3,"ID":9},{"Level":4,"ID":356},{"Level":5,"ID":20},{"Level":6,"ID":43},{"Level":7,"ID":101},{"Level":8,"ID":1},{"Level":9,"ID":1},{"Level":10,"ID":193},{"Level":14,"ID":310},{"Level":17,"ID":109},{"Level":22,"ID":425},{"Level":25,"ID":228},{"Level":30,"ID":174},{"Level":33,"ID":261},{"Level":37,"ID":325},{"Level":42,"ID":506},{"Level":49,"ID":212},{"Level":58,"ID":371},{"Level":61,"ID":248}],"EvolutionConditions":[{"Condition":"84","ConditionType":"HoldItem","Evolution":477,"Trigger":"Trading"}],"Items":[{"Id":2047,"Chance":5}]} \ No newline at end of file +Name|Dusclops +Number|356 +ExperienceType|0 +BaseExperience|159 +Type1|Ghost +Type2| +CatchRate|90 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|355 +IsGenderLess|0 +CanBreed|1 +Devolution|355 +IsMale|50 +Ability1|46 +Ability2|Nothing +HiddenAbility|119 +EggMoves|399,194,288,185,114,286,262,466,220,285 +Machines|223,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,9,138,197,156,213,168,7,171,5,58,6,66,68,69,99,102,117,118,149,157,164,264,347,269,280,317,259,263,290,285,289,374,451,261,373,371,416,445,399,363,433,477,496,523,611,612,590,70,148 +BaseHP|40 +BaseAttack|70 +BaseDefense|130 +BaseSpAttack|60 +BaseSpDefense|130 +BaseSpeed|25 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Anyone who dares peer into its body to see its spectral ball of fire will have their spirit stolen away.\Beckon Pokémon\30.6\1.6\0,148,0 +Scale|1.24 +Move|1,7 +Move|1,8 +Move|1,9 +Move|1,356 +Move|1,20 +Move|1,43 +Move|1,101 +Move|1,50 +Move|6,50 +Move|9,193 +Move|14,310 +Move|17,109 +Move|22,425 +Move|25,228 +Move|30,174 +Move|33,261 +Move|37,325 +Move|42,506 +Move|49,212 +Move|58,371 +Move|61,248 +TradeValue|50 +Item|5,2047 +EvolutionCondition|477,holditem,84,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/357.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/357.dat index ba6d2a5b1..8da3fbd21 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/357.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/357.dat @@ -1 +1,57 @@ -{"Name":"Tropius","Number":357,"ExperienceType":"Slow","BaseExperience":161,"Type1":"Grass","Type2":"Flying","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":6630,"EggPokemon":357,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,94],"HiddenAbility":139,"EggMoves":[331,174,349,29,348,437,73,363,267,13,21,235],"Machines":[174,46,92,249,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,197,156,213,211,210,13,18,34,36,38,99,72,102,117,130,164,331,263,290,355,412,318,416,432,445,363,447,496,267,590,15,19,70,148,560],"TutorMoves":[],"BaseStats":{"HP":99,"Atk":68,"Def":83,"SpAtk":72,"SpDef":87,"Speed":51},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The bunch of fruit around its neck ripens twice a year and is delicious. It's a highly favored tropical snack.","Species":"Fruit Pokémon","Height":2,"Weight":100,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":45,"Moves":[{"Level":1,"ID":437},{"Level":2,"ID":1},{"Level":3,"ID":363},{"Level":4,"ID":43},{"Level":5,"ID":16},{"Level":7,"ID":74},{"Level":11,"ID":75},{"Level":17,"ID":23},{"Level":21,"ID":230},{"Level":27,"ID":18},{"Level":31,"ID":345},{"Level":37,"ID":34},{"Level":41,"ID":235},{"Level":47,"ID":536},{"Level":51,"ID":403},{"Level":57,"ID":1},{"Level":61,"ID":76},{"Level":67,"ID":363},{"Level":71,"ID":437}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Tropius +Number|357 +ExperienceType|3 +BaseExperience|161 +Type1|Grass +Type2|Flying +CatchRate|200 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|6630 +EggPokemon|357 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|34 +Ability2|94 +HiddenAbility|139 +EggMoves|331,174,349,29,348,437,73,363,267,13,21,235 +Machines|174,46,92,249,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,197,156,213,211,210,13,18,34,36,38,99,72,102,117,130,164,331,263,290,355,412,318,416,432,445,363,447,496,267,590,15,19,70,148,560 +BaseHP|99 +BaseAttack|68 +BaseDefense|83 +BaseSpAttack|72 +BaseSpDefense|87 +BaseSpeed|51 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The bunch of fruit around its neck ripens twice a year and is delicious. It's a highly favored tropical snack.\Fruit Pokémon\100\2\0,148,0 +Scale|1.4 +Move|1,437 +Move|1,516 +Move|1,363 +Move|1,43 +Move|1,16 +Move|7,74 +Move|11,75 +Move|17,23 +Move|21,230 +Move|27,18 +Move|31,345 +Move|37,34 +Move|41,235 +Move|47,536 +Move|51,403 +Move|57,516 +Move|61,76 +Move|67,363 +Move|71,437 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/358.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/358.dat index f4c53f278..3ce74a3ed 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/358.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/358.dat @@ -1 +1,56 @@ -{"Name":"Chimecho","Number":358,"ExperienceType":"Fast","BaseExperience":149,"Type1":"Psychic","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":433,"Devolution":433,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[322,174,50,248,95,105,285,500,273,138],"Machines":[174,205,92,244,237,241,173,63,196,182,240,203,218,216,94,247,104,207,214,111,138,197,156,213,171,99,100,102,115,117,118,86,149,161,164,347,269,113,219,259,263,290,285,289,412,451,278,416,445,363,447,433,473,477,496,497,605,590,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":50,"Def":70,"SpAtk":95,"SpDef":80,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It uses the sucker on its head to hang from a tree or from eaves. It can produce seven different tones.","Species":"Wind Chime Pokémon","Height":0.6,"Weight":1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":45,"Moves":[{"Level":1,"ID":361},{"Level":2,"ID":1},{"Level":3,"ID":35},{"Level":6,"ID":45},{"Level":9,"ID":310},{"Level":14,"ID":93},{"Level":17,"ID":253},{"Level":22,"ID":36},{"Level":25,"ID":281},{"Level":30,"ID":149},{"Level":33,"ID":38},{"Level":38,"ID":215},{"Level":41,"ID":219},{"Level":46,"ID":326},{"Level":49,"ID":505},{"Level":54,"ID":1},{"Level":57,"ID":361}],"EvolutionConditions":[],"Items":[{"Id":2049,"Chance":5}]} \ No newline at end of file +Name|Chimecho +Number|358 +ExperienceType|0 +BaseExperience|149 +Type1|Psychic +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|433 +IsGenderLess|0 +CanBreed|1 +Devolution|433 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|322,174,50,248,95,105,285,500,273,138 +Machines|174,205,92,244,237,241,173,63,196,182,240,203,218,216,94,247,104,207,214,111,138,197,156,213,171,99,100,102,115,117,118,86,149,161,164,347,269,113,219,259,263,290,285,289,412,451,278,416,445,363,447,433,473,477,496,497,605,590,148 +BaseHP|65 +BaseAttack|50 +BaseDefense|70 +BaseSpAttack|95 +BaseSpDefense|80 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It uses the sucker on its head to hang from a tree or from eaves. It can produce seven different tones.\Wind Chime Pokémon\1\0.6\0,148,0 +Scale|0.84 +Move|1,361 +Move|1,485 +Move|1,35 +Move|6,45 +Move|9,310 +Move|14,93 +Move|17,253 +Move|22,36 +Move|25,281 +Move|30,149 +Move|33,38 +Move|38,215 +Move|41,219 +Move|46,326 +Move|49,505 +Move|54,485 +Move|57,361 +TradeValue|45 +Item|5,2049 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/359.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/359.dat index 301ec7f68..efea8cf7c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/359.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/359.dat @@ -1 +1,61 @@ -{"Name":"Absol","Number":359,"ExperienceType":"MediumSlow","BaseExperience":163,"Type1":"Dark","Type2":"Blank","CatchRate":30,"BaseFriendship":35,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":359,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[46,105],"HiddenAbility":154,"EggMoves":[372,226,174,38,185,506,277,382,212,224,195,583,386,389,428,164],"Machines":[174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,231,225,87,216,247,189,104,207,214,201,126,129,138,197,156,213,168,210,171,14,25,32,34,36,38,58,68,99,82,85,102,117,130,86,157,164,352,347,258,269,351,53,317,332,259,263,290,289,206,451,261,421,371,416,444,445,399,404,363,468,496,497,510,514,555,590,15,70,148,560],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":130,"Def":60,"SpAtk":75,"SpDef":60,"Speed":75},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has the ability to foretell natural disasters. Its life span is over a hundred years.","Species":"Disaster Pokémon","Height":1.2,"Weight":47,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":45,"Moves":[{"Level":1,"ID":195},{"Level":2,"ID":1},{"Level":3,"ID":13},{"Level":4,"ID":197},{"Level":5,"ID":269},{"Level":6,"ID":10},{"Level":7,"ID":364},{"Level":8,"ID":43},{"Level":9,"ID":98},{"Level":12,"ID":228},{"Level":17,"ID":269},{"Level":20,"ID":44},{"Level":25,"ID":104},{"Level":28,"ID":163},{"Level":33,"ID":14},{"Level":36,"ID":248},{"Level":41,"ID":400},{"Level":44,"ID":197},{"Level":47,"ID":427},{"Level":50,"ID":389},{"Level":57,"ID":13},{"Level":60,"ID":1},{"Level":65,"ID":195}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Absol +Number|359 +ExperienceType|2 +BaseExperience|163 +Type1|Dark +Type2| +CatchRate|30 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|359 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|46 +Ability2|105 +HiddenAbility|154 +EggMoves|372,226,174,38,185,506,277,382,212,224,195,583,386,389,428,164 +Machines|174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,231,225,87,216,247,189,104,207,214,201,126,129,138,197,156,213,168,210,171,14,25,32,34,36,38,58,68,99,82,85,102,117,130,86,157,164,352,347,258,269,351,53,317,332,259,263,290,289,206,451,261,421,371,416,444,445,399,404,363,468,496,497,510,514,555,590,15,70,148,560 +BaseHP|65 +BaseAttack|130 +BaseDefense|60 +BaseSpAttack|75 +BaseSpDefense|60 +BaseSpeed|75 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has the ability to foretell natural disasters. Its life span is over a hundred years.\Disaster Pokémon\47\1.2\0,148,0 +Scale|1.08 +Move|1,195 +Move|1,382 +Move|1,13 +Move|1,197 +Move|1,269 +Move|1,10 +Move|1,364 +Move|4,43 +Move|9,98 +Move|12,228 +Move|17,269 +Move|20,44 +Move|25,104 +Move|28,163 +Move|33,14 +Move|36,248 +Move|41,400 +Move|44,197 +Move|47,427 +Move|50,389 +Move|57,13 +Move|60,382 +Move|65,195 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/359_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/359_mega.dat new file mode 100644 index 000000000..82e7282ca --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/359_mega.dat @@ -0,0 +1,61 @@ +Name|Mega Absol +Number|359 +ExperienceType|2 +BaseExperience|163 +Type1|Dark +Type2| +CatchRate|30 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|359 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|156 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|372,226,174,38,185,506,277,382,212,224,195,583,386,389,428,164 +Machines|174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,231,225,87,216,247,189,104,207,214,201,126,129,138,197,156,213,168,210,171,14,25,32,34,36,38,58,68,99,82,85,102,117,130,86,157,164,352,347,258,269,351,53,317,332,259,263,290,289,206,451,261,421,371,416,444,445,399,404,363,468,496,497,510,514,555,590,15,70,148,560 +BaseHP|65 +BaseAttack|150 +BaseDefense|60 +BaseSpAttack|115 +BaseSpDefense|60 +BaseSpeed|115 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has the ability to foretell natural disasters. Its life span is over a hundred years.\Disaster Pokémon\49\1.2\0,148,0 +Scale|1.08 +Move|1,195 +Move|1,382 +Move|1,13 +Move|1,197 +Move|1,269 +Move|1,10 +Move|1,364 +Move|4,43 +Move|9,98 +Move|12,228 +Move|17,269 +Move|20,44 +Move|25,104 +Move|28,163 +Move|33,14 +Move|36,248 +Move|41,400 +Move|44,197 +Move|47,427 +Move|50,389 +Move|57,13 +Move|60,382 +Move|65,195 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/36.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/36.dat index cf8b829f4..0ff6a9c76 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/36.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/36.dat @@ -1 +1,45 @@ -{"Name":"Clefable","Number":36,"ExperienceType":"Fast","BaseExperience":213,"Type1":"Fairy","Type2":"Blank","CatchRate":25,"BaseFriendship":140,"EggGroup1":"Fairy","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":173,"Devolution":35,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[56,98],"HiddenAbility":109,"EggMoves":[133,312,187,343,313,505,118,102,581,217,150,500,321,273,164],"Machines":[223,29,174,205,92,192,249,244,237,241,173,59,63,182,240,203,218,76,231,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,38,61,55,58,66,68,69,99,85,100,102,115,117,118,130,135,86,149,161,164,264,352,347,113,219,280,351,53,332,263,290,289,411,374,451,409,278,416,446,445,363,447,473,477,496,497,510,514,526,612,605,590,70,148],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":70,"Def":73,"SpAtk":95,"SpDef":90,"Speed":60},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"With its acute hearing, it can pick up sounds from far away. It usually hides in quiet places.","Species":"Fairy Pokémon","Height":1.3,"Weight":40,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":35,"Moves":[{"Level":1,"ID":3},{"Level":2,"ID":47},{"Level":3,"ID":107},{"Level":4,"ID":118},{"Level":5,"ID":574}],"EvolutionConditions":[],"Items":[{"Id":149,"Chance":1},{"Id":8,"Chance":5},{"Id":2005,"Chance":50}]} \ No newline at end of file +Name|Clefable +Number|36 +ExperienceType|0 +BaseExperience|213 +Type1|Fairy +Type2| +CatchRate|25 +BaseFriendship|140 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|173 +Devolution|35 +IsGenderLess|0 +IsMale|25 +Ability1|56 +Ability2|98 +HiddenAbility|109 +EggMoves|133,312,187,343,313,505,118,102,581,217,150,500,321,273,164 +Machines|223,29,174,205,92,192,249,244,237,241,173,59,63,182,240,203,218,76,231,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,38,61,55,58,66,68,69,99,85,100,102,115,117,118,130,135,86,149,161,164,264,352,347,113,219,280,351,53,332,263,290,289,411,374,451,409,278,416,446,445,363,447,473,477,496,497,510,514,526,612,605,590,70,148 +BaseHP|95 +BaseAttack|70 +BaseDefense|73 +BaseSpAttack|95 +BaseSpDefense|90 +BaseSpeed|60 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|With its acute hearing, it can pick up sounds from far away. It usually hides in quiet places.\Fairy Pokémon\40\1.3\0,148,0 +Scale|1.12 +Move|1,3 +Move|1,47 +Move|1,107 +Move|1,118 +Move|1,574 +Item|1,149 +Item|5,8 +Item|50,2005 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/360.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/360.dat index 70192b3b3..9e92b610f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/360.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/360.dat @@ -1 +1,44 @@ -{"Name":"Wynaut","Number":360,"ExperienceType":"MediumFast","BaseExperience":52,"Type1":"Psychic","Type2":"Blank","CatchRate":125,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":360,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[23],"HiddenAbility":140,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":23,"Def":48,"SpAtk":23,"SpDef":48,"Speed":23},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It tends to move in a pack. Individuals squash against one another to toughen their spirits.","Species":"Bright Pokémon","Height":0.6,"Weight":14,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":150},{"Level":2,"ID":204},{"Level":3,"ID":227},{"Level":15,"ID":68},{"Level":16,"ID":243},{"Level":17,"ID":219},{"Level":18,"ID":194}],"EvolutionConditions":[{"Condition":"15","ConditionType":"Level","Evolution":202,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Wynaut +Number|360 +ExperienceType|1 +BaseExperience|52 +Type1|Psychic +Type2| +CatchRate|125 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|360 +IsGenderLess|0 +CanBreed|1 +IsMale|50 +Ability1|23 +Ability2|Nothing +HiddenAbility|140 +Machines| +BaseHP|95 +BaseAttack|23 +BaseDefense|48 +BaseSpAttack|23 +BaseSpDefense|48 +BaseSpeed|23 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It tends to move in a pack. Individuals squash against one another to toughen their spirits.\Bright Pokémon\14\0.6\0,148,0 +Scale|0.84 +Move|1,150 +Move|1,204 +Move|1,227 +Move|15,68 +Move|15,243 +Move|15,219 +Move|15,194 +TradeValue|25 +EvolutionCondition|202,level,15,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/361.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/361.dat index f906a3c52..44d5a9132 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/361.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/361.dat @@ -1 +1,54 @@ -{"Name":"Snorunt","Number":361,"ExperienceType":"MediumFast","BaseExperience":60,"Type1":"Ice","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Mineral","BaseEggSteps":5355,"EggPokemon":361,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[39,115],"HiddenAbility":141,"EggMoves":[419,117,335,50,506,313,205,191,415,311],"Machines":[29,174,205,92,237,173,59,63,196,182,203,218,216,104,207,214,197,156,213,34,36,58,99,102,117,130,164,352,258,263,290,416,419,445,363,496,524,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":50,"Def":50,"SpAtk":50,"SpDef":50,"Speed":50},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It's said that if they are seen at midnight, they'll cause heavy snow. They eat snow and ice to survive.","Species":"Snow Hat Pokémon","Height":0.7,"Weight":16.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":40,"Moves":[{"Level":1,"ID":181},{"Level":2,"ID":43},{"Level":4,"ID":104},{"Level":10,"ID":44},{"Level":13,"ID":196},{"Level":19,"ID":29},{"Level":22,"ID":182},{"Level":28,"ID":423},{"Level":31,"ID":242},{"Level":37,"ID":420},{"Level":40,"ID":258},{"Level":46,"ID":59}],"EvolutionConditions":[{"Condition":"42","ConditionType":"Level","Evolution":362,"Trigger":"LevelUp"},{"Condition":"137","ConditionType":"Item","Evolution":478,"Trigger":"ItemUse"},{"Condition":"1","ConditionType":"Gender","Evolution":478,"Trigger":"ItemUse"}],"Items":[{"Id":2050,"Chance":5}]} \ No newline at end of file +Name|Snorunt +Number|361 +ExperienceType|1 +BaseExperience|60 +Type1|Ice +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Mineral +BaseEggSteps|5355 +EggPokemon|361 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|39 +Ability2|115 +HiddenAbility|141 +EggMoves|419,117,335,50,506,313,205,191,415,311 +Machines|29,174,205,92,237,173,59,63,196,182,203,218,216,104,207,214,197,156,213,34,36,58,99,102,117,130,164,352,258,263,290,416,419,445,363,496,524,590,148 +BaseHP|50 +BaseAttack|50 +BaseDefense|50 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|50 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It's said that if they are seen at midnight, they'll cause heavy snow. They eat snow and ice to survive.\Snow Hat Pokémon\16.8\0.7\0,148,0 +Scale|0.88 +Move|1,181 +Move|1,43 +Move|4,104 +Move|10,44 +Move|13,196 +Move|19,29 +Move|22,182 +Move|28,423 +Move|31,242 +Move|37,420 +Move|40,258 +Move|46,59 +TradeValue|40 +Item|5,2050 +EvolutionCondition|362,level,42,level +EvolutionCondition|478,item,137,item +EvolutionCondition|478,gender,1,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/362.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/362.dat index 6b052de4b..4dac21007 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/362.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/362.dat @@ -1 +1,55 @@ -{"Name":"Glalie","Number":362,"ExperienceType":"MediumFast","BaseExperience":168,"Type1":"Ice","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Mineral","BaseEggSteps":5355,"EggPokemon":361,"Devolution":361,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[39,115],"HiddenAbility":141,"EggMoves":[419,117,335,50,506,313,205,191,415,311],"Machines":[29,174,205,92,237,173,59,63,196,182,203,218,216,104,207,214,111,197,156,213,34,36,38,58,99,102,117,120,130,164,352,258,263,290,416,419,445,399,363,496,497,524,590,148],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":80,"Def":80,"SpAtk":80,"SpDef":80,"Speed":80},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can instantly freeze moisture in the atmosphere. It uses this power to freeze its foes.","Species":"Face Pokémon","Height":1.5,"Weight":256.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":70,"Moves":[{"Level":1,"ID":329},{"Level":2,"ID":181},{"Level":3,"ID":43},{"Level":4,"ID":104},{"Level":5,"ID":44},{"Level":6,"ID":104},{"Level":10,"ID":44},{"Level":13,"ID":196},{"Level":19,"ID":29},{"Level":22,"ID":182},{"Level":28,"ID":423},{"Level":31,"ID":242},{"Level":37,"ID":58},{"Level":40,"ID":258},{"Level":51,"ID":59},{"Level":59,"ID":329}],"EvolutionConditions":[],"Items":[{"Id":2050,"Chance":5}]} \ No newline at end of file +Name|Glalie +Number|362 +ExperienceType|1 +BaseExperience|168 +Type1|Ice +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Mineral +BaseEggSteps|5355 +EggPokemon|361 +IsGenderLess|0 +CanBreed|1 +Devolution|361 +IsMale|50 +Ability1|39 +Ability2|115 +HiddenAbility|141 +EggMoves|419,117,335,50,506,313,205,191,415,311 +Machines|29,174,205,92,237,173,59,63,196,182,203,218,216,104,207,214,111,197,156,213,34,36,38,58,99,102,117,120,130,164,352,258,263,290,416,419,445,399,363,496,497,524,590,148 +BaseHP|80 +BaseAttack|80 +BaseDefense|80 +BaseSpAttack|80 +BaseSpDefense|80 +BaseSpeed|80 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can instantly freeze moisture in the atmosphere. It uses this power to freeze its foes.\Face Pokémon\256.5\1.5\0,148,0 +Scale|1.2 +Move|1,329 +Move|1,181 +Move|1,43 +Move|1,104 +Move|1,44 +Move|4,104 +Move|10,44 +Move|13,196 +Move|19,29 +Move|22,182 +Move|28,423 +Move|31,242 +Move|37,58 +Move|40,258 +Move|51,59 +Move|59,329 +TradeValue|70 +Item|5,2050 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/362_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/362_mega.dat new file mode 100644 index 000000000..c0852d843 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/362_mega.dat @@ -0,0 +1,55 @@ +Name|Mega Glalie +Number|362 +ExperienceType|1 +BaseExperience|168 +Type1|Ice +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Mineral +BaseEggSteps|5355 +EggPokemon|361 +IsGenderLess|0 +CanBreed|1 +Devolution|361 +IsMale|50 +Ability1|174 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|419,117,335,50,506,313,205,191,415,311 +Machines|29,174,205,92,237,173,59,63,196,182,203,218,216,104,207,214,111,197,156,213,34,36,38,58,99,102,117,120,130,164,352,258,263,290,416,419,445,399,363,496,497,524,590,148 +BaseHP|80 +BaseAttack|120 +BaseDefense|80 +BaseSpAttack|120 +BaseSpDefense|80 +BaseSpeed|100 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can instantly freeze moisture in the atmosphere. It uses this power to freeze its foes.\Face Pokémon\350.2\2.1\0,148,0 +Scale|1.2 +Move|1,329 +Move|1,181 +Move|1,43 +Move|1,104 +Move|1,44 +Move|4,104 +Move|10,44 +Move|13,196 +Move|19,29 +Move|22,182 +Move|28,423 +Move|31,242 +Move|37,58 +Move|40,258 +Move|51,59 +Move|59,329 +TradeValue|70 +Item|5,2050 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/363.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/363.dat index 3d92b4c8f..f71b6d426 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/363.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/363.dat @@ -1 +1,52 @@ -{"Name":"Spheal","Number":363,"ExperienceType":"MediumSlow","BaseExperience":58,"Type1":"Ice","Type2":"Water","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":363,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[47,115],"HiddenAbility":12,"EggMoves":[392,187,174,90,205,324,214,255,254,256,352,346,281,157],"Machines":[174,205,92,249,237,173,59,63,196,182,240,203,218,231,89,216,189,104,207,214,111,197,156,213,34,36,61,55,58,99,102,117,130,157,164,352,258,317,263,290,362,416,445,363,496,497,524,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":40,"Def":50,"SpAtk":55,"SpDef":50,"Speed":25},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It crosses the oceans by rolling itself on drifting ice. Fluffy fur keeps it warm when the temperature is below freezing.","Species":"Clap Pokémon","Height":0.8,"Weight":39.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":35,"Moves":[{"Level":1,"ID":111},{"Level":2,"ID":181},{"Level":3,"ID":45},{"Level":4,"ID":55},{"Level":7,"ID":227},{"Level":13,"ID":301},{"Level":19,"ID":34},{"Level":25,"ID":62},{"Level":31,"ID":258},{"Level":37,"ID":156},{"Level":38,"ID":173},{"Level":43,"ID":59},{"Level":49,"ID":329}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":364,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Spheal +Number|363 +ExperienceType|2 +BaseExperience|58 +Type1|Ice +Type2|Water +CatchRate|255 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|363 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|47 +Ability2|115 +HiddenAbility|12 +EggMoves|392,187,174,90,205,324,214,255,254,256,352,346,281,157 +Machines|174,205,92,249,237,173,59,63,196,182,240,203,218,231,89,216,189,104,207,214,111,197,156,213,34,36,61,55,58,99,102,117,130,157,164,352,258,317,263,290,362,416,445,363,496,497,524,590,57,70,250,127,291 +BaseHP|70 +BaseAttack|40 +BaseDefense|50 +BaseSpAttack|55 +BaseSpDefense|50 +BaseSpeed|25 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It crosses the oceans by rolling itself on drifting ice. Fluffy fur keeps it warm when the temperature is below freezing.\Clap Pokémon\39.5\0.8\0,148,0 +Scale|0.92 +Move|1,111 +Move|1,181 +Move|1,45 +Move|1,55 +Move|7,227 +Move|13,301 +Move|19,34 +Move|25,62 +Move|31,258 +Move|37,156 +Move|37,173 +Move|43,59 +Move|49,329 +TradeValue|35 +EvolutionCondition|364,level,32,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/364.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/364.dat index 01bf3524f..96ab21e87 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/364.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/364.dat @@ -1 +1,53 @@ -{"Name":"Sealeo","Number":364,"ExperienceType":"MediumSlow","BaseExperience":144,"Type1":"Ice","Type2":"Water","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":363,"Devolution":363,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[47,115],"HiddenAbility":12,"EggMoves":[392,187,174,90,205,324,214,255,254,256,352,346,281,157],"Machines":[174,205,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,189,104,207,214,111,197,156,213,34,36,61,55,58,99,102,117,130,157,164,352,258,317,263,290,362,416,445,363,496,497,524,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":60,"Def":70,"SpAtk":75,"SpDef":70,"Speed":45},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has a very sensitive nose. It touches new things with its nose to examine them.","Species":"Ball Roll Pokémon","Height":1.1,"Weight":87.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":50,"Moves":[{"Level":1,"ID":181},{"Level":2,"ID":45},{"Level":3,"ID":55},{"Level":4,"ID":227},{"Level":7,"ID":227},{"Level":13,"ID":301},{"Level":19,"ID":34},{"Level":25,"ID":62},{"Level":31,"ID":258},{"Level":32,"ID":207},{"Level":39,"ID":156},{"Level":40,"ID":173},{"Level":47,"ID":59},{"Level":55,"ID":329}],"EvolutionConditions":[{"Condition":"44","ConditionType":"Level","Evolution":365,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Sealeo +Number|364 +ExperienceType|2 +BaseExperience|144 +Type1|Ice +Type2|Water +CatchRate|120 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|363 +IsGenderLess|0 +CanBreed|1 +Devolution|363 +IsMale|50 +Ability1|47 +Ability2|115 +HiddenAbility|12 +EggMoves|392,187,174,90,205,324,214,255,254,256,352,346,281,157 +Machines|174,205,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,189,104,207,214,111,197,156,213,34,36,61,55,58,99,102,117,130,157,164,352,258,317,263,290,362,416,445,363,496,497,524,590,57,70,250,127,291 +BaseHP|90 +BaseAttack|60 +BaseDefense|70 +BaseSpAttack|75 +BaseSpDefense|70 +BaseSpeed|45 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has a very sensitive nose. It touches new things with its nose to examine them.\Ball Roll Pokémon\87.6\1.1\0,148,0 +Scale|1.04 +Move|1,181 +Move|1,45 +Move|1,55 +Move|1,227 +Move|7,227 +Move|13,301 +Move|19,34 +Move|25,62 +Move|31,258 +Move|32,207 +Move|39,156 +Move|39,173 +Move|47,59 +Move|55,329 +TradeValue|50 +EvolutionCondition|365,level,44,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/365.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/365.dat index 5b45216b1..53633ccde 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/365.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/365.dat @@ -1 +1,54 @@ -{"Name":"Walrein","Number":365,"ExperienceType":"MediumSlow","BaseExperience":239,"Type1":"Ice","Type2":"Water","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":363,"Devolution":364,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[47,115],"HiddenAbility":12,"EggMoves":[392,187,174,90,205,324,214,255,254,256,352,346,281,157],"Machines":[174,205,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,189,104,207,214,111,197,156,213,210,34,36,38,61,55,58,99,90,102,117,130,157,164,352,258,317,263,290,362,416,419,445,363,496,523,524,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":110,"Atk":80,"Def":90,"SpAtk":95,"SpDef":90,"Speed":65},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It shatters drift ice with its strong tusks. Its thick layer of blubber repels enemy attacks.","Species":"Ice Break Pokémon","Height":1.4,"Weight":150.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":70,"Moves":[{"Level":1,"ID":242},{"Level":2,"ID":181},{"Level":3,"ID":45},{"Level":4,"ID":55},{"Level":5,"ID":227},{"Level":7,"ID":227},{"Level":13,"ID":301},{"Level":19,"ID":34},{"Level":25,"ID":62},{"Level":31,"ID":258},{"Level":32,"ID":207},{"Level":39,"ID":156},{"Level":40,"ID":173},{"Level":44,"ID":423},{"Level":52,"ID":59},{"Level":65,"ID":329}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Walrein +Number|365 +ExperienceType|2 +BaseExperience|239 +Type1|Ice +Type2|Water +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|363 +IsGenderLess|0 +CanBreed|1 +Devolution|364 +IsMale|50 +Ability1|47 +Ability2|115 +HiddenAbility|12 +EggMoves|392,187,174,90,205,324,214,255,254,256,352,346,281,157 +Machines|174,205,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,189,104,207,214,111,197,156,213,210,34,36,38,61,55,58,99,90,102,117,130,157,164,352,258,317,263,290,362,416,419,445,363,496,523,524,590,57,70,250,127,291 +BaseHP|110 +BaseAttack|80 +BaseDefense|90 +BaseSpAttack|95 +BaseSpDefense|90 +BaseSpeed|65 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It shatters drift ice with its strong tusks. Its thick layer of blubber repels enemy attacks.\Ice Break Pokémon\150.6\1.4\0,148,0 +Scale|1.16 +Move|1,242 +Move|1,181 +Move|1,45 +Move|1,55 +Move|1,227 +Move|7,227 +Move|13,301 +Move|19,34 +Move|25,62 +Move|31,258 +Move|32,207 +Move|39,156 +Move|39,173 +Move|44,423 +Move|52,59 +Move|65,329 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/366.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/366.dat index 630c4f166..22307bc25 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/366.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/366.dat @@ -1 +1,47 @@ -{"Name":"Clamperl","Number":366,"ExperienceType":"MediumFast","BaseExperience":69,"Type1":"Water","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":366,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[75],"HiddenAbility":155,"EggMoves":[392,112,34,362,109,203,300,330,287,48,352],"Machines":[174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,197,156,213,34,36,61,55,58,99,102,117,164,352,258,263,290,362,416,445,363,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":64,"Def":85,"SpAtk":74,"SpDef":55,"Speed":32},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it evolves mysterious pearl that amplifies psychic powers when it's held.","Species":"Bivalve Pokémon","Height":0.4,"Weight":52.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":128},{"Level":2,"ID":55},{"Level":3,"ID":250},{"Level":4,"ID":334},{"Level":50,"ID":504}],"EvolutionConditions":[{"Condition":"167","ConditionType":"HoldItem","Evolution":367,"Trigger":"Trading"},{"Condition":"162","ConditionType":"HoldItem","Evolution":368,"Trigger":"Trading"}],"Items":[{"Id":111,"Chance":5},{"Id":110,"Chance":50}]} \ No newline at end of file +Name|Clamperl +Number|366 +ExperienceType|1 +BaseExperience|69 +Type1|Water +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|366 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|75 +Ability2|Nothing +HiddenAbility|155 +EggMoves|392,112,34,362,109,203,300,330,287,48,352 +Machines|174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,197,156,213,34,36,61,55,58,99,102,117,164,352,258,263,290,362,416,445,363,496,503,590,57,250,127,291 +BaseHP|35 +BaseAttack|64 +BaseDefense|85 +BaseSpAttack|74 +BaseSpDefense|55 +BaseSpeed|32 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it evolves mysterious pearl that amplifies psychic powers when it's held.\Bivalve Pokémon\52.5\0.4\0,148,0 +Scale|0.7 +Move|1,128 +Move|1,55 +Move|1,250 +Move|1,334 +Move|50,504 +TradeValue|35 +Item|5,111 +Item|50,110 +EvolutionCondition|367,holditem,167,trade +EvolutionCondition|368,holditem,162,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/367.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/367.dat index 26e568bfc..dc6468163 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/367.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/367.dat @@ -1 +1,51 @@ -{"Name":"Huntail","Number":367,"ExperienceType":"MediumFast","BaseExperience":170,"Type1":"Water","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":366,"Devolution":366,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33],"HiddenAbility":41,"EggMoves":[392,112,34,362,109,203,300,330,287,48,352],"Machines":[174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,34,36,61,55,58,99,82,102,117,130,164,352,258,317,263,290,289,362,416,445,363,496,503,611,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":104,"Def":105,"SpAtk":94,"SpDef":75,"Speed":52},"RewardEV":{"HP":0,"Atk":1,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives deep in the pitch-dark sea. It attracts prey by moving its tail in mimicry of a small animal.","Species":"Deep Sea Pokémon","Height":1.7,"Weight":27,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":60,"Moves":[{"Level":1,"ID":250},{"Level":6,"ID":44},{"Level":10,"ID":103},{"Level":15,"ID":352},{"Level":19,"ID":184},{"Level":24,"ID":423},{"Level":28,"ID":362},{"Level":33,"ID":226},{"Level":37,"ID":291},{"Level":42,"ID":242},{"Level":46,"ID":401},{"Level":50,"ID":56}],"EvolutionConditions":[],"Items":[{"Id":167,"Chance":5}]} \ No newline at end of file +Name|Huntail +Number|367 +ExperienceType|1 +BaseExperience|170 +Type1|Water +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|366 +IsGenderLess|0 +CanBreed|1 +Devolution|366 +IsMale|50 +Ability1|33 +Ability2|Nothing +HiddenAbility|41 +EggMoves|392,112,34,362,109,203,300,330,287,48,352 +Machines|174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,34,36,61,55,58,99,82,102,117,130,164,352,258,317,263,290,289,362,416,445,363,496,503,611,590,57,250,127,291 +BaseHP|55 +BaseAttack|104 +BaseDefense|105 +BaseSpAttack|94 +BaseSpDefense|75 +BaseSpeed|52 +FPHP|0 +FPAttack|1 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives deep in the pitch-dark sea. It attracts prey by moving its tail in mimicry of a small animal.\Deep Sea Pokémon\27\1.7\0,148,0 +Scale|1.28 +Move|1,250 +Move|6,44 +Move|10,103 +Move|15,352 +Move|19,184 +Move|24,423 +Move|28,362 +Move|33,226 +Move|37,291 +Move|42,242 +Move|46,401 +Move|50,56 +TradeValue|60 +Item|5,167 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/368.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/368.dat index ec0154b3c..8a31977eb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/368.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/368.dat @@ -1 +1,51 @@ -{"Name":"Gorebyss","Number":368,"ExperienceType":"MediumFast","BaseExperience":170,"Type1":"Water","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":366,"Devolution":366,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33],"HiddenAbility":93,"EggMoves":[392,112,34,362,109,203,300,330,287,48,352],"Machines":[174,92,244,237,173,59,63,196,182,240,203,218,216,94,247,189,104,207,214,129,197,156,213,34,36,61,55,58,99,102,117,130,164,352,258,219,263,290,362,416,445,363,496,503,611,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":84,"Def":105,"SpAtk":114,"SpDef":75,"Speed":52},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its pink body becomes more vivid with the rise of water temperatures in the springtime.","Species":"South Sea Pokémon","Height":1.8,"Weight":22.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":60,"Moves":[{"Level":1,"ID":250},{"Level":6,"ID":93},{"Level":10,"ID":97},{"Level":15,"ID":352},{"Level":19,"ID":133},{"Level":24,"ID":392},{"Level":28,"ID":445},{"Level":33,"ID":226},{"Level":37,"ID":291},{"Level":42,"ID":94},{"Level":46,"ID":401},{"Level":50,"ID":56}],"EvolutionConditions":[],"Items":[{"Id":162,"Chance":5}]} \ No newline at end of file +Name|Gorebyss +Number|368 +ExperienceType|1 +BaseExperience|170 +Type1|Water +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|366 +IsGenderLess|0 +CanBreed|1 +Devolution|366 +IsMale|50 +Ability1|33 +Ability2|Nothing +HiddenAbility|93 +EggMoves|392,112,34,362,109,203,300,330,287,48,352 +Machines|174,92,244,237,173,59,63,196,182,240,203,218,216,94,247,189,104,207,214,129,197,156,213,34,36,61,55,58,99,102,117,130,164,352,258,219,263,290,362,416,445,363,496,503,611,590,57,250,127,291 +BaseHP|55 +BaseAttack|84 +BaseDefense|105 +BaseSpAttack|114 +BaseSpDefense|75 +BaseSpeed|52 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its pink body becomes more vivid with the rise of water temperatures in the springtime.\South Sea Pokémon\22.6\1.8\0,148,0 +Scale|1.32 +Move|1,250 +Move|6,93 +Move|10,97 +Move|15,352 +Move|19,133 +Move|24,392 +Move|28,445 +Move|33,226 +Move|37,291 +Move|42,94 +Move|46,401 +Move|50,56 +TradeValue|60 +Item|5,162 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/369.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/369.dat index a6d625228..783d89ddc 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/369.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/369.dat @@ -1 +1,56 @@ -{"Name":"Relicanth","Number":369,"ExperienceType":"Slow","BaseExperience":170,"Type1":"Water","Type2":"Rock","CatchRate":25,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water2","BaseEggSteps":10455,"EggPokemon":1,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[33,69],"HiddenAbility":5,"EggMoves":[133,401,362,222,341,189,330,130,214,173,346,428,157],"Machines":[174,92,249,244,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,201,197,156,213,34,36,61,55,58,99,102,117,130,157,164,352,347,258,219,317,263,290,362,416,397,444,446,445,363,479,496,503,523,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":90,"Def":130,"SpAtk":45,"SpDef":65,"Speed":55},"RewardEV":{"HP":1,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Discovered by chance during deep-sea explorations, it has not changed since ancient times.","Species":"Longevity Pokémon","Height":1,"Weight":23.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":40,"Moves":[{"Level":1,"ID":457},{"Level":2,"ID":56},{"Level":3,"ID":246},{"Level":4,"ID":300},{"Level":5,"ID":33},{"Level":6,"ID":106},{"Level":8,"ID":55},{"Level":15,"ID":317},{"Level":22,"ID":281},{"Level":29,"ID":36},{"Level":36,"ID":300},{"Level":43,"ID":246},{"Level":50,"ID":38},{"Level":57,"ID":291},{"Level":64,"ID":156},{"Level":71,"ID":56},{"Level":78,"ID":457}],"EvolutionConditions":[],"Items":[{"Id":162,"Chance":5}]} \ No newline at end of file +Name|Relicanth +Number|369 +ExperienceType|3 +BaseExperience|170 +Type1|Water +Type2|Rock +CatchRate|25 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water2 +BaseEggSteps|10455 +EggPokemon|1 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|33 +Ability2|69 +HiddenAbility|5 +EggMoves|133,401,362,222,341,189,330,130,214,173,346,428,157 +Machines|174,92,249,244,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,201,197,156,213,34,36,61,55,58,99,102,117,130,157,164,352,347,258,219,317,263,290,362,416,397,444,446,445,363,479,496,503,523,590,57,250,127,291 +BaseHP|100 +BaseAttack|90 +BaseDefense|130 +BaseSpAttack|45 +BaseSpDefense|65 +BaseSpeed|55 +FPHP|1 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Discovered by chance during deep-sea explorations, it has not changed since ancient times.\Longevity Pokémon\23.4\1\0,148,0 +Scale|1 +Move|1,457 +Move|1,56 +Move|1,246 +Move|1,300 +Move|1,33 +Move|1,106 +Move|8,55 +Move|15,317 +Move|22,281 +Move|29,36 +Move|36,300 +Move|43,246 +Move|50,38 +Move|57,291 +Move|64,156 +Move|71,56 +Move|78,457 +TradeValue|40 +Item|5,162 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/37.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/37.dat index 69fc91511..10bc8c090 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/37.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/37.dat @@ -1 +1,58 @@ -{"Name":"Vulpix","Number":37,"ExperienceType":"MediumFast","BaseExperience":60,"Type1":"Fire","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":37,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[18],"HiddenAbility":70,"EggMoves":[445,50,326,185,175,394,257,506,336,95,384,290,180,541,412],"Machines":[29,174,46,92,244,237,241,173,63,182,203,218,231,216,91,104,207,214,126,129,197,156,213,25,34,36,99,102,117,130,164,219,53,263,290,315,412,261,371,416,445,399,363,488,496,510,590],"TutorMoves":[],"BaseStats":{"HP":38,"Atk":41,"Def":40,"SpAtk":50,"SpDef":65,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"As it develops tail gains color and splits into six. It is quite warm and cuddly.","Species":"Fox Pokémon","Height":0.6,"Weight":9.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":52},{"Level":4,"ID":39},{"Level":7,"ID":46},{"Level":9,"ID":608},{"Level":10,"ID":98},{"Level":12,"ID":83},{"Level":15,"ID":109},{"Level":18,"ID":1},{"Level":20,"ID":185},{"Level":23,"ID":481},{"Level":26,"ID":261},{"Level":28,"ID":506},{"Level":31,"ID":371},{"Level":34,"ID":53},{"Level":36,"ID":219},{"Level":39,"ID":326},{"Level":42,"ID":126},{"Level":44,"ID":1},{"Level":47,"ID":445},{"Level":50,"ID":517}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Item","Evolution":38,"Trigger":"ItemUse"}],"Items":[{"Id":2003,"Chance":100}]} \ No newline at end of file +Name|Vulpix +Number|37 +ExperienceType|1 +BaseExperience|60 +Type1|Fire +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|37 +IsGenderLess|0 +IsMale|25 +Ability1|18 +Ability2|Nothing +HiddenAbility|70 +EggMoves|445,50,326,185,175,394,257,506,336,95,384,290,180,541,412 +Machines|29,174,46,92,244,237,241,173,63,182,203,218,231,216,91,104,207,214,126,129,197,156,213,25,34,36,99,102,117,130,164,219,53,263,290,315,412,261,371,416,445,399,363,488,496,510,590 +BaseHP|38 +BaseAttack|41 +BaseDefense|40 +BaseSpAttack|50 +BaseSpDefense|65 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|As it develops tail gains color and splits into six. It is quite warm and cuddly.\Fox Pokémon\9.9\0.6\0,148,0 +Scale|0.84 +Move|1,52 +Move|4,39 +Move|7,46 +Move|9,608 +Move|10,98 +Move|12,83 +Move|15,109 +Move|18,286 +Move|20,185 +Move|23,481 +Move|26,261 +Move|28,506 +Move|31,371 +Move|34,53 +Move|36,219 +Move|39,326 +Move|42,126 +Move|44,288 +Move|47,445 +Move|50,517 +EvolutionCondition|38,item,22,item +Item|100,2003 +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/370.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/370.dat index 9614603b5..c724e0d81 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/370.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/370.dat @@ -1 +1,53 @@ -{"Name":"Luvdisc","Number":370,"ExperienceType":"Fast","BaseExperience":116,"Type1":"Water","Type2":"Blank","CatchRate":225,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":370,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[33],"HiddenAbility":93,"EggMoves":[453,392,362,445,494,505,300,150,48,346],"Machines":[174,92,244,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,61,55,58,99,102,117,164,352,258,219,263,290,362,416,445,363,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":43,"Atk":30,"Def":55,"SpAtk":40,"SpDef":65,"Speed":97},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its heart-shaped body makes it popular. In some places, you would give a LUVDISC to someone you love.","Species":"Rendezvous Pokémon","Height":0.6,"Weight":8.7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":35,"Moves":[{"Level":1,"ID":33},{"Level":4,"ID":204},{"Level":7,"ID":55},{"Level":9,"ID":97},{"Level":14,"ID":36},{"Level":17,"ID":1},{"Level":22,"ID":352},{"Level":27,"ID":213},{"Level":31,"ID":175},{"Level":37,"ID":186},{"Level":40,"ID":56},{"Level":46,"ID":392},{"Level":51,"ID":445},{"Level":55,"ID":219}],"EvolutionConditions":[],"Items":[{"Id":190,"Chance":50}]} \ No newline at end of file +Name|Luvdisc +Number|370 +ExperienceType|0 +BaseExperience|116 +Type1|Water +Type2| +CatchRate|225 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|370 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|33 +Ability2|Nothing +HiddenAbility|93 +EggMoves|453,392,362,445,494,505,300,150,48,346 +Machines|174,92,244,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,61,55,58,99,102,117,164,352,258,219,263,290,362,416,445,363,496,503,590,57,250,127,291 +BaseHP|43 +BaseAttack|30 +BaseDefense|55 +BaseSpAttack|40 +BaseSpDefense|65 +BaseSpeed|97 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Its heart-shaped body makes it popular. In some places, you would give a LUVDISC to someone you love.\Rendezvous Pokémon\8.7\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|4,204 +Move|7,55 +Move|9,97 +Move|14,36 +Move|17,381 +Move|22,352 +Move|27,213 +Move|31,175 +Move|37,186 +Move|40,56 +Move|46,392 +Move|51,445 +Move|55,219 +TradeValue|35 +Item|50,190 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/371.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/371.dat index 815ec08f3..8e351127c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/371.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/371.dat @@ -1 +1,53 @@ -{"Name":"Bagon","Number":371,"ExperienceType":"Slow","BaseExperience":60,"Type1":"Dragon","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Dragon","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":371,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[69],"HiddenAbility":125,"EggMoves":[82,111,349,406,407,203,424,56,37,239,421],"Machines":[29,174,46,92,192,249,237,241,173,63,182,240,203,218,225,216,189,104,207,214,126,197,156,213,210,34,36,99,82,102,117,130,157,164,337,280,53,317,332,263,290,406,421,416,445,363,468,496,510,590,15,70],"TutorMoves":[434],"BaseStats":{"HP":45,"Atk":75,"Def":60,"SpAtk":40,"SpDef":30,"Speed":50},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its well-developed neck muscles and ironlike head can smash boulders into pieces.","Species":"Rock Head Pokémon","Height":0.6,"Weight":42.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":40,"Moves":[{"Level":1,"ID":99},{"Level":5,"ID":44},{"Level":10,"ID":43},{"Level":16,"ID":29},{"Level":20,"ID":116},{"Level":25,"ID":52},{"Level":31,"ID":225},{"Level":35,"ID":428},{"Level":40,"ID":184},{"Level":46,"ID":242},{"Level":50,"ID":337},{"Level":55,"ID":38}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":372,"Trigger":"LevelUp"}],"Items":[{"Id":144,"Chance":5}]} \ No newline at end of file +Name|Bagon +Number|371 +ExperienceType|3 +BaseExperience|60 +Type1|Dragon +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Dragon +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|371 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|69 +Ability2|Nothing +HiddenAbility|125 +EggMoves|82,111,349,406,407,203,424,56,37,239,421 +Machines|29,174,46,92,192,249,237,241,173,63,182,240,203,218,225,216,189,104,207,214,126,197,156,213,210,34,36,99,82,102,117,130,157,164,337,280,53,317,332,263,290,406,421,416,445,363,468,496,510,590,15,70 +TutorMoves|434 +BaseHP|45 +BaseAttack|75 +BaseDefense|60 +BaseSpAttack|40 +BaseSpDefense|30 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its well-developed neck muscles and ironlike head can smash boulders into pieces.\Rock Head Pokémon\42.1\0.6\0,148,0 +Scale|0.84 +Move|1,99 +Move|5,44 +Move|10,43 +Move|16,29 +Move|20,116 +Move|25,52 +Move|31,225 +Move|35,428 +Move|40,184 +Move|46,242 +Move|50,337 +Move|55,38 +TradeValue|40 +Item|5,144 +EvolutionCondition|372,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/372.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/372.dat index 0f8e76a22..822d96448 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/372.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/372.dat @@ -1 +1,57 @@ -{"Name":"Shelgon","Number":372,"ExperienceType":"Slow","BaseExperience":147,"Type1":"Dragon","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Dragon","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":371,"Devolution":371,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[69],"HiddenAbility":142,"EggMoves":[82,111,349,406,407,203,424,56,37,239,421],"Machines":[29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,225,216,189,104,207,214,126,111,197,156,213,210,25,34,36,38,99,82,102,117,130,157,164,337,280,53,317,332,263,290,406,421,416,445,363,468,496,510,590,15,70,560],"TutorMoves":[434],"BaseStats":{"HP":65,"Atk":95,"Def":100,"SpAtk":60,"SpDef":50,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It surrounds its body in an iron-hard shell to accumulate enough power to evolve.","Species":"Endurance Pokémon","Height":1.1,"Weight":110.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":60,"Moves":[{"Level":1,"ID":99},{"Level":2,"ID":44},{"Level":3,"ID":43},{"Level":4,"ID":29},{"Level":5,"ID":44},{"Level":10,"ID":43},{"Level":16,"ID":29},{"Level":20,"ID":116},{"Level":25,"ID":52},{"Level":30,"ID":182},{"Level":32,"ID":225},{"Level":37,"ID":428},{"Level":43,"ID":184},{"Level":50,"ID":242},{"Level":55,"ID":337},{"Level":61,"ID":38}],"EvolutionConditions":[{"Condition":"50","ConditionType":"Level","Evolution":373,"Trigger":"LevelUp"}],"Items":[{"Id":144,"Chance":5}]} \ No newline at end of file +Name|Shelgon +Number|372 +ExperienceType|3 +BaseExperience|147 +Type1|Dragon +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Dragon +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|371 +IsGenderLess|0 +CanBreed|1 +Devolution|371 +IsMale|50 +Ability1|69 +Ability2|Nothing +HiddenAbility|142 +EggMoves|82,111,349,406,407,203,424,56,37,239,421 +Machines|29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,225,216,189,104,207,214,126,111,197,156,213,210,25,34,36,38,99,82,102,117,130,157,164,337,280,53,317,332,263,290,406,421,416,445,363,468,496,510,590,15,70,560 +TutorMoves|434 +BaseHP|65 +BaseAttack|95 +BaseDefense|100 +BaseSpAttack|60 +BaseSpDefense|50 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It surrounds its body in an iron-hard shell to accumulate enough power to evolve.\Endurance Pokémon\110.5\1.1\0,148,0 +Scale|1.04 +Move|1,99 +Move|1,44 +Move|1,43 +Move|1,29 +Move|5,44 +Move|10,43 +Move|16,29 +Move|20,116 +Move|25,52 +Move|30,182 +Move|32,225 +Move|37,428 +Move|43,184 +Move|50,242 +Move|55,337 +Move|61,38 +TradeValue|60 +Item|5,144 +EvolutionCondition|373,Level,50,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/373.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/373.dat index efa858f18..0fff7760d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/373.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/373.dat @@ -1 +1,61 @@ -{"Name":"Salamence","Number":373,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Dragon","Type2":"Flying","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Dragon","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":371,"Devolution":372,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22],"HiddenAbility":153,"EggMoves":[111,349,406,82,407,203,424,56,37,239,421],"Machines":[29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,231,225,89,216,189,104,207,214,126,129,111,197,156,213,211,210,13,18,25,34,36,38,99,82,102,117,130,157,164,337,280,53,317,332,263,290,355,406,421,416,432,444,445,363,468,496,510,523,525,590,15,19,70,560],"TutorMoves":[434],"BaseStats":{"HP":95,"Atk":135,"Def":80,"SpAtk":110,"SpDef":80,"Speed":100},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It's uncontrollable if enraged. It flies around spouting flames and scorching fields and mountains.","Species":"Dragon Pokémon","Height":1.5,"Weight":102.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":75,"Moves":[{"Level":1,"ID":38},{"Level":2,"ID":424},{"Level":3,"ID":422},{"Level":4,"ID":99},{"Level":5,"ID":44},{"Level":6,"ID":43},{"Level":7,"ID":29},{"Level":8,"ID":44},{"Level":10,"ID":43},{"Level":16,"ID":29},{"Level":20,"ID":116},{"Level":25,"ID":52},{"Level":30,"ID":182},{"Level":32,"ID":225},{"Level":37,"ID":428},{"Level":43,"ID":184},{"Level":50,"ID":19},{"Level":53,"ID":242},{"Level":61,"ID":337},{"Level":70,"ID":38},{"Level":80,"ID":525}],"EvolutionConditions":[],"Items":[{"Id":144,"Chance":5}]} \ No newline at end of file +Name|Salamence +Number|373 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|Flying +CatchRate|45 +BaseFriendship|35 +EggGroup1|Dragon +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|371 +IsGenderLess|0 +CanBreed|1 +Devolution|372 +IsMale|50 +Ability1|22 +Ability2|Nothing +HiddenAbility|153 +EggMoves|111,349,406,82,407,203,424,56,37,239,421 +Machines|29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,231,225,89,216,189,104,207,214,126,129,111,197,156,213,211,210,13,18,25,34,36,38,99,82,102,117,130,157,164,337,280,53,317,332,263,290,355,406,421,416,432,444,445,363,468,496,510,523,525,590,15,19,70,560 +TutorMoves|434 +BaseHP|95 +BaseAttack|135 +BaseDefense|80 +BaseSpAttack|110 +BaseSpDefense|80 +BaseSpeed|100 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It's uncontrollable if enraged. It flies around spouting flames and scorching fields and mountains.\Dragon Pokémon\102.6\1.5\0,148,0 +Scale|1.2 +Move|1,38 +Move|1,424 +Move|1,422 +Move|1,99 +Move|1,44 +Move|1,43 +Move|1,29 +Move|5,44 +Move|10,43 +Move|16,29 +Move|20,116 +Move|25,52 +Move|30,182 +Move|32,225 +Move|37,428 +Move|43,184 +Move|50,19 +Move|53,242 +Move|61,337 +Move|70,38 +Move|80,525 +TradeValue|75 +Item|5,144 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/373_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/373_mega.dat new file mode 100644 index 000000000..2f1c2860d --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/373_mega.dat @@ -0,0 +1,61 @@ +Name|Mega Salamence +Number|373 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|Flying +CatchRate|45 +BaseFriendship|35 +EggGroup1|Dragon +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|371 +IsGenderLess|0 +CanBreed|1 +Devolution|372 +IsMale|50 +Ability1|184 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|111,349,406,82,407,203,424,56,37,239,421 +Machines|29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,231,225,89,216,189,104,207,214,126,129,111,197,156,213,211,210,13,18,25,34,36,38,99,82,102,117,130,157,164,337,280,53,317,332,263,290,355,406,421,416,432,444,445,363,468,496,510,523,525,590,15,19,70,560 +TutorMoves|434 +BaseHP|95 +BaseAttack|145 +BaseDefense|130 +BaseSpAttack|120 +BaseSpDefense|90 +BaseSpeed|120 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It's uncontrollable if enraged. It flies around spouting flames and scorching fields and mountains.\Dragon Pokémon\112.6\1.8\0,148,0 +Scale|1.2 +Move|1,38 +Move|1,424 +Move|1,422 +Move|1,99 +Move|1,44 +Move|1,43 +Move|1,29 +Move|5,44 +Move|10,43 +Move|16,29 +Move|20,116 +Move|25,52 +Move|30,182 +Move|32,225 +Move|37,428 +Move|43,184 +Move|50,19 +Move|53,242 +Move|61,337 +Move|70,38 +Move|80,525 +TradeValue|75 +Item|5,144 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/374.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/374.dat index 931599b6e..54dadfbcb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/374.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/374.dat @@ -1 +1,40 @@ -{"Name":"Beldum","Number":374,"ExperienceType":"MediumSlow","BaseExperience":60,"Type1":"Steel","Type2":"Psychic","CatchRate":3,"BaseFriendship":35,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":374,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[29],"HiddenAbility":135,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":55,"Def":80,"SpAtk":35,"SpDef":60,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The magnetic force generated by its body repels the ground's natural magnetism, letting it float. ","Species":"Iron Ball Pokémon","Height":0.6,"Weight":95.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":40,"Moves":[{"Level":1,"ID":36}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":375,"Trigger":"LevelUp"}],"Items":[{"Id":143,"Chance":5}]} \ No newline at end of file +Name|Beldum +Number|374 +ExperienceType|2 +BaseExperience|60 +Type1|Steel +Type2|Psychic +CatchRate|3 +BaseFriendship|35 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|374 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|29 +Ability2|Nothing +HiddenAbility|135 +Machines| +BaseHP|40 +BaseAttack|55 +BaseDefense|80 +BaseSpAttack|35 +BaseSpDefense|60 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The magnetic force generated by its body repels the ground's natural magnetism, letting it float. \Iron Ball Pokémon\95.2\0.6\0,148,0 +Scale|0.84 +Move|1,36 +TradeValue|40 +Item|5,143 +EvolutionCondition|375,Level,20,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/375.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/375.dat index 177124133..b20852ff2 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/375.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/375.dat @@ -1 +1,55 @@ -{"Name":"Metang","Number":375,"ExperienceType":"MediumSlow","BaseExperience":147,"Type1":"Steel","Type2":"Psychic","CatchRate":3,"BaseFriendship":35,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":374,"Devolution":374,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[29],"HiddenAbility":135,"EggMoves":[],"Machines":[223,174,205,92,192,249,244,237,241,173,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,201,129,111,9,197,156,213,210,5,34,36,38,99,100,102,115,117,120,130,149,153,157,161,164,113,280,317,332,263,290,416,397,360,446,445,363,447,430,468,473,477,496,523,612,590,15,70,148,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":75,"Def":100,"SpAtk":55,"SpDef":80,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When two Beldum fuse together, a magnetic nervous system places their brains in union.","Species":"Iron Claw Pokémon","Height":1.2,"Weight":202.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":60,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":36},{"Level":3,"ID":232},{"Level":4,"ID":93},{"Level":20,"ID":93},{"Level":21,"ID":232},{"Level":23,"ID":228},{"Level":26,"ID":357},{"Level":29,"ID":428},{"Level":32,"ID":418},{"Level":35,"ID":184},{"Level":38,"ID":97},{"Level":41,"ID":94},{"Level":44,"ID":309},{"Level":47,"ID":334},{"Level":50,"ID":63}],"EvolutionConditions":[{"Condition":"45","ConditionType":"Level","Evolution":376,"Trigger":"LevelUp"}],"Items":[{"Id":143,"Chance":5}]} \ No newline at end of file +Name|Metang +Number|375 +ExperienceType|2 +BaseExperience|147 +Type1|Steel +Type2|Psychic +CatchRate|3 +BaseFriendship|35 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|374 +IsGenderLess|1 +CanBreed|1 +Devolution|374 +IsMale|0.0 +Ability1|29 +Ability2|Nothing +HiddenAbility|135 +Machines|223,174,205,92,192,249,244,237,241,173,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,201,129,111,9,197,156,213,210,5,34,36,38,99,100,102,115,117,120,130,149,153,157,161,164,113,280,317,332,263,290,416,397,360,446,445,363,447,430,468,473,477,496,523,612,590,15,70,148,560 +BaseHP|60 +BaseAttack|75 +BaseDefense|100 +BaseSpAttack|55 +BaseSpDefense|80 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When two Beldum fuse together, a magnetic nervous system places their brains in union.\Iron Claw Pokémon\202.5\1.2\0,148,0 +Scale|1.08 +Move|1,393 +Move|1,36 +Move|1,232 +Move|1,93 +Move|20,93 +Move|20,232 +Move|23,228 +Move|26,357 +Move|29,428 +Move|32,418 +Move|35,184 +Move|38,97 +Move|41,94 +Move|44,309 +Move|47,334 +Move|50,63 +TradeValue|60 +Item|5,143 +EvolutionCondition|376,Level,45,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/376.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/376.dat index 5e2752f00..7b4198f3c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/376.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/376.dat @@ -1 +1,55 @@ -{"Name":"Metagross","Number":376,"ExperienceType":"MediumSlow","BaseExperience":270,"Type1":"Steel","Type2":"Psychic","CatchRate":3,"BaseFriendship":35,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":374,"Devolution":375,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[29],"HiddenAbility":135,"EggMoves":[],"Machines":[223,174,205,92,192,249,244,237,241,173,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,201,129,111,9,197,156,213,210,5,25,34,36,38,99,100,102,115,117,120,130,149,153,157,161,164,113,280,317,332,263,290,416,397,360,446,445,363,447,430,468,473,477,496,523,612,590,15,70,148,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":135,"Def":130,"SpAtk":95,"SpDef":90,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":3,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It folds its four legs when flying. Its four brains are said to be superior to a supercomputer.","Species":"Iron Leg Pokémon","Height":1.6,"Weight":550,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":75,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":36},{"Level":3,"ID":232},{"Level":4,"ID":93},{"Level":20,"ID":93},{"Level":21,"ID":232},{"Level":23,"ID":228},{"Level":26,"ID":357},{"Level":29,"ID":428},{"Level":32,"ID":418},{"Level":35,"ID":184},{"Level":38,"ID":97},{"Level":41,"ID":94},{"Level":44,"ID":309},{"Level":45,"ID":359},{"Level":53,"ID":334},{"Level":62,"ID":63}],"EvolutionConditions":[],"Items":[{"Id":143,"Chance":5}]} \ No newline at end of file +Name|Metagross +Number|376 +ExperienceType|2 +BaseExperience|270 +Type1|Steel +Type2|Psychic +CatchRate|3 +BaseFriendship|35 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|374 +IsGenderLess|1 +CanBreed|1 +Devolution|375 +IsMale|0.0 +Ability1|29 +Ability2|Nothing +HiddenAbility|135 +Machines|223,174,205,92,192,249,244,237,241,173,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,201,129,111,9,197,156,213,210,5,25,34,36,38,99,100,102,115,117,120,130,149,153,157,161,164,113,280,317,332,263,290,416,397,360,446,445,363,447,430,468,473,477,496,523,612,590,15,70,148,560 +BaseHP|80 +BaseAttack|135 +BaseDefense|130 +BaseSpAttack|95 +BaseSpDefense|90 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It folds its four legs when flying. Its four brains are said to be superior to a supercomputer.\Iron Leg Pokémon\550\1.6\0,148,0 +Scale|1.24 +Move|1,393 +Move|1,36 +Move|1,232 +Move|1,93 +Move|20,93 +Move|20,232 +Move|23,228 +Move|26,357 +Move|29,428 +Move|32,418 +Move|35,184 +Move|38,97 +Move|41,94 +Move|44,309 +Move|45,359 +Move|53,334 +Move|62,63 +TradeValue|75 +Item|5,143 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/376_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/376_mega.dat new file mode 100644 index 000000000..7a6a49546 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/376_mega.dat @@ -0,0 +1,55 @@ +Name|Mega Metagross +Number|376 +ExperienceType|2 +BaseExperience|270 +Type1|Steel +Type2|Psychic +CatchRate|3 +BaseFriendship|35 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|374 +IsGenderLess|1 +CanBreed|1 +Devolution|375 +IsMale|0.0 +Ability1|181 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,205,92,192,249,244,237,241,173,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,201,129,111,9,197,156,213,210,5,25,34,36,38,99,100,102,115,117,120,130,149,153,157,161,164,113,280,317,332,263,290,416,397,360,446,445,363,447,430,468,473,477,496,523,612,590,15,70,148,560 +BaseHP|80 +BaseAttack|145 +BaseDefense|150 +BaseSpAttack|105 +BaseSpDefense|110 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It folds its four legs when flying. Its four brains are said to be superior to a supercomputer.\Iron Leg Pokémon\942.9\2.5\0,148,0 +Scale|1.24 +Move|1,393 +Move|1,36 +Move|1,232 +Move|1,93 +Move|20,93 +Move|20,232 +Move|23,228 +Move|26,357 +Move|29,428 +Move|32,418 +Move|35,184 +Move|38,97 +Move|41,94 +Move|44,309 +Move|45,359 +Move|53,334 +Move|62,63 +TradeValue|75 +Item|5,143 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/377.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/377.dat index a2c49b5b7..3408ff553 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/377.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/377.dat @@ -1 +1,53 @@ -{"Name":"Regirock","Number":377,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Rock","Type2":"Blank","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":377,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[29],"HiddenAbility":5,"EggMoves":[],"Machines":[223,174,205,92,192,249,244,237,241,173,63,182,203,218,87,89,216,91,189,104,8,207,214,201,111,9,197,156,213,7,5,25,34,36,38,66,68,69,99,85,90,102,117,120,130,86,153,157,164,264,219,280,351,317,263,290,411,451,409,416,397,444,446,445,363,479,496,523,612,590,70],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":100,"Def":200,"SpAtk":50,"SpDef":100,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":3,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The same rocks that form its body have been found in ground layers around the world.","Species":"Rock Peak Pokémon","Height":1.7,"Weight":230,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":85,"Moves":[{"Level":1,"ID":359},{"Level":2,"ID":192},{"Level":3,"ID":199},{"Level":4,"ID":153},{"Level":5,"ID":23},{"Level":9,"ID":88},{"Level":17,"ID":174},{"Level":25,"ID":276},{"Level":33,"ID":246},{"Level":41,"ID":334},{"Level":49,"ID":451},{"Level":57,"ID":199},{"Level":65,"ID":192},{"Level":73,"ID":444},{"Level":81,"ID":359},{"Level":89,"ID":63}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Regirock +Number|377 +ExperienceType|3 +BaseExperience|261 +Type1|Rock +Type2| +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|377 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|29 +Ability2|Nothing +HiddenAbility|5 +Machines|223,174,205,92,192,249,244,237,241,173,63,182,203,218,87,89,216,91,189,104,8,207,214,201,111,9,197,156,213,7,5,25,34,36,38,66,68,69,99,85,90,102,117,120,130,86,153,157,164,264,219,280,351,317,263,290,411,451,409,416,397,444,446,445,363,479,496,523,612,590,70 +BaseHP|80 +BaseAttack|100 +BaseDefense|200 +BaseSpAttack|50 +BaseSpDefense|100 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The same rocks that form its body have been found in ground layers around the world.\Rock Peak Pokémon\230\1.7\0,148,0 +Scale|1.28 +Move|1,359 +Move|1,192 +Move|1,199 +Move|1,153 +Move|1,23 +Move|9,88 +Move|17,174 +Move|25,276 +Move|33,246 +Move|41,334 +Move|49,451 +Move|57,199 +Move|65,192 +Move|73,444 +Move|81,359 +Move|89,63 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/378.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/378.dat index 945dc405e..d00d63c71 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/378.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/378.dat @@ -1 +1,53 @@ -{"Name":"Regice","Number":378,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Ice","Type2":"Blank","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":378,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[29],"HiddenAbility":115,"EggMoves":[],"Machines":[223,174,205,92,192,249,244,237,173,59,63,196,182,203,218,87,216,189,104,8,207,214,111,9,197,156,213,5,25,34,36,38,58,66,68,69,99,85,102,117,120,130,164,264,258,351,263,290,411,416,419,445,363,496,524,612,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":50,"Def":100,"SpAtk":100,"SpDef":200,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is said to have slept in a glacier for thousands of years. Its body can’t be melted, even by magma.","Species":"Iceberg Pokémon","Height":1.8,"Weight":175,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":85,"Moves":[{"Level":1,"ID":359},{"Level":2,"ID":192},{"Level":3,"ID":199},{"Level":4,"ID":153},{"Level":5,"ID":23},{"Level":9,"ID":196},{"Level":17,"ID":174},{"Level":25,"ID":276},{"Level":33,"ID":246},{"Level":41,"ID":133},{"Level":49,"ID":451},{"Level":57,"ID":199},{"Level":65,"ID":192},{"Level":73,"ID":58},{"Level":81,"ID":359},{"Level":89,"ID":63}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Regice +Number|378 +ExperienceType|3 +BaseExperience|261 +Type1|Ice +Type2| +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|378 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|29 +Ability2|Nothing +HiddenAbility|115 +Machines|223,174,205,92,192,249,244,237,173,59,63,196,182,203,218,87,216,189,104,8,207,214,111,9,197,156,213,5,25,34,36,38,58,66,68,69,99,85,102,117,120,130,164,264,258,351,263,290,411,416,419,445,363,496,524,612,590,70,431,560 +BaseHP|80 +BaseAttack|50 +BaseDefense|100 +BaseSpAttack|100 +BaseSpDefense|200 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is said to have slept in a glacier for thousands of years. Its body can’t be melted, even by magma.\Iceberg Pokémon\175\1.8\0,148,0 +Scale|1.32 +Move|1,359 +Move|1,192 +Move|1,199 +Move|1,153 +Move|1,23 +Move|9,196 +Move|17,174 +Move|25,276 +Move|33,246 +Move|41,133 +Move|49,451 +Move|57,199 +Move|65,192 +Move|73,58 +Move|81,359 +Move|89,63 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/379.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/379.dat index a70f62554..48220c5da 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/379.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/379.dat @@ -1 +1,56 @@ -{"Name":"Registeel","Number":379,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Steel","Type2":"Blank","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":379,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[29],"HiddenAbility":135,"EggMoves":[],"Machines":[223,174,205,92,192,249,244,237,241,173,63,182,203,218,87,216,189,104,8,207,214,111,9,197,156,213,5,25,34,36,38,66,68,69,99,85,102,117,120,130,164,264,351,263,290,411,416,446,445,363,468,496,612,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":75,"Def":150,"SpAtk":75,"SpDef":150,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its body is said to be harder than any kind of metal. A study has revealed that its body is hollow.","Species":"Iron Pokémon","Height":1.9,"Weight":205,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":85,"Moves":[{"Level":1,"ID":359},{"Level":2,"ID":442},{"Level":3,"ID":192},{"Level":4,"ID":199},{"Level":5,"ID":153},{"Level":6,"ID":23},{"Level":9,"ID":232},{"Level":17,"ID":174},{"Level":25,"ID":276},{"Level":33,"ID":246},{"Level":41,"ID":334},{"Level":42,"ID":133},{"Level":49,"ID":451},{"Level":57,"ID":199},{"Level":65,"ID":192},{"Level":73,"ID":442},{"Level":74,"ID":430},{"Level":81,"ID":359},{"Level":89,"ID":63}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Registeel +Number|379 +ExperienceType|3 +BaseExperience|261 +Type1|Steel +Type2| +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|379 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|29 +Ability2|Nothing +HiddenAbility|135 +Machines|223,174,205,92,192,249,244,237,241,173,63,182,203,218,87,216,189,104,8,207,214,111,9,197,156,213,5,25,34,36,38,66,68,69,99,85,102,117,120,130,164,264,351,263,290,411,416,446,445,363,468,496,612,590,70,431,560 +BaseHP|80 +BaseAttack|75 +BaseDefense|150 +BaseSpAttack|75 +BaseSpDefense|150 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its body is said to be harder than any kind of metal. A study has revealed that its body is hollow.\Iron Pokémon\205\1.9\0,148,0 +Scale|1.36 +Move|1,359 +Move|1,442 +Move|1,192 +Move|1,199 +Move|1,153 +Move|1,23 +Move|9,232 +Move|17,174 +Move|25,276 +Move|33,246 +Move|41,334 +Move|41,133 +Move|49,451 +Move|57,199 +Move|65,192 +Move|73,442 +Move|73,430 +Move|81,359 +Move|89,63 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/38.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/38.dat index 867c8a3bd..75c8226df 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/38.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/38.dat @@ -1 +1,43 @@ -{"Name":"Ninetales","Number":38,"ExperienceType":"MediumFast","BaseExperience":177,"Type1":"Fire","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":37,"Devolution":37,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[18],"HiddenAbility":70,"EggMoves":[445,50,326,185,175,394,257,506,336,95,384,290,180,541,412],"Machines":[29,174,46,92,244,237,241,173,63,182,203,218,76,231,216,91,104,207,214,126,129,138,197,156,213,25,34,36,38,99,102,117,130,164,347,219,53,263,290,315,412,261,371,416,445,399,363,473,488,496,510,590,560],"TutorMoves":[],"BaseStats":{"HP":73,"Atk":76,"Def":75,"SpAtk":81,"SpDef":100,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Some legends claim that each of its nine tails has its own unique type of special mystical power.","Species":"Fox Pokémon","Height":1.1,"Weight":19.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":35,"Moves":[{"Level":1,"ID":53},{"Level":2,"ID":98},{"Level":3,"ID":109},{"Level":4,"ID":219},{"Level":5,"ID":1},{"Level":6,"ID":417}],"EvolutionConditions":[],"Items":[{"Id":2003,"Chance":100}]} \ No newline at end of file +Name|Ninetales +Number|38 +ExperienceType|1 +BaseExperience|177 +Type1|Fire +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|37 +IsGenderLess|0 +IsMale|25 +Ability1|18 +Ability2|Nothing +HiddenAbility|70 +EggMoves|445,50,326,185,175,394,257,506,336,95,384,290,180,541,412 +Machines|29,174,46,92,244,237,241,173,63,182,203,218,76,231,216,91,104,207,214,126,129,138,197,156,213,25,34,36,38,99,102,117,130,164,347,219,53,263,290,315,412,261,371,416,445,399,363,473,488,496,510,590,560 +BaseHP|73 +BaseAttack|76 +BaseDefense|75 +BaseSpAttack|81 +BaseSpDefense|100 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Some legends claim that each of its nine tails has its own unique type of special mystical power.\Fox Pokémon\19.9\1.1\0,148,0 +Scale|1.04 +Move|1,53 +Move|1,98 +Move|1,109 +Move|1,219 +Move|1,286 +Move|1,417 +Item|100,2003 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/380.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/380.dat index 13a030c4b..803064470 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/380.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/380.dat @@ -1 +1,62 @@ -{"Name":"Latias","Number":380,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Dragon","Type2":"Psychic","CatchRate":3,"BaseFriendship":90,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":380,"Devolution":0,"CanBreed":false,"IsGenderless":false,"IsMale":0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,46,92,192,244,237,241,173,63,196,182,203,218,225,216,94,189,104,207,214,129,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,143,149,161,164,337,352,351,263,290,355,412,406,416,432,445,363,468,473,477,496,590,15,19,57,250,127,431,560,291],"TutorMoves":[434],"BaseStats":{"HP":80,"Atk":80,"Def":90,"SpAtk":110,"SpDef":130,"Speed":110},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It communicates using telepathy. Its body is covered in down that refracts light to make it invisible.","Species":"Eon Pokémon","Height":1.4,"Weight":40,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":90,"Moves":[{"Level":1,"ID":361},{"Level":2,"ID":406},{"Level":3,"ID":1},{"Level":4,"ID":1},{"Level":5,"ID":505},{"Level":6,"ID":204},{"Level":7,"ID":149},{"Level":8,"ID":273},{"Level":10,"ID":1},{"Level":15,"ID":219},{"Level":20,"ID":225},{"Level":25,"ID":346},{"Level":30,"ID":287},{"Level":35,"ID":296},{"Level":40,"ID":428},{"Level":45,"ID":105},{"Level":50,"ID":375},{"Level":55,"ID":204},{"Level":60,"ID":94},{"Level":65,"ID":505},{"Level":70,"ID":1},{"Level":75,"ID":1},{"Level":80,"ID":406},{"Level":85,"ID":361}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Latias +Number|380 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|Psychic +CatchRate|3 +BaseFriendship|90 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|380 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,192,244,237,241,173,63,196,182,203,218,225,216,94,189,104,207,214,129,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,143,149,161,164,337,352,351,263,290,355,412,406,416,432,445,363,468,473,477,496,590,15,19,57,250,127,431,560,291 +TutorMoves|434 +BaseHP|80 +BaseAttack|80 +BaseDefense|90 +BaseSpAttack|110 +BaseSpDefense|130 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It communicates using telepathy. Its body is covered in down that refracts light to make it invisible.\Eon Pokémon\40\1.4\0,148,0 +Scale|1.16 +Move|1,361 +Move|1,406 +Move|1,470 +Move|1,513 +Move|1,505 +Move|1,204 +Move|1,149 +Move|5,273 +Move|10,270 +Move|15,219 +Move|20,225 +Move|25,346 +Move|30,287 +Move|35,296 +Move|40,428 +Move|45,105 +Move|50,375 +Move|55,204 +Move|60,94 +Move|65,505 +Move|70,513 +Move|75,470 +Move|80,406 +Move|85,361 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/380_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/380_mega.dat new file mode 100644 index 000000000..181a32c67 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/380_mega.dat @@ -0,0 +1,62 @@ +Name|Mega Latias +Number|380 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|Psychic +CatchRate|3 +BaseFriendship|90 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|380 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,192,244,237,241,173,63,196,182,203,218,225,216,94,189,104,207,214,129,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,143,149,161,164,337,352,351,263,290,355,412,406,416,432,445,363,468,473,477,496,590,15,19,57,250,127,431,560,291 +TutorMoves|434 +BaseHP|80 +BaseAttack|100 +BaseDefense|120 +BaseSpAttack|140 +BaseSpDefense|150 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It communicates using telepathy. Its body is covered in down that refracts light to make it invisible.\Eon Pokémon\52\1.8\0,148,0 +Scale|1.16 +Move|1,361 +Move|1,406 +Move|1,470 +Move|1,513 +Move|1,505 +Move|1,204 +Move|1,149 +Move|5,273 +Move|10,270 +Move|15,219 +Move|20,225 +Move|25,346 +Move|30,287 +Move|35,296 +Move|40,428 +Move|45,105 +Move|50,375 +Move|55,204 +Move|60,94 +Move|65,505 +Move|70,513 +Move|75,470 +Move|80,406 +Move|85,361 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/381.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/381.dat index 45b9a2b2a..a9d0cbfc6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/381.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/381.dat @@ -1 +1,62 @@ -{"Name":"Latios","Number":381,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Dragon","Type2":"Psychic","CatchRate":3,"BaseFriendship":90,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":381,"Devolution":0,"CanBreed":false,"IsGenderless":false,"IsMale":100,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,46,92,192,244,237,241,173,63,196,182,203,218,225,216,94,189,104,207,214,129,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,143,149,161,164,337,352,351,263,290,355,412,406,416,432,445,363,468,473,477,496,590,15,19,57,250,127,560,291],"TutorMoves":[434],"BaseStats":{"HP":80,"Atk":90,"Def":80,"SpAtk":130,"SpDef":110,"Speed":110},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It understands human speech and is highly intelligent. It is a tender Pokémon that dislikes fighting.","Species":"Eon Pokémon","Height":2,"Weight":60,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":90,"Moves":[{"Level":1,"ID":262},{"Level":2,"ID":406},{"Level":3,"ID":1},{"Level":4,"ID":1},{"Level":5,"ID":505},{"Level":6,"ID":349},{"Level":7,"ID":149},{"Level":8,"ID":377},{"Level":10,"ID":1},{"Level":15,"ID":219},{"Level":20,"ID":225},{"Level":25,"ID":182},{"Level":30,"ID":287},{"Level":35,"ID":295},{"Level":40,"ID":428},{"Level":45,"ID":105},{"Level":50,"ID":375},{"Level":55,"ID":349},{"Level":60,"ID":94},{"Level":65,"ID":505},{"Level":70,"ID":1},{"Level":75,"ID":1},{"Level":80,"ID":406},{"Level":85,"ID":262}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Latios +Number|381 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|Psychic +CatchRate|3 +BaseFriendship|90 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|381 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|100 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,192,244,237,241,173,63,196,182,203,218,225,216,94,189,104,207,214,129,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,143,149,161,164,337,352,351,263,290,355,412,406,416,432,445,363,468,473,477,496,590,15,19,57,250,127,560,291 +TutorMoves|434 +BaseHP|80 +BaseAttack|90 +BaseDefense|80 +BaseSpAttack|130 +BaseSpDefense|110 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It understands human speech and is highly intelligent. It is a tender Pokémon that dislikes fighting.\Eon Pokémon\60\2\0,148,0 +Scale|1.4 +Move|1,262 +Move|1,406 +Move|1,471 +Move|1,477 +Move|1,505 +Move|1,349 +Move|1,149 +Move|5,377 +Move|10,270 +Move|15,219 +Move|20,225 +Move|25,182 +Move|30,287 +Move|35,295 +Move|40,428 +Move|45,105 +Move|50,375 +Move|55,349 +Move|60,94 +Move|65,505 +Move|70,477 +Move|75,471 +Move|80,406 +Move|85,262 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/381_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/381_mega.dat new file mode 100644 index 000000000..7eef227b0 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/381_mega.dat @@ -0,0 +1,62 @@ +Name|Mega Latios +Number|381 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|Psychic +CatchRate|3 +BaseFriendship|90 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|381 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|100 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,192,244,237,241,173,63,196,182,203,218,225,216,94,189,104,207,214,129,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,143,149,161,164,337,352,351,263,290,355,412,406,416,432,445,363,468,473,477,496,590,15,19,57,250,127,560,291 +TutorMoves|434 +BaseHP|80 +BaseAttack|130 +BaseDefense|100 +BaseSpAttack|160 +BaseSpDefense|120 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It understands human speech and is highly intelligent. It is a tender Pokémon that dislikes fighting.\Eon Pokémon\70\2.3\0,148,0 +Scale|1.4 +Move|1,262 +Move|1,406 +Move|1,471 +Move|1,477 +Move|1,505 +Move|1,349 +Move|1,149 +Move|5,377 +Move|10,270 +Move|15,219 +Move|20,225 +Move|25,182 +Move|30,287 +Move|35,295 +Move|40,428 +Move|45,105 +Move|50,375 +Move|55,349 +Move|60,94 +Move|65,505 +Move|70,477 +Move|75,471 +Move|80,406 +Move|85,262 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/382.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/382.dat index 5974421f7..583782639 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/382.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/382.dat @@ -1 +1,50 @@ -{"Name":"Kyogre","Number":382,"ExperienceType":"Slow","BaseExperience":302,"Type1":"Water","Type2":"Blank","CatchRate":5,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":382,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[2],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,46,92,192,249,244,237,173,59,63,196,182,240,203,218,225,87,89,216,189,104,207,214,129,111,197,156,213,34,36,38,61,55,58,99,85,102,117,130,86,157,164,352,347,258,280,351,317,263,290,362,416,419,445,363,496,503,523,590,57,70,250,127,560,291],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":100,"Def":90,"SpAtk":150,"SpDef":140,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A mythical Pokémon said to have swelled the seas with rain and tidal waves. It battled with GROUDON.","Species":"Sea Basin Pokémon","Height":4.5,"Weight":352,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":352},{"Level":5,"ID":184},{"Level":15,"ID":34},{"Level":20,"ID":330},{"Level":30,"ID":392},{"Level":35,"ID":58},{"Level":45,"ID":246},{"Level":50,"ID":323},{"Level":60,"ID":347},{"Level":65,"ID":401},{"Level":75,"ID":329},{"Level":80,"ID":38},{"Level":90,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Kyogre +Number|382 +ExperienceType|3 +BaseExperience|302 +Type1|Water +Type2| +CatchRate|5 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|382 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|2 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,192,249,244,237,173,59,63,196,182,240,203,218,225,87,89,216,189,104,207,214,129,111,197,156,213,34,36,38,61,55,58,99,85,102,117,130,86,157,164,352,347,258,280,351,317,263,290,362,416,419,445,363,496,503,523,590,57,70,250,127,560,291 +BaseHP|100 +BaseAttack|100 +BaseDefense|90 +BaseSpAttack|150 +BaseSpDefense|140 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A mythical Pokémon said to have swelled the seas with rain and tidal waves. It battled with GROUDON.\Sea Basin Pokémon\352\4.5\0,148,0 +Scale|2 +Move|1,352 +Move|5,184 +Move|15,34 +Move|20,330 +Move|30,392 +Move|35,58 +Move|45,246 +Move|50,323 +Move|60,347 +Move|65,401 +Move|75,329 +Move|80,38 +Move|90,56 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/382_primal.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/382_primal.dat new file mode 100644 index 000000000..0d04e0143 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/382_primal.dat @@ -0,0 +1,50 @@ +Name|Primal Kyogre +Number|382 +ExperienceType|3 +BaseExperience|302 +Type1|Water +Type2| +CatchRate|5 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|382 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|2 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,192,249,244,237,173,59,63,196,182,240,203,218,225,87,89,216,189,104,207,214,129,111,197,156,213,34,36,38,61,55,58,99,85,102,117,130,86,157,164,352,347,258,280,351,317,263,290,362,416,419,445,363,496,503,523,590,57,70,250,127,560,291 +BaseHP|100 +BaseAttack|150 +BaseDefense|90 +BaseSpAttack|180 +BaseSpDefense|160 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A mythical Pokémon said to have swelled the seas with rain and tidal waves. It battled with GROUDON.\Sea Basin Pokémon\430\9.8\0,148,0 +Scale|2 +Move|1,352 +Move|5,184 +Move|15,34 +Move|20,330 +Move|30,392 +Move|35,58 +Move|45,246 +Move|50,323 +Move|60,347 +Move|65,401 +Move|75,329 +Move|80,38 +Move|90,56 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/383.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/383.dat index 1ab52ad68..a44f060c0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/383.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/383.dat @@ -1 +1,50 @@ -{"Name":"Groudon","Number":383,"ExperienceType":"Slow","BaseExperience":302,"Type1":"Ground","Type2":"Blank","CatchRate":5,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":383,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[70],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,205,46,92,192,249,244,237,241,173,63,182,203,218,76,231,225,87,89,216,91,189,104,207,214,201,126,129,111,9,197,156,213,7,210,5,14,25,34,36,38,66,68,69,99,82,85,90,102,117,130,86,157,164,337,339,351,53,317,332,263,290,315,411,374,406,421,416,397,444,446,445,363,468,479,496,510,523,525,612,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":150,"Def":140,"SpAtk":100,"SpDef":90,"Speed":90},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Said to have expanded the lands by evaporating water with raging heat. It battled titanically with KYOGRE.","Species":"Continent Pokémon","Height":3.5,"Weight":950,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":341},{"Level":5,"ID":184},{"Level":15,"ID":436},{"Level":20,"ID":359},{"Level":30,"ID":156},{"Level":35,"ID":89},{"Level":45,"ID":246},{"Level":50,"ID":284},{"Level":60,"ID":339},{"Level":65,"ID":414},{"Level":75,"ID":90},{"Level":80,"ID":76},{"Level":90,"ID":126}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Groudon +Number|383 +ExperienceType|3 +BaseExperience|302 +Type1|Ground +Type2| +CatchRate|5 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|383 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|70 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,205,46,92,192,249,244,237,241,173,63,182,203,218,76,231,225,87,89,216,91,189,104,207,214,201,126,129,111,9,197,156,213,7,210,5,14,25,34,36,38,66,68,69,99,82,85,90,102,117,130,86,157,164,337,339,351,53,317,332,263,290,315,411,374,406,421,416,397,444,446,445,363,468,479,496,510,523,525,612,590,15,70,431,560 +BaseHP|100 +BaseAttack|150 +BaseDefense|140 +BaseSpAttack|100 +BaseSpDefense|90 +BaseSpeed|90 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Said to have expanded the lands by evaporating water with raging heat. It battled titanically with KYOGRE.\Continent Pokémon\950\3.5\0,148,0 +Scale|2 +Move|1,341 +Move|5,184 +Move|15,436 +Move|20,359 +Move|30,156 +Move|35,89 +Move|45,246 +Move|50,284 +Move|60,339 +Move|65,414 +Move|75,90 +Move|80,76 +Move|90,126 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/383_primal.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/383_primal.dat new file mode 100644 index 000000000..a1609f382 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/383_primal.dat @@ -0,0 +1,50 @@ +Name|Primal Groudon +Number|383 +ExperienceType|3 +BaseExperience|302 +Type1|Ground +Type2|Fire +CatchRate|5 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|383 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|70 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,205,46,92,192,249,244,237,241,173,63,182,203,218,76,231,225,87,89,216,91,189,104,207,214,201,126,129,111,9,197,156,213,7,210,5,14,25,34,36,38,66,68,69,99,82,85,90,102,117,130,86,157,164,337,339,351,53,317,332,263,290,315,411,374,406,421,416,397,444,446,445,363,468,479,496,510,523,525,612,590,15,70,431,560 +BaseHP|100 +BaseAttack|180 +BaseDefense|160 +BaseSpAttack|150 +BaseSpDefense|90 +BaseSpeed|90 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Said to have expanded the lands by evaporating water with raging heat. It battled titanically with KYOGRE.\Continent Pokémon\999.7\5\0,148,0 +Scale|2 +Move|1,341 +Move|5,184 +Move|15,436 +Move|20,359 +Move|30,156 +Move|35,89 +Move|45,246 +Move|50,284 +Move|60,339 +Move|65,414 +Move|75,90 +Move|80,76 +Move|90,126 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/384.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/384.dat index 2bdaa6376..a7abf9f3f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/384.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/384.dat @@ -1 +1,51 @@ -{"Name":"Rayquaza","Number":384,"ExperienceType":"Slow","BaseExperience":306,"Type1":"Dragon","Type2":"Flying","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":384,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[76],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,46,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,225,87,89,216,189,104,207,214,201,126,129,197,156,213,210,13,14,18,34,36,38,58,99,82,85,102,117,130,86,157,164,337,352,339,351,53,317,332,263,290,315,411,412,374,406,421,416,444,419,360,445,363,468,496,497,507,510,523,525,590,19,57,70,250,127,560,291],"TutorMoves":[434],"BaseStats":{"HP":105,"Atk":150,"Def":90,"SpAtk":150,"SpDef":90,"Speed":95},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It flies in the ozone layer high in the sky. Until recently, no one had ever seen it.","Species":"Sky High Pokémon","Height":7,"Weight":206.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":110,"Moves":[{"Level":1,"ID":239},{"Level":5,"ID":184},{"Level":15,"ID":242},{"Level":20,"ID":304},{"Level":30,"ID":156},{"Level":35,"ID":403},{"Level":45,"ID":246},{"Level":50,"ID":200},{"Level":60,"ID":349},{"Level":65,"ID":19},{"Level":75,"ID":245},{"Level":80,"ID":63},{"Level":90,"ID":406}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Rayquaza +Number|384 +ExperienceType|3 +BaseExperience|306 +Type1|Dragon +Type2|Flying +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|384 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|76 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,225,87,89,216,189,104,207,214,201,126,129,197,156,213,210,13,14,18,34,36,38,58,99,82,85,102,117,130,86,157,164,337,352,339,351,53,317,332,263,290,315,411,412,374,406,421,416,444,419,360,445,363,468,496,497,507,510,523,525,590,19,57,70,250,127,560,291 +TutorMoves|434 +BaseHP|105 +BaseAttack|150 +BaseDefense|90 +BaseSpAttack|150 +BaseSpDefense|90 +BaseSpeed|95 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It flies in the ozone layer high in the sky. Until recently, no one had ever seen it.\Sky High Pokémon\206.5\7\0,148,0 +Scale|2 +Move|1,239 +Move|5,184 +Move|15,242 +Move|20,304 +Move|30,156 +Move|35,403 +Move|45,246 +Move|50,200 +Move|60,349 +Move|65,19 +Move|75,245 +Move|80,63 +Move|90,406 +TradeValue|110 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/384_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/384_mega.dat new file mode 100644 index 000000000..9db41dc47 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/384_mega.dat @@ -0,0 +1,51 @@ +Name|Mega Rayquaza +Number|384 +ExperienceType|3 +BaseExperience|306 +Type1|Dragon +Type2|Flying +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|384 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|76 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,192,249,244,237,241,173,59,63,196,182,240,203,218,76,231,225,87,89,216,189,104,207,214,201,126,129,197,156,213,210,13,14,18,34,36,38,58,99,82,85,102,117,130,86,157,164,337,352,339,351,53,317,332,263,290,315,411,412,374,406,421,416,444,419,360,445,363,468,496,497,507,510,523,525,590,19,57,70,250,127,560,291 +TutorMoves|434 +BaseHP|105 +BaseAttack|180 +BaseDefense|100 +BaseSpAttack|180 +BaseSpDefense|100 +BaseSpeed|115 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It flies in the ozone layer high in the sky. Until recently, no one had ever seen it.\Sky High Pokémon\392\10.8\0,148,0 +Scale|2 +Move|1,239 +Move|5,184 +Move|15,242 +Move|20,304 +Move|30,156 +Move|35,403 +Move|45,246 +Move|50,200 +Move|60,349 +Move|65,19 +Move|75,245 +Move|80,63 +Move|90,406 +TradeValue|110 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/385.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/385.dat index 1b3bcdbb7..46767de76 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/385.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/385.dat @@ -1 +1,53 @@ -{"Name":"Jirachi","Number":385,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Steel","Type2":"Psychic","CatchRate":3,"BaseFriendship":100,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":385,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[32],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,192,244,237,241,230,173,63,196,182,240,203,218,87,216,94,247,189,104,8,207,214,201,129,111,9,138,197,156,213,7,171,34,36,38,6,99,85,100,102,115,117,118,86,149,161,164,352,347,113,351,332,263,290,285,412,374,451,409,278,416,446,445,363,447,369,430,433,473,477,496,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":100,"Def":100,"SpAtk":100,"SpDef":100,"Speed":100},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Generations have believed that any wish written on a note on its head will come true when it awakens.","Species":"Wish Pokémon","Height":0.3,"Weight":1.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":120,"Moves":[{"Level":1,"ID":273},{"Level":2,"ID":93},{"Level":5,"ID":156},{"Level":10,"ID":129},{"Level":15,"ID":1},{"Level":20,"ID":94},{"Level":25,"ID":287},{"Level":30,"ID":156},{"Level":35,"ID":428},{"Level":40,"ID":38},{"Level":45,"ID":356},{"Level":50,"ID":361},{"Level":55,"ID":248},{"Level":60,"ID":322},{"Level":65,"ID":387},{"Level":70,"ID":353}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Jirachi +Number|385 +ExperienceType|3 +BaseExperience|270 +Type1|Steel +Type2|Psychic +CatchRate|3 +BaseFriendship|100 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|385 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|32 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,192,244,237,241,230,173,63,196,182,240,203,218,87,216,94,247,189,104,8,207,214,201,129,111,9,138,197,156,213,7,171,34,36,38,6,99,85,100,102,115,117,118,86,149,161,164,352,347,113,351,332,263,290,285,412,374,451,409,278,416,446,445,363,447,369,430,433,473,477,496,612,605,590,148 +BaseHP|100 +BaseAttack|100 +BaseDefense|100 +BaseSpAttack|100 +BaseSpDefense|100 +BaseSpeed|100 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Generations have believed that any wish written on a note on its head will come true when it awakens.\Wish Pokémon\1.1\0.3\0,148,0 +Scale|0.7 +Move|1,273 +Move|1,93 +Move|5,156 +Move|10,129 +Move|15,270 +Move|20,94 +Move|25,287 +Move|30,156 +Move|35,428 +Move|40,38 +Move|45,356 +Move|50,361 +Move|55,248 +Move|60,322 +Move|65,387 +Move|70,353 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386.dat index f73ffd02b..a40996e87 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386.dat @@ -1 +1,51 @@ -{"Name":"Deoxys","Number":386,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Psychic","Type2":"Blank","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":386,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,192,249,244,237,241,173,63,196,182,203,218,76,87,216,94,189,104,8,207,214,129,9,138,197,156,213,7,171,5,25,34,36,38,58,66,68,69,99,85,100,102,117,118,130,149,161,164,264,352,351,263,290,285,289,411,412,409,278,416,419,446,445,399,363,473,477,496,502,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":150,"Def":50,"SpAtk":150,"SpDef":50,"Speed":150},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"DNA from a space virus mutated and became a Pokémon. It appears where auroras are seen.","Species":"DNA Pokémon","Height":1.7,"Weight":60.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":120,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":35},{"Level":9,"ID":101},{"Level":17,"ID":100},{"Level":25,"ID":282},{"Level":33,"ID":228},{"Level":41,"ID":94},{"Level":49,"ID":289},{"Level":57,"ID":375},{"Level":65,"ID":428},{"Level":73,"ID":322},{"Level":81,"ID":105},{"Level":89,"ID":354},{"Level":97,"ID":63}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Deoxys +Number|386 +ExperienceType|3 +BaseExperience|270 +Type1|Psychic +Type2| +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|386 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,192,249,244,237,241,173,63,196,182,203,218,76,87,216,94,189,104,8,207,214,129,9,138,197,156,213,7,171,5,25,34,36,38,58,66,68,69,99,85,100,102,117,118,130,149,161,164,264,352,351,263,290,285,289,411,412,409,278,416,419,446,445,399,363,473,477,496,502,612,590,70,148 +BaseHP|50 +BaseAttack|150 +BaseDefense|50 +BaseSpAttack|150 +BaseSpDefense|50 +BaseSpeed|150 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|DNA from a space virus mutated and became a Pokémon. It appears where auroras are seen.\DNA Pokémon\60.8\1.7\0,148,0 +Scale|1.28 +Move|1,43 +Move|1,35 +Move|9,101 +Move|17,100 +Move|25,282 +Move|33,228 +Move|41,94 +Move|49,289 +Move|57,375 +Move|65,428 +Move|73,322 +Move|81,105 +Move|89,354 +Move|97,63 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_attack.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_attack.dat index 600bfcf86..00e163f2f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_attack.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_attack.dat @@ -1 +1,51 @@ -{"Name":"Deoxys","Number":386,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Psychic","Type2":"Blank","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":386,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,192,249,244,237,241,173,63,196,182,203,218,76,87,216,94,189,104,8,207,214,129,9,138,197,156,213,7,171,5,25,34,36,38,58,66,68,69,99,85,100,102,117,118,130,149,161,164,264,352,351,263,290,285,289,411,412,409,278,416,419,446,445,399,363,473,477,496,502,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":180,"Def":20,"SpAtk":180,"SpDef":20,"Speed":150},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"DNA from a space virus mutated and became a Pokémon. It appears where auroras are seen.","Species":"DNA Pokémon","Height":1.7,"Weight":60.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":120,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":35},{"Level":9,"ID":101},{"Level":17,"ID":100},{"Level":25,"ID":269},{"Level":33,"ID":228},{"Level":41,"ID":94},{"Level":49,"ID":276},{"Level":57,"ID":375},{"Level":65,"ID":428},{"Level":73,"ID":322},{"Level":81,"ID":192},{"Level":89,"ID":354},{"Level":97,"ID":63}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Deoxys +Number|386 +ExperienceType|3 +BaseExperience|270 +Type1|Psychic +Type2| +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|386 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,192,249,244,237,241,173,63,196,182,203,218,76,87,216,94,189,104,8,207,214,129,9,138,197,156,213,7,171,5,25,34,36,38,58,66,68,69,99,85,100,102,117,118,130,149,161,164,264,352,351,263,290,285,289,411,412,409,278,416,419,446,445,399,363,473,477,496,502,612,590,70,148 +BaseHP|50 +BaseAttack|180 +BaseDefense|20 +BaseSpAttack|180 +BaseSpDefense|20 +BaseSpeed|150 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|DNA from a space virus mutated and became a Pokémon. It appears where auroras are seen.\DNA Pokémon\60.8\1.7\0,148,0 +Scale|1.28 +Move|1,43 +Move|1,35 +Move|9,101 +Move|17,100 +Move|25,269 +Move|33,228 +Move|41,94 +Move|49,276 +Move|57,375 +Move|65,428 +Move|73,322 +Move|81,192 +Move|89,354 +Move|97,63 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_defense.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_defense.dat index e9ea9ad20..0d789a31f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_defense.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_defense.dat @@ -1 +1,53 @@ -{"Name":"Deoxys","Number":386,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Psychic","Type2":"Blank","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":386,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,192,249,244,237,241,173,63,196,182,203,218,76,87,216,94,189,104,8,207,214,129,9,138,197,156,213,7,171,5,25,34,36,38,58,66,68,69,99,85,100,102,117,118,130,149,161,164,264,352,351,263,290,285,289,411,412,409,278,416,419,446,445,399,363,473,477,496,502,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":70,"Def":160,"SpAtk":70,"SpDef":160,"Speed":90},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"DNA from a space virus mutated and became a Pokémon. It appears where auroras are seen.","Species":"DNA Pokémon","Height":1.7,"Weight":60.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":120,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":35},{"Level":9,"ID":101},{"Level":17,"ID":100},{"Level":25,"ID":282},{"Level":33,"ID":191},{"Level":41,"ID":94},{"Level":49,"ID":289},{"Level":57,"ID":375},{"Level":65,"ID":428},{"Level":73,"ID":334},{"Level":74,"ID":133},{"Level":81,"ID":105},{"Level":89,"ID":354},{"Level":97,"ID":68},{"Level":98,"ID":243}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Deoxys +Number|386 +ExperienceType|3 +BaseExperience|270 +Type1|Psychic +Type2| +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|386 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,192,249,244,237,241,173,63,196,182,203,218,76,87,216,94,189,104,8,207,214,129,9,138,197,156,213,7,171,5,25,34,36,38,58,66,68,69,99,85,100,102,117,118,130,149,161,164,264,352,351,263,290,285,289,411,412,409,278,416,419,446,445,399,363,473,477,496,502,612,590,70,148 +BaseHP|50 +BaseAttack|70 +BaseDefense|160 +BaseSpAttack|70 +BaseSpDefense|160 +BaseSpeed|90 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|DNA from a space virus mutated and became a Pokémon. It appears where auroras are seen.\DNA Pokémon\60.8\1.7\0,148,0 +Scale|1.28 +Move|1,43 +Move|1,35 +Move|9,101 +Move|17,100 +Move|25,282 +Move|33,191 +Move|41,94 +Move|49,289 +Move|57,375 +Move|65,428 +Move|73,334 +Move|73,133 +Move|81,105 +Move|89,354 +Move|97,68 +Move|97,243 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_speed.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_speed.dat index 7695175ee..8ecc0f733 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_speed.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/386_speed.dat @@ -1 +1,51 @@ -{"Name":"Deoxys","Number":386,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Psychic","Type2":"Blank","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":386,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,192,249,244,237,241,173,63,196,182,203,218,76,87,216,94,189,104,8,207,214,129,9,138,197,156,213,7,171,5,25,34,36,38,58,66,68,69,99,85,100,102,117,118,130,149,161,164,264,352,351,263,290,285,289,411,412,409,278,416,419,446,445,399,363,473,477,496,502,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":95,"Def":90,"SpAtk":95,"SpDef":90,"Speed":180},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"DNA from a space virus mutated and became a Pokémon. It appears where auroras are seen.","Species":"DNA Pokémon","Height":1.7,"Weight":60.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":120,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":35},{"Level":9,"ID":101},{"Level":17,"ID":104},{"Level":25,"ID":282},{"Level":33,"ID":228},{"Level":41,"ID":94},{"Level":49,"ID":129},{"Level":57,"ID":375},{"Level":65,"ID":428},{"Level":73,"ID":97},{"Level":81,"ID":105},{"Level":89,"ID":354},{"Level":97,"ID":245}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Deoxys +Number|386 +ExperienceType|3 +BaseExperience|270 +Type1|Psychic +Type2| +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|386 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,192,249,244,237,241,173,63,196,182,203,218,76,87,216,94,189,104,8,207,214,129,9,138,197,156,213,7,171,5,25,34,36,38,58,66,68,69,99,85,100,102,117,118,130,149,161,164,264,352,351,263,290,285,289,411,412,409,278,416,419,446,445,399,363,473,477,496,502,612,590,70,148 +BaseHP|50 +BaseAttack|95 +BaseDefense|90 +BaseSpAttack|95 +BaseSpDefense|90 +BaseSpeed|180 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|DNA from a space virus mutated and became a Pokémon. It appears where auroras are seen.\DNA Pokémon\60.8\1.7\0,148,0 +Scale|1.28 +Move|1,43 +Move|1,35 +Move|9,101 +Move|17,104 +Move|25,282 +Move|33,228 +Move|41,94 +Move|49,129 +Move|57,375 +Move|65,428 +Move|73,97 +Move|81,105 +Move|89,354 +Move|97,245 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/387.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/387.dat index bfb3b12bb..211d3efeb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/387.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/387.dat @@ -1 +1,51 @@ -{"Name":"Turtwig","Number":387,"ExperienceType":"MediumSlow","BaseExperience":64,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":387,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":75,"EggMoves":[133,34,38,414,580,74,328,402,255,254,276,256,37,321,469,388],"Machines":[174,92,249,237,241,173,63,182,202,203,218,76,231,216,189,104,207,214,197,156,213,14,34,36,99,72,102,115,117,164,331,113,263,290,412,416,446,445,363,447,496,590,15,70,148,431],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":68,"Def":64,"SpAtk":45,"SpDef":55,"Speed":31},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Photosynthesis occurs across its body under the sun. The shell on its back is actually hardened soil.","Species":"Tiny Leaf Pokémon","Height":0.4,"Weight":10.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":5,"ID":110},{"Level":9,"ID":71},{"Level":13,"ID":75},{"Level":17,"ID":174},{"Level":21,"ID":44},{"Level":25,"ID":72},{"Level":29,"ID":73},{"Level":33,"ID":235},{"Level":37,"ID":242},{"Level":41,"ID":202},{"Level":45,"ID":437}],"EvolutionConditions":[{"Condition":"18","ConditionType":"Level","Evolution":388,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Turtwig +Number|387 +ExperienceType|2 +BaseExperience|64 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|387 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|75 +EggMoves|133,34,38,414,580,74,328,402,255,254,276,256,37,321,469,388 +Machines|174,92,249,237,241,173,63,182,202,203,218,76,231,216,189,104,207,214,197,156,213,14,34,36,99,72,102,115,117,164,331,113,263,290,412,416,446,445,363,447,496,590,15,70,148,431 +BaseHP|55 +BaseAttack|68 +BaseDefense|64 +BaseSpAttack|45 +BaseSpDefense|55 +BaseSpeed|31 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Photosynthesis occurs across its body under the sun. The shell on its back is actually hardened soil.\Tiny Leaf Pokémon\10.2\0.4\0,148,0 +Scale|0.7 +Move|1,33 +Move|5,110 +Move|9,71 +Move|13,75 +Move|17,174 +Move|21,44 +Move|25,72 +Move|29,73 +Move|33,235 +Move|37,242 +Move|41,202 +Move|45,437 +TradeValue|50 +EvolutionCondition|388,level,18,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/388.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/388.dat index 414d61409..edefb02af 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/388.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/388.dat @@ -1 +1,52 @@ -{"Name":"Grotle","Number":388,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":387,"Devolution":387,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":75,"EggMoves":[133,34,38,414,580,74,328,402,255,254,276,256,37,321,469,388],"Machines":[174,92,249,237,241,173,63,182,202,203,218,76,231,89,216,189,104,207,214,197,156,213,14,25,34,36,38,99,72,102,115,117,130,164,331,113,263,290,412,416,446,445,363,447,496,523,590,15,70,148,431,560],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":89,"Def":85,"SpAtk":55,"SpDef":65,"Speed":36},"RewardEV":{"HP":0,"Atk":1,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A GROTLE that lives in the forest is said to have its own secret springwater.","Species":"Grove Pokémon","Height":1.1,"Weight":97,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":110},{"Level":5,"ID":110},{"Level":9,"ID":71},{"Level":11,"ID":75},{"Level":17,"ID":174},{"Level":22,"ID":44},{"Level":27,"ID":72},{"Level":32,"ID":73},{"Level":37,"ID":235},{"Level":42,"ID":242},{"Level":47,"ID":202},{"Level":52,"ID":437}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":389,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Grotle +Number|388 +ExperienceType|2 +BaseExperience|142 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|387 +IsGenderLess|0 +CanBreed|1 +Devolution|387 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|75 +EggMoves|133,34,38,414,580,74,328,402,255,254,276,256,37,321,469,388 +Machines|174,92,249,237,241,173,63,182,202,203,218,76,231,89,216,189,104,207,214,197,156,213,14,25,34,36,38,99,72,102,115,117,130,164,331,113,263,290,412,416,446,445,363,447,496,523,590,15,70,148,431,560 +BaseHP|75 +BaseAttack|89 +BaseDefense|85 +BaseSpAttack|55 +BaseSpDefense|65 +BaseSpeed|36 +FPHP|0 +FPAttack|1 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A GROTLE that lives in the forest is said to have its own secret springwater.\Grove Pokémon\97\1.1\0,148,0 +Scale|1.04 +Move|1,33 +Move|1,110 +Move|5,110 +Move|9,71 +Move|11,75 +Move|17,174 +Move|22,44 +Move|27,72 +Move|32,73 +Move|37,235 +Move|42,242 +Move|47,202 +Move|52,437 +TradeValue|60 +EvolutionCondition|389,level,32,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/389.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/389.dat index 664d137d3..89aed8f0e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/389.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/389.dat @@ -1 +1,56 @@ -{"Name":"Torterra","Number":389,"ExperienceType":"MediumSlow","BaseExperience":236,"Type1":"Grass","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":387,"Devolution":388,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":75,"EggMoves":[133,34,38,414,580,74,328,402,255,254,276,256,37,321,469,388],"Machines":[174,46,92,249,157,237,241,173,63,182,202,203,218,76,231,89,216,189,104,207,214,197,156,213,14,25,34,36,38,99,72,90,102,115,117,130,164,331,113,263,290,412,416,446,445,363,447,496,523,590,15,70,148,431,560],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":109,"Def":105,"SpAtk":75,"SpDef":85,"Speed":56},"RewardEV":{"HP":0,"Atk":2,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Ancient people imagined that beneath the ground, a gigantic TORTERRA dwelled.","Species":"Continent Pokémon","Height":2.2,"Weight":310,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.48,"Y":1.48,"Z":1.48},"TradeValue":70,"Moves":[{"Level":1,"ID":452},{"Level":2,"ID":33},{"Level":3,"ID":110},{"Level":4,"ID":71},{"Level":5,"ID":75},{"Level":6,"ID":110},{"Level":9,"ID":71},{"Level":13,"ID":75},{"Level":17,"ID":174},{"Level":22,"ID":44},{"Level":27,"ID":72},{"Level":32,"ID":89},{"Level":33,"ID":73},{"Level":39,"ID":235},{"Level":45,"ID":242},{"Level":51,"ID":202},{"Level":57,"ID":437}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Torterra +Number|389 +ExperienceType|2 +BaseExperience|236 +Type1|Grass +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|387 +IsGenderLess|0 +CanBreed|1 +Devolution|388 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|75 +EggMoves|133,34,38,414,580,74,328,402,255,254,276,256,37,321,469,388 +Machines|174,46,92,249,157,237,241,173,63,182,202,203,218,76,231,89,216,189,104,207,214,197,156,213,14,25,34,36,38,99,72,90,102,115,117,130,164,331,113,263,290,412,416,446,445,363,447,496,523,590,15,70,148,431,560 +TutorMoves|338 +BaseHP|95 +BaseAttack|109 +BaseDefense|105 +BaseSpAttack|75 +BaseSpDefense|85 +BaseSpeed|56 +FPHP|0 +FPAttack|2 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Ancient people imagined that beneath the ground, a gigantic TORTERRA dwelled.\Continent Pokémon\310\2.2\0,148,0 +Scale|1.48 +Move|1,452 +Move|1,33 +Move|1,110 +Move|1,71 +Move|1,75 +Move|5,110 +Move|9,71 +Move|13,75 +Move|17,174 +Move|22,44 +Move|27,72 +Move|32,89 +Move|33,73 +Move|39,235 +Move|45,242 +Move|51,202 +Move|57,437 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/39.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/39.dat index 0d6f9a57b..982fef6c1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/39.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/39.dat @@ -1 +1,54 @@ -{"Name":"Jigglypuff","Number":39,"ExperienceType":"Fast","BaseExperience":95,"Type1":"Normal","Type2":"Fairy","CatchRate":170,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":174,"Devolution":174,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[56],"HiddenAbility":132,"EggMoves":[445,343,313,185,356,505,387,581,195,217,386,214,273],"Machines":[223,29,174,205,92,192,244,237,241,173,59,63,182,240,203,218,76,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,61,55,58,66,68,69,99,85,100,102,115,117,118,130,86,149,161,164,264,352,113,219,280,351,53,263,290,289,374,451,409,278,416,360,446,445,363,447,496,497,510,514,526,528,612,605,590,70,148],"TutorMoves":[],"BaseStats":{"HP":115,"Atk":45,"Def":20,"SpAtk":45,"SpDef":25,"Speed":20},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it inflates to sing a lullaby it can perform longer and cause sure drowsiness in its audience.","Species":"Balloon Pokémon","Height":0.5,"Weight":5.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":47},{"Level":5,"ID":111},{"Level":7,"ID":1},{"Level":10,"ID":589},{"Level":13,"ID":1},{"Level":17,"ID":1},{"Level":21,"ID":205},{"Level":25,"ID":3},{"Level":29,"ID":156},{"Level":33,"ID":34},{"Level":37,"ID":360},{"Level":41,"ID":358},{"Level":45,"ID":102},{"Level":48,"ID":304},{"Level":50,"ID":574},{"Level":53,"ID":38}],"EvolutionConditions":[{"Condition":"8","ConditionType":"Item","Evolution":40,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Jigglypuff +Number|39 +ExperienceType|0 +BaseExperience|95 +Type1|Normal +Type2|Fairy +CatchRate|170 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|174 +Devolution|174 +IsGenderLess|0 +IsMale|25 +Ability1|56 +Ability2|Nothing +HiddenAbility|132 +EggMoves|445,343,313,185,356,505,387,581,195,217,386,214,273 +Machines|223,29,174,205,92,192,244,237,241,173,59,63,182,240,203,218,76,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,61,55,58,66,68,69,99,85,100,102,115,117,118,130,86,149,161,164,264,352,113,219,280,351,53,263,290,289,374,451,409,278,416,360,446,445,363,447,496,497,510,514,526,528,612,605,590,70,148 +BaseHP|115 +BaseAttack|45 +BaseDefense|20 +BaseSpAttack|45 +BaseSpDefense|25 +BaseSpeed|20 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it inflates to sing a lullaby it can perform longer and cause sure drowsiness in its audience.\Balloon Pokémon\5.5\0.5\0,148,0 +Scale|0.7 +Move|1,47 +Move|5,111 +Move|7,1 +Move|10,589 +Move|13,50 +Move|17,496 +Move|21,205 +Move|25,3 +Move|29,156 +Move|33,34 +Move|37,360 +Move|41,358 +Move|45,102 +Move|48,304 +Move|50,574 +Move|53,38 +EvolutionCondition|40,item,8,item +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/390.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/390.dat index 89771577b..879d902c4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/390.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/390.dat @@ -1 +1,52 @@ -{"Name":"Chimchar","Number":390,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"HumanLike","BaseEggSteps":5355,"EggPokemon":390,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":89,"EggMoves":[274,299,68,24,227,252,7,116,264,257,270,501,66,9],"Machines":[174,205,92,249,237,241,173,63,182,203,218,231,216,189,104,207,214,126,129,111,9,197,156,213,5,25,34,36,6,66,68,69,99,102,117,130,164,264,263,290,416,446,445,363,468,488,490,496,510,612,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":44,"Atk":58,"Def":44,"SpAtk":58,"SpDef":44,"Speed":61},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The gas made in its belly burns from its rear end. The fire burns weakly when it feels sick.","Species":"Chimp Pokémon","Height":0.5,"Weight":6.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":7,"ID":52},{"Level":9,"ID":269},{"Level":15,"ID":154},{"Level":17,"ID":172},{"Level":23,"ID":417},{"Level":25,"ID":259},{"Level":31,"ID":263},{"Level":33,"ID":83},{"Level":39,"ID":512},{"Level":41,"ID":303},{"Level":47,"ID":53}],"EvolutionConditions":[{"Condition":"14","ConditionType":"Level","Evolution":391,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Chimchar +Number|390 +ExperienceType|2 +BaseExperience|62 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|5355 +EggPokemon|390 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|89 +EggMoves|274,299,68,24,227,252,7,116,264,257,270,501,66,9 +Machines|174,205,92,249,237,241,173,63,182,203,218,231,216,189,104,207,214,126,129,111,9,197,156,213,5,25,34,36,6,66,68,69,99,102,117,130,164,264,263,290,416,446,445,363,468,488,490,496,510,612,590,15,70,431 +BaseHP|44 +BaseAttack|58 +BaseDefense|44 +BaseSpAttack|58 +BaseSpDefense|44 +BaseSpeed|61 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|The gas made in its belly burns from its rear end. The fire burns weakly when it feels sick.\Chimp Pokémon\6.2\0.5\0,148,0 +Scale|0.7 +Move|1,10 +Move|1,43 +Move|7,52 +Move|9,269 +Move|15,154 +Move|17,172 +Move|23,417 +Move|25,259 +Move|31,263 +Move|33,83 +Move|39,512 +Move|41,303 +Move|47,53 +TradeValue|50 +EvolutionCondition|391,level,14,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/391.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/391.dat index b72556ba3..cd5ae40f7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/391.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/391.dat @@ -1 +1,54 @@ -{"Name":"Monferno","Number":391,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Fire","Type2":"Fighting","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"HumanLike","BaseEggSteps":5355,"EggPokemon":390,"Devolution":390,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":89,"EggMoves":[274,299,68,24,227,252,7,116,264,257,270,501,66,9],"Machines":[223,174,205,92,249,237,241,173,63,182,203,218,231,216,189,104,207,214,126,129,111,9,197,156,213,7,5,25,34,36,6,66,68,69,99,102,117,130,164,264,263,290,411,416,446,445,363,468,488,490,496,510,526,612,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":64,"Atk":78,"Def":52,"SpAtk":78,"SpDef":52,"Speed":81},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A bigger fire on its tail and a brighter blue pattern on its face means its rank in its pack is higher.","Species":"Playful Pokémon","Height":0.9,"Weight":22,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":60,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":3,"ID":52},{"Level":7,"ID":52},{"Level":9,"ID":269},{"Level":14,"ID":183},{"Level":16,"ID":154},{"Level":19,"ID":172},{"Level":26,"ID":364},{"Level":29,"ID":259},{"Level":36,"ID":370},{"Level":39,"ID":83},{"Level":46,"ID":512},{"Level":49,"ID":303},{"Level":56,"ID":394}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":392,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Monferno +Number|391 +ExperienceType|2 +BaseExperience|142 +Type1|Fire +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|5355 +EggPokemon|390 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|89 +EggMoves|274,299,68,24,227,252,7,116,264,257,270,501,66,9 +Machines|223,174,205,92,249,237,241,173,63,182,203,218,231,216,189,104,207,214,126,129,111,9,197,156,213,7,5,25,34,36,6,66,68,69,99,102,117,130,164,264,263,290,411,416,446,445,363,468,488,490,496,510,526,612,590,15,70,431 +BaseHP|64 +BaseAttack|78 +BaseDefense|52 +BaseSpAttack|78 +BaseSpDefense|52 +BaseSpeed|81 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|A bigger fire on its tail and a brighter blue pattern on its face means its rank in its pack is higher.\Playful Pokémon\22\0.9\0,148,0 +Scale|0.96 +Move|1,10 +Move|1,43 +Move|1,52 +Move|7,52 +Move|9,269 +Move|14,183 +Move|16,154 +Move|19,172 +Move|26,364 +Move|29,259 +Move|36,370 +Move|39,83 +Move|46,512 +Move|49,303 +Move|56,394 +TradeValue|60 +EvolutionCondition|392,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/392.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/392.dat index b078da511..ec1f76576 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/392.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/392.dat @@ -1 +1,57 @@ -{"Name":"Infernape","Number":392,"ExperienceType":"MediumSlow","BaseExperience":240,"Type1":"Fire","Type2":"Fighting","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"HumanLike","BaseEggSteps":5355,"EggPokemon":390,"Devolution":391,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":89,"EggMoves":[274,299,68,24,227,252,7,116,264,257,270,501,66,9],"Machines":[223,174,205,46,92,249,237,241,173,63,182,203,218,231,89,216,189,104,207,214,126,129,111,9,197,156,213,7,5,25,34,36,38,6,66,68,69,99,102,117,130,164,264,263,290,411,416,446,445,363,468,488,490,496,510,523,526,612,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":76,"Atk":104,"Def":71,"SpAtk":104,"SpDef":71,"Speed":108},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It tosses its enemies around with agility. It uses all its limbs to fight in its own unique style.","Species":"Flame Pokémon","Height":1.2,"Weight":55,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":70,"Moves":[{"Level":1,"ID":394},{"Level":2,"ID":386},{"Level":3,"ID":10},{"Level":4,"ID":43},{"Level":5,"ID":52},{"Level":6,"ID":269},{"Level":7,"ID":52},{"Level":9,"ID":269},{"Level":14,"ID":183},{"Level":16,"ID":154},{"Level":19,"ID":172},{"Level":26,"ID":364},{"Level":29,"ID":386},{"Level":36,"ID":370},{"Level":42,"ID":83},{"Level":52,"ID":512},{"Level":58,"ID":347},{"Level":68,"ID":394}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Infernape +Number|392 +ExperienceType|2 +BaseExperience|240 +Type1|Fire +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|5355 +EggPokemon|390 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|89 +EggMoves|274,299,68,24,227,252,7,116,264,257,270,501,66,9 +Machines|223,174,205,46,92,249,237,241,173,63,182,203,218,231,89,216,189,104,207,214,126,129,111,9,197,156,213,7,5,25,34,36,38,6,66,68,69,99,102,117,130,164,264,263,290,411,416,446,445,363,468,488,490,496,510,523,526,612,590,15,70,431,560 +TutorMoves|307 +BaseHP|76 +BaseAttack|104 +BaseDefense|71 +BaseSpAttack|104 +BaseSpDefense|71 +BaseSpeed|108 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It tosses its enemies around with agility. It uses all its limbs to fight in its own unique style.\Flame Pokémon\55\1.2\0,148,0 +Scale|1.08 +Move|1,394 +Move|1,386 +Move|1,10 +Move|1,43 +Move|1,52 +Move|1,269 +Move|7,52 +Move|9,269 +Move|14,183 +Move|16,154 +Move|19,172 +Move|26,364 +Move|29,386 +Move|36,370 +Move|42,83 +Move|52,512 +Move|58,347 +Move|68,394 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/393.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/393.dat index 993f3cd3e..b2e30950c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/393.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/393.dat @@ -1 +1,52 @@ -{"Name":"Piplup","Number":393,"ExperienceType":"MediumSlow","BaseExperience":63,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":393,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":128,"EggMoves":[97,392,117,458,297,175,56,196,189,300,173,48,281],"Machines":[174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,197,156,213,34,36,61,55,58,99,102,117,164,352,263,290,362,416,432,446,445,363,365,496,503,511,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":53,"Atk":51,"Def":53,"SpAtk":61,"SpDef":56,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It doesn't like to be taken care of. It's difficult to bond with since it won't listen to its Trainer.","Species":"Penguin Pokémon","Height":0.4,"Weight":5.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":4,"ID":45},{"Level":8,"ID":145},{"Level":11,"ID":346},{"Level":15,"ID":64},{"Level":18,"ID":61},{"Level":22,"ID":117},{"Level":25,"ID":31},{"Level":29,"ID":362},{"Level":32,"ID":250},{"Level":36,"ID":54},{"Level":39,"ID":65},{"Level":43,"ID":56}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":394,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Piplup +Number|393 +ExperienceType|2 +BaseExperience|63 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|393 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|128 +EggMoves|97,392,117,458,297,175,56,196,189,300,173,48,281 +Machines|174,92,237,173,59,63,196,182,240,203,218,216,189,104,207,214,197,156,213,34,36,61,55,58,99,102,117,164,352,263,290,362,416,432,446,445,363,365,496,503,511,590,57,250,127,291 +BaseHP|53 +BaseAttack|51 +BaseDefense|53 +BaseSpAttack|61 +BaseSpDefense|56 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It doesn't like to be taken care of. It's difficult to bond with since it won't listen to its Trainer.\Penguin Pokémon\5.2\0.4\0,148,0 +Scale|0.7 +Move|1,1 +Move|4,45 +Move|8,145 +Move|11,346 +Move|15,64 +Move|18,61 +Move|22,117 +Move|25,31 +Move|29,362 +Move|32,250 +Move|36,54 +Move|39,65 +Move|43,56 +TradeValue|50 +EvolutionCondition|394,level,16,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/394.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/394.dat index e4f3c00be..05242ad8d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/394.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/394.dat @@ -1 +1,54 @@ -{"Name":"Prinplup","Number":394,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":393,"Devolution":393,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":128,"EggMoves":[97,392,117,458,297,175,56,196,189,300,173,48,281],"Machines":[223,174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,197,156,213,34,36,61,55,58,99,102,117,130,164,352,258,280,317,332,263,290,362,374,421,416,432,446,445,363,447,365,468,496,497,503,511,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":64,"Atk":66,"Def":68,"SpAtk":81,"SpDef":76,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives a solitary life. Its wings deliver wicked blows that can snap even the thickest of trees.","Species":"Penguin Pokémon","Height":0.8,"Weight":23,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":4,"ID":45},{"Level":8,"ID":145},{"Level":11,"ID":346},{"Level":15,"ID":64},{"Level":16,"ID":232},{"Level":19,"ID":61},{"Level":24,"ID":117},{"Level":28,"ID":31},{"Level":33,"ID":362},{"Level":37,"ID":250},{"Level":42,"ID":54},{"Level":46,"ID":65},{"Level":50,"ID":56}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":395,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Prinplup +Number|394 +ExperienceType|2 +BaseExperience|142 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|393 +IsGenderLess|0 +CanBreed|1 +Devolution|393 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|128 +EggMoves|97,392,117,458,297,175,56,196,189,300,173,48,281 +Machines|223,174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,197,156,213,34,36,61,55,58,99,102,117,130,164,352,258,280,317,332,263,290,362,374,421,416,432,446,445,363,447,365,468,496,497,503,511,590,57,70,250,127,291 +BaseHP|64 +BaseAttack|66 +BaseDefense|68 +BaseSpAttack|81 +BaseSpDefense|76 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives a solitary life. Its wings deliver wicked blows that can snap even the thickest of trees.\Penguin Pokémon\23\0.8\0,148,0 +Scale|0.92 +Move|1,33 +Move|1,45 +Move|4,45 +Move|8,145 +Move|11,346 +Move|15,64 +Move|16,232 +Move|19,61 +Move|24,117 +Move|28,31 +Move|33,362 +Move|37,250 +Move|42,54 +Move|46,65 +Move|50,56 +TradeValue|60 +EvolutionCondition|395,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/395.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/395.dat index cee6c9d40..ff520224e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/395.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/395.dat @@ -1 +1,54 @@ -{"Name":"Empoleon","Number":395,"ExperienceType":"MediumSlow","BaseExperience":239,"Type1":"Water","Type2":"Steel","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":393,"Devolution":394,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":128,"EggMoves":[97,392,117,458,297,175,56,196,189,300,173,48,281],"Machines":[223,174,46,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,197,156,213,211,210,34,36,38,61,55,58,99,102,117,130,164,352,258,280,317,332,263,290,362,374,421,416,432,419,446,445,363,447,365,468,496,497,503,511,590,15,57,70,250,127,431,560,291],"TutorMoves":[],"BaseStats":{"HP":84,"Atk":86,"Def":88,"SpAtk":111,"SpDef":101,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It avoids unnecessary disputes but it will decimate anything that threatens its pride.","Species":"Emperor Pokémon","Height":1.7,"Weight":84.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":70,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":3,"ID":145},{"Level":4,"ID":45},{"Level":8,"ID":145},{"Level":15,"ID":64},{"Level":16,"ID":232},{"Level":19,"ID":61},{"Level":28,"ID":31},{"Level":33,"ID":362},{"Level":36,"ID":453},{"Level":39,"ID":250},{"Level":46,"ID":54},{"Level":52,"ID":65},{"Level":59,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Empoleon +Number|395 +ExperienceType|2 +BaseExperience|239 +Type1|Water +Type2|Steel +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|393 +IsGenderLess|0 +CanBreed|1 +Devolution|394 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|128 +EggMoves|97,392,117,458,297,175,56,196,189,300,173,48,281 +Machines|223,174,46,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,197,156,213,211,210,34,36,38,61,55,58,99,102,117,130,164,352,258,280,317,332,263,290,362,374,421,416,432,419,446,445,363,447,365,468,496,497,503,511,590,15,57,70,250,127,431,560,291 +TutorMoves|308 +BaseHP|84 +BaseAttack|86 +BaseDefense|88 +BaseSpAttack|111 +BaseSpDefense|101 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It avoids unnecessary disputes but it will decimate anything that threatens its pride.\Emperor Pokémon\84.5\1.7\0,148,0 +Scale|1.28 +Move|1,33 +Move|1,45 +Move|1,145 +Move|4,45 +Move|8,145 +Move|15,64 +Move|16,232 +Move|19,61 +Move|28,31 +Move|33,362 +Move|36,453 +Move|39,250 +Move|46,54 +Move|52,65 +Move|59,56 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/396.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/396.dat index da55d700f..215aad2b2 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/396.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/396.dat @@ -1 +1,52 @@ -{"Name":"Starly","Number":396,"ExperienceType":"MediumSlow","BaseExperience":49,"Type1":"Normal","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":396,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51],"HiddenAbility":120,"EggMoves":[310,197,38,297,193,119,31,228,279,355,211,253],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,497,526,590,19],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":55,"Def":30,"SpAtk":30,"SpDef":30,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They flock around mountains and fields, chasing after bug Pokémon. Their singing is noisy and annoying.","Species":"Starling Pokémon","Height":0.3,"Weight":2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":5,"ID":98},{"Level":9,"ID":17},{"Level":13,"ID":104},{"Level":17,"ID":283},{"Level":21,"ID":18},{"Level":25,"ID":332},{"Level":29,"ID":36},{"Level":33,"ID":97},{"Level":37,"ID":413},{"Level":41,"ID":1}],"EvolutionConditions":[{"Condition":"14","ConditionType":"Level","Evolution":397,"Trigger":"LevelUp"}],"Items":[{"Id":2039,"Chance":5}]} \ No newline at end of file +Name|Starly +Number|396 +ExperienceType|2 +BaseExperience|49 +Type1|Normal +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|396 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|51 +Ability2|Nothing +HiddenAbility|120 +EggMoves|310,197,38,297,193,119,31,228,279,355,211,253 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,497,526,590,19 +BaseHP|40 +BaseAttack|55 +BaseDefense|30 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|They flock around mountains and fields, chasing after bug Pokémon. Their singing is noisy and annoying.\Starling Pokémon\2\0.3\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,45 +Move|5,98 +Move|9,17 +Move|13,104 +Move|17,283 +Move|21,18 +Move|25,332 +Move|29,36 +Move|33,97 +Move|37,413 +Move|41,515 +TradeValue|10 +Item|5,2039 +EvolutionCondition|397,Level,14,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/397.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/397.dat index 25c7c1e55..15ae56d38 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/397.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/397.dat @@ -1 +1,53 @@ -{"Name":"Staravia","Number":397,"ExperienceType":"MediumSlow","BaseExperience":119,"Type1":"Normal","Type2":"Flying","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":396,"Devolution":396,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22],"HiddenAbility":120,"EggMoves":[310,197,38,297,193,119,31,228,279,355,211,253],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,497,514,526,590,19],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":75,"Def":50,"SpAtk":40,"SpDef":40,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They maintain huge flocks fierce scuffles break out between various flocks.","Species":"Starling Pokémon","Height":0.6,"Weight":15.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":20,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":3,"ID":98},{"Level":5,"ID":98},{"Level":9,"ID":17},{"Level":13,"ID":104},{"Level":18,"ID":283},{"Level":23,"ID":18},{"Level":28,"ID":332},{"Level":33,"ID":36},{"Level":38,"ID":97},{"Level":43,"ID":413},{"Level":48,"ID":1}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Level","Evolution":398,"Trigger":"LevelUp"}],"Items":[{"Id":2039,"Chance":5}]} \ No newline at end of file +Name|Staravia +Number|397 +ExperienceType|2 +BaseExperience|119 +Type1|Normal +Type2|Flying +CatchRate|120 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|396 +IsGenderLess|0 +CanBreed|1 +Devolution|396 +IsMale|50 +Ability1|22 +Ability2|Nothing +HiddenAbility|120 +EggMoves|310,197,38,297,193,119,31,228,279,355,211,253 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,497,514,526,590,19 +BaseHP|55 +BaseAttack|75 +BaseDefense|50 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|They maintain huge flocks fierce scuffles break out between various flocks.\Starling Pokémon\15.5\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|1,45 +Move|1,98 +Move|5,98 +Move|9,17 +Move|13,104 +Move|18,283 +Move|23,18 +Move|28,332 +Move|33,36 +Move|38,97 +Move|43,413 +Move|48,515 +TradeValue|20 +Item|5,2039 +EvolutionCondition|398,Level,34,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/398.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/398.dat index 0ade63a6e..03a0248a3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/398.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/398.dat @@ -1 +1,54 @@ -{"Name":"Staraptor","Number":398,"ExperienceType":"MediumSlow","BaseExperience":214,"Type1":"Normal","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":396,"Devolution":397,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22],"HiddenAbility":120,"EggMoves":[310,197,38,297,193,119,31,228,279,355,211,253],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,38,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,497,514,526,590,19],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":120,"Def":70,"SpAtk":50,"SpDef":60,"Speed":100},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When STARAVIA evolve into STARAPTOR, they leave the flock to live alone. They have sturdy wings.","Species":"Predator Pokémon","Height":1.2,"Weight":24.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":45,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":3,"ID":98},{"Level":4,"ID":17},{"Level":5,"ID":98},{"Level":9,"ID":17},{"Level":13,"ID":104},{"Level":18,"ID":283},{"Level":23,"ID":18},{"Level":28,"ID":332},{"Level":33,"ID":36},{"Level":34,"ID":370},{"Level":41,"ID":97},{"Level":49,"ID":413},{"Level":57,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":2039,"Chance":5}]} \ No newline at end of file +Name|Staraptor +Number|398 +ExperienceType|2 +BaseExperience|214 +Type1|Normal +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|396 +IsGenderLess|0 +CanBreed|1 +Devolution|397 +IsMale|50 +Ability1|22 +Ability2|Nothing +HiddenAbility|120 +EggMoves|310,197,38,297,193,119,31,228,279,355,211,253 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,38,99,102,117,143,164,332,263,290,355,416,432,445,363,365,369,496,497,514,526,590,19 +BaseHP|85 +BaseAttack|120 +BaseDefense|70 +BaseSpAttack|50 +BaseSpDefense|60 +BaseSpeed|100 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When STARAVIA evolve into STARAPTOR, they leave the flock to live alone. They have sturdy wings.\Predator Pokémon\24.9\1.2\0,148,0 +Scale|1.08 +Move|1,33 +Move|1,45 +Move|1,98 +Move|1,17 +Move|5,98 +Move|9,17 +Move|13,104 +Move|18,283 +Move|23,18 +Move|28,332 +Move|33,36 +Move|34,370 +Move|41,97 +Move|49,413 +Move|57,515 +TradeValue|45 +Item|5,2039 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/399.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/399.dat index 702e7adf6..3e0cb24c0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/399.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/399.dat @@ -1 +1,52 @@ -{"Name":"Bidoof","Number":399,"ExperienceType":"MediumFast","BaseExperience":50,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":4080,"EggPokemon":399,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[86,109],"HiddenAbility":141,"EggMoves":[401,111,38,203,154,316,98,431,205,130,214,346],"Machines":[29,174,205,92,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,210,34,36,61,55,58,6,99,85,102,117,130,86,164,269,351,263,290,451,416,446,445,363,447,365,496,497,514,526,590,15],"TutorMoves":[],"BaseStats":{"HP":59,"Atk":45,"Def":40,"SpAtk":35,"SpDef":40,"Speed":31},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives in groups by the water. It chews up boulders and trees around its nest with its incisors.","Species":"Plump Mouse Pokémon","Height":0.5,"Weight":20,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":5,"Moves":[{"Level":1,"ID":33},{"Level":5,"ID":45},{"Level":9,"ID":111},{"Level":13,"ID":205},{"Level":17,"ID":29},{"Level":21,"ID":158},{"Level":25,"ID":281},{"Level":29,"ID":133},{"Level":33,"ID":36},{"Level":37,"ID":162},{"Level":41,"ID":276},{"Level":45,"ID":174}],"EvolutionConditions":[{"Condition":"15","ConditionType":"Level","Evolution":400,"Trigger":"LevelUp"}],"Items":[{"Id":2006,"Chance":5}]} \ No newline at end of file +Name|Bidoof +Number|399 +ExperienceType|1 +BaseExperience|50 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|4080 +EggPokemon|399 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|86 +Ability2|109 +HiddenAbility|141 +EggMoves|401,111,38,203,154,316,98,431,205,130,214,346 +Machines|29,174,205,92,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,210,34,36,61,55,58,6,99,85,102,117,130,86,164,269,351,263,290,451,416,446,445,363,447,365,496,497,514,526,590,15 +BaseHP|59 +BaseAttack|45 +BaseDefense|40 +BaseSpAttack|35 +BaseSpDefense|40 +BaseSpeed|31 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives in groups by the water. It chews up boulders and trees around its nest with its incisors.\Plump Mouse Pokémon\20\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|5,45 +Move|9,111 +Move|13,205 +Move|17,29 +Move|21,158 +Move|25,281 +Move|29,133 +Move|33,36 +Move|37,162 +Move|41,276 +Move|45,174 +TradeValue|5 +Item|5,2006 +EvolutionCondition|400,Level,15,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/3_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/3_mega.dat new file mode 100644 index 000000000..17d62126f --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/3_mega.dat @@ -0,0 +1,56 @@ +Name|Mega Venusaur +Number|3 +ExperienceType|2 +BaseExperience|236 +Type1|Grass +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|1 +IsGenderLess|0 +IsMale|87.5 +Ability1|47 +Ability2|Nothing +HiddenAbility|47 +EggMoves|133,204,174,203,202,320,275,437,345,267,80,438,130,124,580 +Machines|29,174,46,92,249,237,241,230,173,63,182,202,203,218,76,89,216,189,104,207,214,188,111,197,156,213,210,14,34,36,38,99,72,90,102,117,164,331,113,219,263,290,412,416,445,363,447,474,496,497,523,267,590,15,70,148,431,560 +TutorMoves|338 +BaseHP|80 +BaseAttack|100 +BaseDefense|123 +BaseSpAttack|122 +BaseSpDefense|120 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|By spreading the broad petals of its flower and catching the sun's rays, it fills its body with power.\Seed Pokémon\155.5\2.4\0,148,0 +Scale|1.4 +Move|1,22 +Move|1,33 +Move|1,45 +Move|1,73 +Move|3,45 +Move|7,73 +Move|9,22 +Move|13,77 +Move|13,79 +Move|15,36 +Move|20,75 +Move|23,230 +Move|28,74 +Move|31,38 +Move|32,80 +Move|39,388 +Move|45,235 +Move|50,572 +Move|53,76 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/4.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/4.dat index c44525dcd..aa1c4323b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/4.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/4.dat @@ -1 +1,49 @@ -{"Name":"Charmander","Number":4,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":4,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":94,"EggMoves":[314,246,187,44,68,242,349,406,407,394,264,232,200,14,251,157],"Machines":[223,29,174,46,92,249,237,241,173,63,182,203,218,231,225,216,91,189,104,207,214,126,129,111,9,197,156,213,7,210,5,14,25,34,36,66,68,69,99,82,102,117,130,157,164,264,337,280,53,317,332,263,290,315,374,261,421,416,445,363,468,488,496,497,510,612,590,15,70],"TutorMoves":[],"BaseStats":{"HP":39,"Atk":52,"Def":43,"SpAtk":60,"SpDef":50,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The flame on its tail shows the strength of its life force. If it is weak, the flame also burns weakly.","Species":"Lizard Pokémon","Height":0.6,"Weight":8.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":50,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":289},{"Level":7,"ID":52},{"Level":10,"ID":108},{"Level":16,"ID":82},{"Level":19,"ID":184},{"Level":25,"ID":424},{"Level":28,"ID":481},{"Level":34,"ID":163},{"Level":37,"ID":53},{"Level":43,"ID":83},{"Level":46,"ID":517}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":5,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Charmander +Number|4 +ExperienceType|2 +BaseExperience|62 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|4 +IsGenderLess|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|94 +EggMoves|314,246,187,44,68,242,349,406,407,394,264,232,200,14,251,157 +Machines|223,29,174,46,92,249,237,241,173,63,182,203,218,231,225,216,91,189,104,207,214,126,129,111,9,197,156,213,7,210,5,14,25,34,36,66,68,69,99,82,102,117,130,157,164,264,337,280,53,317,332,263,290,315,374,261,421,416,445,363,468,488,496,497,510,612,590,15,70 +BaseHP|39 +BaseAttack|52 +BaseDefense|43 +BaseSpAttack|60 +BaseSpDefense|50 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|The flame on its tail shows the strength of its life force. If it is weak, the flame also burns weakly.\Lizard Pokémon\8.5\0.6\0,148,0 +Scale|0.84 +Move|1,45 +Move|1,10 +Move|7,52 +Move|10,108 +Move|16,82 +Move|19,184 +Move|25,424 +Move|28,481 +Move|34,163 +Move|37,53 +Move|43,83 +Move|46,517 +EvolutionCondition|5,Level,16,Level +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/40.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/40.dat index eaecfbea4..5256c8d2e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/40.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/40.dat @@ -1 +1,43 @@ -{"Name":"Wigglytuff","Number":40,"ExperienceType":"Fast","BaseExperience":191,"Type1":"Normal","Type2":"Fairy","CatchRate":50,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":174,"Devolution":39,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[56],"HiddenAbility":132,"EggMoves":[445,343,313,185,356,505,387,581,195,217,386,214,273],"Machines":[223,29,174,205,92,192,244,237,241,173,59,63,182,240,203,218,76,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,38,61,55,58,66,68,69,99,85,100,102,115,117,118,130,86,149,161,164,264,352,113,219,280,351,53,263,290,289,411,374,451,409,278,416,360,446,445,363,447,496,497,510,514,526,528,612,605,590,70,148],"TutorMoves":[],"BaseStats":{"HP":140,"Atk":70,"Def":45,"SpAtk":85,"SpDef":50,"Speed":45},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Their fur feels so good that if two of them snuggle together, they won't want to be separated.","Species":"Balloon Pokémon","Height":1,"Weight":12,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":35,"Moves":[{"Level":1,"ID":3},{"Level":2,"ID":38},{"Level":3,"ID":47},{"Level":4,"ID":1},{"Level":5,"ID":111},{"Level":6,"ID":583}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Wigglytuff +Number|40 +ExperienceType|0 +BaseExperience|191 +Type1|Normal +Type2|Fairy +CatchRate|50 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|174 +Devolution|39 +IsGenderLess|0 +IsMale|25 +Ability1|56 +Ability2|Nothing +HiddenAbility|132 +EggMoves|445,343,313,185,356,505,387,581,195,217,386,214,273 +Machines|223,29,174,205,92,192,244,237,241,173,59,63,182,240,203,218,76,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,38,61,55,58,66,68,69,99,85,100,102,115,117,118,130,86,149,161,164,264,352,113,219,280,351,53,263,290,289,411,374,451,409,278,416,360,446,445,363,447,496,497,510,514,526,528,612,605,590,70,148 +BaseHP|140 +BaseAttack|70 +BaseDefense|45 +BaseSpAttack|85 +BaseSpDefense|50 +BaseSpeed|45 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Their fur feels so good that if two of them snuggle together, they won't want to be separated.\Balloon Pokémon\12\1\0,148,0 +Scale|1 +Move|1,3 +Move|1,38 +Move|1,47 +Move|1,50 +Move|1,111 +Move|1,583 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/400.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/400.dat index ab2e2c60c..79b94a9fe 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/400.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/400.dat @@ -1 +1,55 @@ -{"Name":"Bibarel","Number":400,"ExperienceType":"MediumFast","BaseExperience":144,"Type1":"Normal","Type2":"Water","CatchRate":127,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":4080,"EggPokemon":399,"Devolution":399,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[86,109],"HiddenAbility":141,"EggMoves":[401,111,38,203,154,316,98,431,205,130,214,346],"Machines":[29,174,205,92,192,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,210,5,25,34,36,38,61,55,58,6,66,68,69,99,85,102,117,118,130,86,164,264,352,269,351,263,290,374,451,416,446,445,363,447,365,496,497,503,514,523,526,590,15,57,70,250,127,431,291],"TutorMoves":[],"BaseStats":{"HP":79,"Atk":85,"Def":60,"SpAtk":55,"SpDef":60,"Speed":71},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It busily makes its nest with stacks of branches and roots it has cut up with its sharp incisors.","Species":"Beaver Pokémon","Height":1,"Weight":31.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":15,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":45},{"Level":5,"ID":45},{"Level":9,"ID":111},{"Level":13,"ID":205},{"Level":15,"ID":55},{"Level":18,"ID":29},{"Level":23,"ID":158},{"Level":28,"ID":281},{"Level":33,"ID":133},{"Level":38,"ID":36},{"Level":43,"ID":162},{"Level":48,"ID":276},{"Level":53,"ID":174}],"EvolutionConditions":[],"Items":[{"Id":2009,"Chance":5},{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Bibarel +Number|400 +ExperienceType|1 +BaseExperience|144 +Type1|Normal +Type2|Water +CatchRate|127 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|4080 +EggPokemon|399 +IsGenderLess|0 +CanBreed|1 +Devolution|399 +IsMale|50 +Ability1|86 +Ability2|109 +HiddenAbility|141 +EggMoves|401,111,38,203,154,316,98,431,205,130,214,346 +Machines|29,174,205,92,192,249,237,241,173,59,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,197,156,213,168,210,5,25,34,36,38,61,55,58,6,66,68,69,99,85,102,117,118,130,86,164,264,352,269,351,263,290,374,451,416,446,445,363,447,365,496,497,503,514,523,526,590,15,57,70,250,127,431,291 +BaseHP|79 +BaseAttack|85 +BaseDefense|60 +BaseSpAttack|55 +BaseSpDefense|60 +BaseSpeed|71 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It busily makes its nest with stacks of branches and roots it has cut up with its sharp incisors.\Beaver Pokémon\31.5\1\0,148,0 +Scale|1 +Move|1,563 +Move|1,33 +Move|1,45 +Move|5,45 +Move|9,111 +Move|13,205 +Move|15,55 +Move|18,29 +Move|23,158 +Move|28,281 +Move|33,133 +Move|38,36 +Move|43,162 +Move|48,276 +Move|53,174 +TradeValue|15 +Item|5,2009 +Item|50,2006 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/401.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/401.dat index d5875ce7b..1009c8332 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/401.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/401.dat @@ -1 +1,41 @@ -{"Name":"Kricketot","Number":401,"ExperienceType":"MediumSlow","BaseExperience":39,"Type1":"Bug","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":401,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61],"HiddenAbility":50,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":37,"Atk":25,"Def":41,"SpAtk":25,"SpDef":41,"Speed":25},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When its antennae hit each other it sounds like the music of a xylophone.","Species":"Cricket Pokémon","Height":0.3,"Weight":2.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":117},{"Level":6,"ID":522},{"Level":16,"ID":450}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Kricketot +Number|401 +ExperienceType|2 +BaseExperience|39 +Type1|Bug +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|401 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|61 +Ability2|Nothing +HiddenAbility|50 +Machines| +BaseHP|37 +BaseAttack|25 +BaseDefense|41 +BaseSpAttack|25 +BaseSpDefense|41 +BaseSpeed|25 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When its antennae hit each other it sounds like the music of a xylophone.\Cricket Pokémon\2.2\0.3\0,148,0 +Scale|0.7 +Move|1,45 +Move|1,117 +Move|6,522 +Move|16,450 +TradeValue|20 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/402.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/402.dat index f754fd68a..82cfd59f6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/402.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/402.dat @@ -1 +1,52 @@ -{"Name":"Kricketune","Number":402,"ExperienceType":"MediumSlow","BaseExperience":134,"Type1":"Bug","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":401,"Devolution":402,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68],"HiddenAbility":101,"EggMoves":[],"Machines":[174,92,249,237,241,173,63,182,203,218,216,189,104,207,214,197,156,213,210,36,99,72,102,117,118,164,263,290,206,318,416,445,363,468,496,522,611,612,590,15,70,148],"TutorMoves":[],"BaseStats":{"HP":77,"Atk":85,"Def":51,"SpAtk":55,"SpDef":51,"Speed":65},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"By allowing its cry to resonate in the hollow of its belly, it produces a captivating sound.","Species":"Cricket Pokémon","Height":1,"Weight":25.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":40,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":117},{"Level":10,"ID":210},{"Level":14,"ID":141},{"Level":18,"ID":47},{"Level":22,"ID":116},{"Level":26,"ID":163},{"Level":30,"ID":404},{"Level":34,"ID":103},{"Level":36,"ID":1},{"Level":38,"ID":269},{"Level":42,"ID":400},{"Level":44,"ID":1},{"Level":46,"ID":405},{"Level":50,"ID":195}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Kricketune +Number|402 +ExperienceType|2 +BaseExperience|134 +Type1|Bug +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|401 +IsGenderLess|0 +CanBreed|1 +Devolution|402 +IsMale|50 +Ability1|68 +Ability2|Nothing +HiddenAbility|101 +Machines|174,92,249,237,241,173,63,182,203,218,216,189,104,207,214,197,156,213,210,36,99,72,102,117,118,164,263,290,206,318,416,445,363,468,496,522,611,612,590,15,70,148 +BaseHP|77 +BaseAttack|85 +BaseDefense|51 +BaseSpAttack|55 +BaseSpDefense|51 +BaseSpeed|65 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|By allowing its cry to resonate in the hollow of its belly, it produces a captivating sound.\Cricket Pokémon\25.5\1.0\0,148,0 +Scale|1.0 +Move|1,45 +Move|1,117 +Move|10,210 +Move|14,141 +Move|18,47 +Move|22,116 +Move|26,163 +Move|30,404 +Move|34,103 +Move|36,565 +Move|38,269 +Move|42,400 +Move|44,564 +Move|46,405 +Move|50,195 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/403.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/403.dat index 45ae3e9a7..d7f8ec2a6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/403.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/403.dat @@ -1 +1,52 @@ -{"Name":"Shinx","Number":403,"ExperienceType":"MediumSlow","BaseExperience":53,"Type1":"Electric","Type2":"Blank","CatchRate":235,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":403,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[79,22],"HiddenAbility":62,"EggMoves":[24,598,313,424,270,336,423,98,351,324,129,36,422,400],"Machines":[174,46,92,192,237,173,63,182,240,203,218,231,216,189,104,207,214,129,197,156,213,210,36,6,99,102,117,164,351,263,290,416,445,363,496,555,590,70,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":65,"Def":34,"SpAtk":40,"SpDef":34,"Speed":45},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The extension and contraction of its muscles generates electricity. Its fur glows when it's in trouble.","Species":"Flash Pokémon","Height":0.5,"Weight":9.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":33},{"Level":5,"ID":43},{"Level":9,"ID":268},{"Level":11,"ID":608},{"Level":13,"ID":209},{"Level":17,"ID":44},{"Level":21,"ID":46},{"Level":25,"ID":207},{"Level":29,"ID":422},{"Level":33,"ID":242},{"Level":37,"ID":184},{"Level":41,"ID":435},{"Level":45,"ID":528}],"EvolutionConditions":[{"Condition":"15","ConditionType":"Level","Evolution":404,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Shinx +Number|403 +ExperienceType|2 +BaseExperience|53 +Type1|Electric +Type2| +CatchRate|235 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|403 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|79 +Ability2|22 +HiddenAbility|62 +EggMoves|24,598,313,424,270,336,423,98,351,324,129,36,422,400 +Machines|174,46,92,192,237,173,63,182,240,203,218,231,216,189,104,207,214,129,197,156,213,210,36,6,99,102,117,164,351,263,290,416,445,363,496,555,590,70,148 +BaseHP|45 +BaseAttack|65 +BaseDefense|34 +BaseSpAttack|40 +BaseSpDefense|34 +BaseSpeed|45 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The extension and contraction of its muscles generates electricity. Its fur glows when it's in trouble.\Flash Pokémon\9.5\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|5,43 +Move|9,268 +Move|11,608 +Move|13,209 +Move|17,44 +Move|21,46 +Move|25,207 +Move|29,422 +Move|33,242 +Move|37,184 +Move|41,435 +Move|45,528 +TradeValue|15 +EvolutionCondition|404,Level,15,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/404.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/404.dat index 4ae9564f0..3e5db751b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/404.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/404.dat @@ -1 +1,52 @@ -{"Name":"Luxio","Number":404,"ExperienceType":"MediumSlow","BaseExperience":127,"Type1":"Electric","Type2":"Blank","CatchRate":120,"BaseFriendship":100,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":403,"Devolution":403,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[79,22],"HiddenAbility":62,"EggMoves":[24,598,313,424,270,336,423,98,351,324,129,36,422,400],"Machines":[174,46,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,197,156,213,210,34,36,6,99,102,117,130,164,351,263,290,416,445,363,496,555,590,70,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":85,"Def":49,"SpAtk":60,"SpDef":49,"Speed":60},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"By gathering their tails together they collectively generate powerful electricity from their claws.","Species":"Spark Pokémon","Height":0.9,"Weight":30.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":30,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":43},{"Level":5,"ID":43},{"Level":9,"ID":268},{"Level":13,"ID":209},{"Level":18,"ID":44},{"Level":23,"ID":46},{"Level":28,"ID":207},{"Level":33,"ID":422},{"Level":38,"ID":242},{"Level":43,"ID":184},{"Level":48,"ID":435},{"Level":53,"ID":528}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":405,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Luxio +Number|404 +ExperienceType|2 +BaseExperience|127 +Type1|Electric +Type2| +CatchRate|120 +BaseFriendship|100 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|403 +IsGenderLess|0 +CanBreed|1 +Devolution|403 +IsMale|50 +Ability1|79 +Ability2|22 +HiddenAbility|62 +EggMoves|24,598,313,424,270,336,423,98,351,324,129,36,422,400 +Machines|174,46,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,197,156,213,210,34,36,6,99,102,117,130,164,351,263,290,416,445,363,496,555,590,70,148 +BaseHP|60 +BaseAttack|85 +BaseDefense|49 +BaseSpAttack|60 +BaseSpDefense|49 +BaseSpeed|60 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|By gathering their tails together they collectively generate powerful electricity from their claws.\Spark Pokémon\30.5\0.9\0,148,0 +Scale|0.96 +Move|1,33 +Move|1,43 +Move|5,43 +Move|9,268 +Move|13,209 +Move|18,44 +Move|23,46 +Move|28,207 +Move|33,422 +Move|38,242 +Move|43,184 +Move|48,435 +Move|53,528 +TradeValue|30 +EvolutionCondition|405,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/405.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/405.dat index 3412f00e7..949b4bb05 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/405.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/405.dat @@ -1 +1,54 @@ -{"Name":"Luxray","Number":405,"ExperienceType":"MediumSlow","BaseExperience":235,"Type1":"Electric","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":403,"Devolution":404,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[79,22],"HiddenAbility":62,"EggMoves":[24,598,313,424,270,336,423,98,351,324,129,36,422,400],"Machines":[174,46,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,197,156,213,168,210,25,34,36,38,6,68,99,85,102,117,130,86,164,113,351,263,290,451,416,445,363,496,521,528,555,590,70,148,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":120,"Def":79,"SpAtk":95,"SpDef":79,"Speed":70},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"LUXRAY's ability to see through objects comes in handy when it's scouting for danger.","Species":"Gleam Eyes Pokémon","Height":1.4,"Weight":42,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":43},{"Level":4,"ID":268},{"Level":5,"ID":43},{"Level":9,"ID":268},{"Level":13,"ID":209},{"Level":18,"ID":44},{"Level":23,"ID":46},{"Level":28,"ID":207},{"Level":35,"ID":422},{"Level":42,"ID":242},{"Level":49,"ID":184},{"Level":56,"ID":435},{"Level":63,"ID":528},{"Level":67,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Luxray +Number|405 +ExperienceType|2 +BaseExperience|235 +Type1|Electric +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|403 +IsGenderLess|0 +CanBreed|1 +Devolution|404 +IsMale|50 +Ability1|79 +Ability2|22 +HiddenAbility|62 +EggMoves|24,598,313,424,270,336,423,98,351,324,129,36,422,400 +Machines|174,46,92,192,237,173,63,182,240,203,218,231,87,216,189,104,207,214,129,197,156,213,168,210,25,34,36,38,6,68,99,85,102,117,130,86,164,113,351,263,290,451,416,445,363,496,521,528,555,590,70,148,560 +BaseHP|80 +BaseAttack|120 +BaseDefense|79 +BaseSpAttack|95 +BaseSpDefense|79 +BaseSpeed|70 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|LUXRAY's ability to see through objects comes in handy when it's scouting for danger.\Gleam Eyes Pokémon\42\1.4\0,148,0 +Scale|1.16 +Move|1,604 +Move|1,33 +Move|1,43 +Move|1,268 +Move|5,43 +Move|9,268 +Move|13,209 +Move|18,44 +Move|23,46 +Move|28,207 +Move|35,422 +Move|42,242 +Move|49,184 +Move|56,435 +Move|63,528 +Move|67,604 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/406.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/406.dat index 6cc561a75..394ab6cd4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/406.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/406.dat @@ -1 +1,47 @@ -{"Name":"Budew","Number":406,"ExperienceType":"MediumSlow","BaseExperience":56,"Type1":"Grass","Type2":"Poison","CatchRate":255,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":406,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[30,38],"HiddenAbility":102,"EggMoves":[331,178,326,202,320,437,170,363,42,75,402,79,191,235],"Machines":[174,92,244,237,241,230,173,63,182,202,203,218,76,216,247,189,104,207,214,188,129,197,156,213,171,14,99,72,102,117,164,331,263,290,412,416,445,363,447,474,496,267,605,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":30,"Def":35,"SpAtk":50,"SpDef":70,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it feels the sun's warm touch it opens its bud to release pollen. It lives alongside clear pools.","Species":"Bud Pokémon","Height":0.2,"Weight":1.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":71},{"Level":4,"ID":74},{"Level":7,"ID":346},{"Level":10,"ID":78},{"Level":13,"ID":72},{"Level":16,"ID":1}],"EvolutionConditions":[{"Condition":"1;2","ConditionType":"DayTime","Evolution":315,"Trigger":"LevelUp"},{"Condition":"220","ConditionType":"Friendship","Evolution":315,"Trigger":"LevelUp"}],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Budew +Number|406 +ExperienceType|2 +BaseExperience|56 +Type1|Grass +Type2|Poison +CatchRate|255 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|406 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|30 +Ability2|38 +HiddenAbility|102 +EggMoves|331,178,326,202,320,437,170,363,42,75,402,79,191,235 +Machines|174,92,244,237,241,230,173,63,182,202,203,218,76,216,247,189,104,207,214,188,129,197,156,213,171,14,99,72,102,117,164,331,263,290,412,416,445,363,447,474,496,267,605,590,148 +BaseHP|40 +BaseAttack|30 +BaseDefense|35 +BaseSpAttack|50 +BaseSpDefense|70 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it feels the sun's warm touch it opens its bud to release pollen. It lives alongside clear pools.\Bud Pokémon\1.2\0.2\0,148,0 +Scale|0.7 +Move|1,71 +Move|4,74 +Move|7,346 +Move|10,78 +Move|13,72 +Move|16,388 +TradeValue|20 +Item|5,81 +EvolutionCondition|315,daytime,1;2,level +EvolutionCondition|315,friendship,220,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/407.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/407.dat index 792b349bd..b67f9187b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/407.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/407.dat @@ -1 +1,46 @@ -{"Name":"Roserade","Number":407,"ExperienceType":"MediumSlow","BaseExperience":227,"Type1":"Grass","Type2":"Poison","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":406,"Devolution":315,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[30,38],"HiddenAbility":101,"EggMoves":[331,178,326,202,320,437,170,363,42,75,402,79,191,235],"Machines":[174,92,244,237,241,230,173,63,182,202,203,218,76,216,247,189,104,207,214,188,129,197,156,213,210,171,14,34,36,99,72,102,117,164,331,263,290,412,416,445,363,398,447,474,496,267,605,590,15,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":70,"Def":65,"SpAtk":125,"SpDef":105,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its sweet aroma attracts prey. Then it spews poison. The more toxic it is, the sweeter its aroma.","Species":"Bouquet Pokémon","Height":0.9,"Weight":14.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":45,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":1},{"Level":3,"ID":311},{"Level":4,"ID":40},{"Level":5,"ID":72},{"Level":6,"ID":345},{"Level":7,"ID":230}],"EvolutionConditions":[],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Roserade +Number|407 +ExperienceType|2 +BaseExperience|227 +Type1|Grass +Type2|Poison +CatchRate|75 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|406 +IsGenderLess|0 +CanBreed|1 +Devolution|315 +IsMale|50 +Ability1|30 +Ability2|38 +HiddenAbility|101 +EggMoves|331,178,326,202,320,437,170,363,42,75,402,79,191,235 +Machines|174,92,244,237,241,230,173,63,182,202,203,218,76,216,247,189,104,207,214,188,129,197,156,213,210,171,14,34,36,99,72,102,117,164,331,263,290,412,416,445,363,398,447,474,496,267,605,590,15,148 +BaseHP|60 +BaseAttack|70 +BaseDefense|65 +BaseSpAttack|125 +BaseSpDefense|105 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its sweet aroma attracts prey. Then it spews poison. The more toxic it is, the sweeter its aroma.\Bouquet Pokémon\14.5\0.9\0,148,0 +Scale|0.96 +Move|1,599 +Move|1,580 +Move|1,311 +Move|1,40 +Move|1,72 +Move|1,345 +Move|1,230 +TradeValue|45 +Item|5,81 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/408.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/408.dat index 57cadb012..1dc3c210d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/408.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/408.dat @@ -1 +1,51 @@ -{"Name":"Cranidos","Number":408,"ExperienceType":"MediumFast","BaseExperience":70,"Type1":"Rock","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":408,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[104],"HiddenAbility":125,"EggMoves":[242,174,38,359,442,231,43,21,23,37,18],"Machines":[29,174,46,92,249,237,241,173,59,63,182,203,218,231,89,216,91,189,104,207,214,9,197,156,213,168,7,34,36,38,58,99,85,102,117,120,130,157,164,351,53,317,263,290,374,406,371,416,397,444,446,445,363,479,496,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":67,"Atk":125,"Def":40,"SpAtk":30,"SpDef":30,"Speed":58},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"CRANIDOS toughen up their already rock-hard heads by headbutting one another.","Species":"Head Butt Pokémon","Height":0.9,"Weight":31.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":50,"Moves":[{"Level":1,"ID":29},{"Level":2,"ID":43},{"Level":6,"ID":116},{"Level":10,"ID":228},{"Level":15,"ID":36},{"Level":19,"ID":184},{"Level":24,"ID":372},{"Level":28,"ID":498},{"Level":33,"ID":246},{"Level":37,"ID":428},{"Level":42,"ID":103},{"Level":46,"ID":457}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":409,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Cranidos +Number|408 +ExperienceType|1 +BaseExperience|70 +Type1|Rock +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|408 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|104 +Ability2|Nothing +HiddenAbility|125 +EggMoves|242,174,38,359,442,231,43,21,23,37,18 +Machines|29,174,46,92,249,237,241,173,59,63,182,203,218,231,89,216,91,189,104,207,214,9,197,156,213,168,7,34,36,38,58,99,85,102,117,120,130,157,164,351,53,317,263,290,374,406,371,416,397,444,446,445,363,479,496,612,590,70,431 +BaseHP|67 +BaseAttack|125 +BaseDefense|40 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|58 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|CRANIDOS toughen up their already rock-hard heads by headbutting one another.\Head Butt Pokémon\31.5\0.9\0,148,0 +Scale|0.96 +Move|1,29 +Move|1,43 +Move|6,116 +Move|10,228 +Move|15,36 +Move|19,184 +Move|24,372 +Move|28,498 +Move|33,246 +Move|37,428 +Move|42,103 +Move|46,457 +TradeValue|50 +EvolutionCondition|409,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/409.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/409.dat index 08a671efa..7cefa1dd9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/409.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/409.dat @@ -1 +1,49 @@ -{"Name":"Rampardos","Number":409,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Rock","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":408,"Devolution":408,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[104],"HiddenAbility":125,"EggMoves":[],"Machines":[29,174,46,92,249,237,241,173,59,63,182,203,218,231,89,216,91,189,104,207,214,126,9,197,156,213,168,7,5,25,34,36,38,58,99,82,85,90,102,117,120,130,157,164,264,351,53,317,263,290,411,374,406,371,416,397,444,419,446,445,363,479,496,525,612,590,15,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":97,"Atk":165,"Def":60,"SpAtk":65,"SpDef":50,"Speed":58},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its skull withstands impacts of any magnitude. As a result, its brain never gets the chance to grow.","Species":"Head Butt Pokémon","Height":1.6,"Weight":102.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":50,"Moves":[{"Level":1,"ID":29},{"Level":2,"ID":34},{"Level":6,"ID":116},{"Level":10,"ID":228},{"Level":15,"ID":36},{"Level":19,"ID":184},{"Level":24,"ID":372},{"Level":28,"ID":498},{"Level":30,"ID":283},{"Level":36,"ID":246},{"Level":43,"ID":428},{"Level":51,"ID":103},{"Level":58,"ID":457}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Rampardos +Number|409 +ExperienceType|1 +BaseExperience|173 +Type1|Rock +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|408 +Devolution|408 +IsGenderLess|0 +IsMale|87.5 +Ability1|104 +Ability2|Nothing +HiddenAbility|125 +Machines|29,174,46,92,249,237,241,173,59,63,182,203,218,231,89,216,91,189,104,207,214,126,9,197,156,213,168,7,5,25,34,36,38,58,99,82,85,90,102,117,120,130,157,164,264,351,53,317,263,290,411,374,406,371,416,397,444,419,446,445,363,479,496,525,612,590,15,57,70,250,431,560 +BaseHP|97 +BaseAttack|165 +BaseDefense|60 +BaseSpAttack|65 +BaseSpDefense|50 +BaseSpeed|58 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its skull withstands impacts of any magnitude. As a result, its brain never gets the chance to grow.\Head Butt Pokémon\102.5\1.6\0,148,0 +Scale|1.24 +Move|1,29 +Move|1,34 +Move|6,116 +Move|10,228 +Move|15,36 +Move|19,184 +Move|24,372 +Move|28,498 +Move|30,283 +Move|36,246 +Move|43,428 +Move|51,103 +Move|58,457 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/41.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/41.dat index 6ffcfd41b..ee446ea8a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/41.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/41.dat @@ -1 +1,50 @@ -{"Name":"Zubat","Number":41,"ExperienceType":"MediumFast","BaseExperience":49,"Type1":"Poison","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":41,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[39],"HiddenAbility":151,"EggMoves":[413,174,432,185,202,16,95,417,228,98,599,18,428,211],"Machines":[174,92,237,241,173,63,182,202,203,218,216,247,104,207,214,188,129,197,156,213,168,211,13,18,36,99,72,102,117,164,269,332,259,263,290,289,355,371,416,432,445,363,365,369,474,496,512,590,19],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":45,"Def":35,"SpAtk":30,"SpDef":40,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"While flying, it constantly emits ultrasonic waves from its mouth to check its surroundings.","Species":"Bat Pokémon","Height":0.8,"Weight":7.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":5,"Moves":[{"Level":1,"ID":141},{"Level":4,"ID":48},{"Level":8,"ID":310},{"Level":12,"ID":44},{"Level":15,"ID":17},{"Level":19,"ID":109},{"Level":23,"ID":129},{"Level":26,"ID":314},{"Level":30,"ID":512},{"Level":34,"ID":212},{"Level":37,"ID":305},{"Level":41,"ID":114},{"Level":45,"ID":403}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Level","Evolution":42,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Zubat +Number|41 +ExperienceType|1 +BaseExperience|49 +Type1|Poison +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|41 +IsGenderLess|0 +IsMale|50 +Ability1|39 +Ability2|Nothing +HiddenAbility|151 +EggMoves|413,174,432,185,202,16,95,417,228,98,599,18,428,211 +Machines|174,92,237,241,173,63,182,202,203,218,216,247,104,207,214,188,129,197,156,213,168,211,13,18,36,99,72,102,117,164,269,332,259,263,290,289,355,371,416,432,445,363,365,369,474,496,512,590,19 +BaseHP|40 +BaseAttack|45 +BaseDefense|35 +BaseSpAttack|30 +BaseSpDefense|40 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|1 +CanSwim|0 +Pokedex|While flying, it constantly emits ultrasonic waves from its mouth to check its surroundings.\Bat Pokémon\7.5\0.8\0,148,0 +Scale|0.92 +Move|1,141 +Move|4,48 +Move|8,310 +Move|12,44 +Move|15,17 +Move|19,109 +Move|23,129 +Move|26,314 +Move|30,512 +Move|34,212 +Move|37,305 +Move|41,114 +Move|45,403 +EvolutionCondition|42,Level,22,Level +TradeValue|5 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/410.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/410.dat index f4c0595eb..9380525c4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/410.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/410.dat @@ -1 +1,51 @@ -{"Name":"Shieldon","Number":410,"ExperienceType":"MediumFast","BaseExperience":70,"Type1":"Rock","Type2":"Steel","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":410,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[5],"HiddenAbility":43,"EggMoves":[34,68,174,38,90,116,470,29,350,184,103,446,469],"Machines":[174,46,92,249,237,241,173,59,63,182,203,218,231,89,216,91,189,104,207,214,197,156,213,34,36,38,58,99,85,102,117,120,130,157,164,269,351,53,317,259,263,290,416,397,444,446,445,363,430,479,496,590,70],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":42,"Def":118,"SpAtk":42,"SpDef":88,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It was generated from a fossil dug out of a layer of clay that was older than anyone knows. It has a sturdy face.","Species":"Shield Pokémon","Height":0.5,"Weight":57,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":182},{"Level":6,"ID":269},{"Level":10,"ID":319},{"Level":15,"ID":36},{"Level":19,"ID":334},{"Level":24,"ID":207},{"Level":28,"ID":246},{"Level":33,"ID":203},{"Level":37,"ID":368},{"Level":42,"ID":442},{"Level":46,"ID":484}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":411,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Shieldon +Number|410 +ExperienceType|1 +BaseExperience|70 +Type1|Rock +Type2|Steel +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|410 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|5 +Ability2|Nothing +HiddenAbility|43 +EggMoves|34,68,174,38,90,116,470,29,350,184,103,446,469 +Machines|174,46,92,249,237,241,173,59,63,182,203,218,231,89,216,91,189,104,207,214,197,156,213,34,36,38,58,99,85,102,117,120,130,157,164,269,351,53,317,259,263,290,416,397,444,446,445,363,430,479,496,590,70 +BaseHP|30 +BaseAttack|42 +BaseDefense|118 +BaseSpAttack|42 +BaseSpDefense|88 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It was generated from a fossil dug out of a layer of clay that was older than anyone knows. It has a sturdy face.\Shield Pokémon\57\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,182 +Move|6,269 +Move|10,319 +Move|15,36 +Move|19,334 +Move|24,207 +Move|28,246 +Move|33,203 +Move|37,368 +Move|42,442 +Move|46,484 +TradeValue|50 +EvolutionCondition|411,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/411.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/411.dat index ea490faae..c70fbedd8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/411.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/411.dat @@ -1 +1,53 @@ -{"Name":"Bastiodon","Number":411,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Rock","Type2":"Steel","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":410,"Devolution":410,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[5],"HiddenAbility":43,"EggMoves":[34,68,174,38,90,116,470,29,350,184,103,446,469],"Machines":[174,46,92,249,237,241,173,59,63,182,203,218,231,89,216,91,189,104,207,214,197,156,213,25,34,36,38,58,99,85,90,102,117,120,130,157,164,269,351,53,317,259,263,290,416,397,444,419,446,445,363,430,479,496,590,70,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":52,"Def":168,"SpAtk":47,"SpDef":138,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When attacked Their rock-hard faces serve to protect them from the attacks.","Species":"Shield Pokémon","Height":1.3,"Weight":149.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":182},{"Level":3,"ID":269},{"Level":4,"ID":319},{"Level":6,"ID":269},{"Level":10,"ID":319},{"Level":15,"ID":36},{"Level":19,"ID":334},{"Level":24,"ID":207},{"Level":28,"ID":246},{"Level":30,"ID":335},{"Level":36,"ID":203},{"Level":43,"ID":368},{"Level":51,"ID":442},{"Level":58,"ID":484}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Bastiodon +Number|411 +ExperienceType|1 +BaseExperience|173 +Type1|Rock +Type2|Steel +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|410 +IsGenderLess|0 +CanBreed|1 +Devolution|410 +IsMale|87.5 +Ability1|5 +Ability2|Nothing +HiddenAbility|43 +EggMoves|34,68,174,38,90,116,470,29,350,184,103,446,469 +Machines|174,46,92,249,237,241,173,59,63,182,203,218,231,89,216,91,189,104,207,214,197,156,213,25,34,36,38,58,99,85,90,102,117,120,130,157,164,269,351,53,317,259,263,290,416,397,444,419,446,445,363,430,479,496,590,70,560 +BaseHP|60 +BaseAttack|52 +BaseDefense|168 +BaseSpAttack|47 +BaseSpDefense|138 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When attacked Their rock-hard faces serve to protect them from the attacks.\Shield Pokémon\149.5\1.3\0,148,0 +Scale|1.12 +Move|1,33 +Move|1,182 +Move|1,269 +Move|1,319 +Move|6,269 +Move|10,319 +Move|15,36 +Move|19,334 +Move|24,207 +Move|28,246 +Move|30,335 +Move|36,203 +Move|43,368 +Move|51,442 +Move|58,484 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/412.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/412.dat index b50814df3..11c13734b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/412.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/412.dat @@ -1 +1,45 @@ -{"Name":"Burmy","Number":412,"ExperienceType":"MediumFast","BaseExperience":45,"Type1":"Bug","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":412,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61],"HiddenAbility":142,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":29,"Def":45,"SpAtk":29,"SpDef":45,"Speed":36},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It covers itself with a cloak to shelter from the cold. When it’s hot, its cloak is thinner.","Species":"Bagworm Pokémon","Height":0.2,"Weight":3.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":182},{"Level":10,"ID":33},{"Level":15,"ID":450},{"Level":20,"ID":237}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":413,"Trigger":"LevelUp"},{"Condition":"1","ConditionType":"Gender","Evolution":413,"Trigger":"LevelUp"},{"Condition":"20","ConditionType":"Level","Evolution":414,"Trigger":"LevelUp"},{"Condition":"0","ConditionType":"Gender","Evolution":414,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Burmy +Number|412 +ExperienceType|1 +BaseExperience|45 +Type1|Bug +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|412 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|61 +Ability2|Nothing +HiddenAbility|142 +Machines| +BaseHP|40 +BaseAttack|29 +BaseDefense|45 +BaseSpAttack|29 +BaseSpDefense|45 +BaseSpeed|36 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It covers itself with a cloak to shelter from the cold. When it’s hot, its cloak is thinner.\Bagworm Pokémon\3.4\0.2\0,148,0 +Scale|0.7 +Move|1,182 +Move|10,33 +Move|15,450 +Move|20,237 +TradeValue|20 +EvolutionCondition|413,level,20,level +EvolutionCondition|413,gender,1,level +EvolutionCondition|414,level,20,level +EvolutionCondition|414,gender,0,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413.dat index 5b9449ea2..fffa77e23 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413.dat @@ -1 +1,50 @@ -{"Name":"Wormadam","Number":413,"ExperienceType":"MediumFast","BaseExperience":148,"Type1":"Bug","Type2":"Grass","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":412,"Devolution":412,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[107],"HiddenAbility":142,"EggMoves":[],"Machines":[174,92,244,237,241,230,173,63,182,240,202,203,218,76,89,216,91,94,247,189,104,207,214,201,138,197,156,213,168,99,72,102,117,120,164,331,219,317,263,290,285,412,416,360,446,445,363,447,430,474,496,522,523,611,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":59,"Def":85,"SpAtk":79,"SpDef":105,"Speed":36},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is said that a WORMADAM that evolves on a cold day will have a thicker cloak.","Species":"Bagworm Pokémon","Height":0.5,"Weight":6.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":45,"Moves":[{"Level":1,"ID":33},{"Level":10,"ID":182},{"Level":15,"ID":450},{"Level":20,"ID":237},{"Level":23,"ID":93},{"Level":26,"ID":75},{"Level":29,"ID":74},{"Level":32,"ID":60},{"Level":35,"ID":445},{"Level":38,"ID":175},{"Level":41,"ID":213},{"Level":44,"ID":94},{"Level":47,"ID":437}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Wormadam +Number|413 +ExperienceType|1 +BaseExperience|148 +Type1|Bug +Type2|Grass +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|412 +IsGenderLess|0 +CanBreed|1 +Devolution|412 +IsMale|0 +Ability1|107 +Ability2|Nothing +HiddenAbility|142 +Machines|174,92,244,237,241,230,173,63,182,240,202,203,218,76,89,216,91,94,247,189,104,207,214,201,138,197,156,213,168,99,72,102,117,120,164,331,219,317,263,290,285,412,416,360,446,445,363,447,430,474,496,522,523,611,590,148 +BaseHP|60 +BaseAttack|59 +BaseDefense|85 +BaseSpAttack|79 +BaseSpDefense|105 +BaseSpeed|36 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is said that a WORMADAM that evolves on a cold day will have a thicker cloak.\Bagworm Pokémon\6.5\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|10,182 +Move|15,450 +Move|20,237 +Move|23,93 +Move|26,75 +Move|29,74 +Move|32,60 +Move|35,445 +Move|38,175 +Move|41,213 +Move|44,94 +Move|47,437 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413_sandy.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413_sandy.dat index a8ff1cc01..27e4c941d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413_sandy.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413_sandy.dat @@ -1 +1,50 @@ -{"Name":"Wormadam","Number":413,"ExperienceType":"MediumFast","BaseExperience":148,"Type1":"Bug","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":412,"Devolution":412,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[107],"HiddenAbility":142,"EggMoves":[],"Machines":[174,92,244,237,241,230,173,63,182,240,202,203,218,76,89,216,91,94,247,189,104,207,214,201,138,197,156,213,168,99,72,102,117,120,164,331,219,317,263,290,285,412,416,360,446,445,363,447,430,474,496,522,523,611,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":79,"Def":105,"SpAtk":59,"SpDef":85,"Speed":36},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is said that a WORMADAM that evolves on a cold day will have a thicker cloak.","Species":"Bagworm Pokémon","Height":0.5,"Weight":6.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":45,"Moves":[{"Level":1,"ID":33},{"Level":10,"ID":182},{"Level":15,"ID":450},{"Level":20,"ID":237},{"Level":23,"ID":93},{"Level":26,"ID":350},{"Level":29,"ID":106},{"Level":32,"ID":60},{"Level":35,"ID":445},{"Level":38,"ID":175},{"Level":41,"ID":213},{"Level":44,"ID":94},{"Level":47,"ID":90}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Wormadam +Number|413 +ExperienceType|1 +BaseExperience|148 +Type1|Bug +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|412 +IsGenderLess|0 +CanBreed|1 +Devolution|412 +IsMale|0 +Ability1|107 +Ability2|Nothing +HiddenAbility|142 +Machines|174,92,244,237,241,230,173,63,182,240,202,203,218,76,89,216,91,94,247,189,104,207,214,201,138,197,156,213,168,99,72,102,117,120,164,331,219,317,263,290,285,412,416,360,446,445,363,447,430,474,496,522,523,611,590,148 +BaseHP|60 +BaseAttack|79 +BaseDefense|105 +BaseSpAttack|59 +BaseSpDefense|85 +BaseSpeed|36 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is said that a WORMADAM that evolves on a cold day will have a thicker cloak.\Bagworm Pokémon\6.5\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|10,182 +Move|15,450 +Move|20,237 +Move|23,93 +Move|26,350 +Move|29,106 +Move|32,60 +Move|35,445 +Move|38,175 +Move|41,213 +Move|44,94 +Move|47,90 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413_trash.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413_trash.dat index 839280c23..19a28ea83 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413_trash.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/413_trash.dat @@ -1 +1,50 @@ -{"Name":"Wormadam","Number":413,"ExperienceType":"MediumFast","BaseExperience":148,"Type1":"Bug","Type2":"Steel","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":412,"Devolution":412,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[107],"HiddenAbility":142,"EggMoves":[],"Machines":[174,92,244,237,241,230,173,63,182,240,202,203,218,76,89,216,91,94,247,189,104,207,214,201,138,197,156,213,168,99,72,102,117,120,164,331,219,317,263,290,285,412,416,360,446,445,363,447,430,474,496,522,523,611,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":69,"Def":95,"SpAtk":69,"SpDef":95,"Speed":36},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is said that a WORMADAM that evolves on a cold day will have a thicker cloak.","Species":"Bagworm Pokémon","Height":0.5,"Weight":6.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":45,"Moves":[{"Level":1,"ID":33},{"Level":10,"ID":182},{"Level":15,"ID":450},{"Level":20,"ID":237},{"Level":23,"ID":93},{"Level":26,"ID":429},{"Level":29,"ID":319},{"Level":32,"ID":60},{"Level":35,"ID":445},{"Level":38,"ID":175},{"Level":41,"ID":213},{"Level":44,"ID":94},{"Level":47,"ID":442}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Wormadam +Number|413 +ExperienceType|1 +BaseExperience|148 +Type1|Bug +Type2|Steel +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|412 +IsGenderLess|0 +CanBreed|1 +Devolution|412 +IsMale|0 +Ability1|107 +Ability2|Nothing +HiddenAbility|142 +Machines|174,92,244,237,241,230,173,63,182,240,202,203,218,76,89,216,91,94,247,189,104,207,214,201,138,197,156,213,168,99,72,102,117,120,164,331,219,317,263,290,285,412,416,360,446,445,363,447,430,474,496,522,523,611,590,148 +BaseHP|60 +BaseAttack|69 +BaseDefense|95 +BaseSpAttack|69 +BaseSpDefense|95 +BaseSpeed|36 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is said that a WORMADAM that evolves on a cold day will have a thicker cloak.\Bagworm Pokémon\6.5\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|10,182 +Move|15,450 +Move|20,237 +Move|23,93 +Move|26,429 +Move|29,319 +Move|32,60 +Move|35,445 +Move|38,175 +Move|41,213 +Move|44,94 +Move|47,442 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/414.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/414.dat index 26a89fae8..1f1b3f6c0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/414.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/414.dat @@ -1 +1,51 @@ -{"Name":"Mothim","Number":414,"ExperienceType":"MediumFast","BaseExperience":148,"Type1":"Bug","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":412,"Devolution":412,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[68],"HiddenAbility":110,"EggMoves":[],"Machines":[174,92,244,237,241,230,173,63,182,240,202,203,218,76,216,94,247,189,104,207,214,129,138,197,156,213,168,13,18,36,99,72,102,117,120,164,219,332,263,290,285,355,412,318,416,432,445,363,369,474,496,512,522,611,590,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":94,"Def":50,"SpAtk":94,"SpDef":50,"Speed":66},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It flutters around at night and steals honey from the COMBEE hive.","Species":"Moth Pokémon","Height":0.9,"Weight":23.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":10,"ID":182},{"Level":15,"ID":450},{"Level":20,"ID":237},{"Level":23,"ID":93},{"Level":26,"ID":16},{"Level":29,"ID":77},{"Level":32,"ID":60},{"Level":35,"ID":1},{"Level":38,"ID":318},{"Level":41,"ID":403},{"Level":44,"ID":94},{"Level":47,"ID":405},{"Level":50,"ID":483}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Mothim +Number|414 +ExperienceType|1 +BaseExperience|148 +Type1|Bug +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|412 +IsGenderLess|0 +CanBreed|1 +Devolution|412 +IsMale|100 +Ability1|68 +Ability2|Nothing +HiddenAbility|110 +Machines|174,92,244,237,241,230,173,63,182,240,202,203,218,76,216,94,247,189,104,207,214,129,138,197,156,213,168,13,18,36,99,72,102,117,120,164,219,332,263,290,285,355,412,318,416,432,445,363,369,474,496,512,522,611,590,148 +BaseHP|70 +BaseAttack|94 +BaseDefense|50 +BaseSpAttack|94 +BaseSpDefense|50 +BaseSpeed|66 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It flutters around at night and steals honey from the COMBEE hive.\Moth Pokémon\23.3\0.9\0,148,0 +Scale|0.96 +Move|1,33 +Move|10,182 +Move|15,450 +Move|20,237 +Move|23,93 +Move|26,16 +Move|29,77 +Move|32,60 +Move|35,293 +Move|38,318 +Move|41,403 +Move|44,94 +Move|47,405 +Move|50,483 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/415.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/415.dat index e188723f0..307e4f11a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/415.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/415.dat @@ -1 +1,43 @@ -{"Name":"Combee","Number":415,"ExperienceType":"MediumSlow","BaseExperience":49,"Type1":"Bug","Type2":"Flying","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":415,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[118],"HiddenAbility":55,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":30,"Def":42,"SpAtk":30,"SpDef":42,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"At night about a thousand, packed closely together in a lump.","Species":"Tiny Bee Pokémon","Height":0.3,"Weight":5.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":30,"Moves":[{"Level":1,"ID":230},{"Level":2,"ID":16},{"Level":13,"ID":450},{"Level":29,"ID":405}],"EvolutionConditions":[{"Condition":"21","ConditionType":"Level","Evolution":416,"Trigger":"LevelUp"},{"Condition":"1","ConditionType":"Gender","Evolution":416,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Combee +Number|415 +ExperienceType|2 +BaseExperience|49 +Type1|Bug +Type2|Flying +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|415 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|118 +Ability2|Nothing +HiddenAbility|55 +Machines| +BaseHP|30 +BaseAttack|30 +BaseDefense|42 +BaseSpAttack|30 +BaseSpDefense|42 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|At night about a thousand, packed closely together in a lump.\Tiny Bee Pokémon\5.5\0.3\0,148,0 +Scale|0.7 +Move|1,230 +Move|1,16 +Move|13,450 +Move|29,405 +TradeValue|30 +EvolutionCondition|416,level,21,level +EvolutionCondition|416,gender,1,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/416.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/416.dat index 1bca5827c..3edff2b60 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/416.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/416.dat @@ -1 +1,58 @@ -{"Name":"Vespiquen","Number":416,"ExperienceType":"MediumSlow","BaseExperience":166,"Type1":"Bug","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":415,"Devolution":415,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[46],"HiddenAbility":127,"EggMoves":[],"Machines":[174,92,237,241,230,173,63,182,240,203,218,216,189,104,207,214,188,129,197,156,213,168,210,13,18,36,38,99,72,102,117,164,332,263,290,355,374,318,416,432,445,404,363,369,468,474,496,511,512,522,611,590,15,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":80,"Def":102,"SpAtk":80,"SpDef":102,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It raises grubs in the holes in its body. It secretes pheromones to control COMBEE.","Species":"Beehive Pokémon","Height":1.2,"Weight":38.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":40,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":194},{"Level":3,"ID":230},{"Level":4,"ID":16},{"Level":5,"ID":40},{"Level":6,"ID":109},{"Level":7,"ID":210},{"Level":9,"ID":228},{"Level":13,"ID":154},{"Level":17,"ID":455},{"Level":21,"ID":163},{"Level":25,"ID":408},{"Level":29,"ID":456},{"Level":33,"ID":92},{"Level":37,"ID":403},{"Level":41,"ID":445},{"Level":45,"ID":454},{"Level":49,"ID":207},{"Level":53,"ID":194},{"Level":57,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Vespiquen +Number|416 +ExperienceType|2 +BaseExperience|166 +Type1|Bug +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|415 +IsGenderLess|0 +CanBreed|1 +Devolution|415 +IsMale|0 +Ability1|46 +Ability2|Nothing +HiddenAbility|127 +Machines|174,92,237,241,230,173,63,182,240,203,218,216,189,104,207,214,188,129,197,156,213,168,210,13,18,36,38,99,72,102,117,164,332,263,290,355,374,318,416,432,445,404,363,369,468,474,496,511,512,522,611,590,15,148 +BaseHP|70 +BaseAttack|80 +BaseDefense|102 +BaseSpAttack|80 +BaseSpDefense|102 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It raises grubs in the holes in its body. It secretes pheromones to control COMBEE.\Beehive Pokémon\38.5\1.2\0,148,0 +Scale|1.08 +Move|1,565 +Move|1,194 +Move|1,230 +Move|1,16 +Move|1,40 +Move|1,109 +Move|5,210 +Move|9,228 +Move|13,154 +Move|17,455 +Move|21,163 +Move|25,408 +Move|29,456 +Move|33,92 +Move|37,403 +Move|41,445 +Move|45,454 +Move|49,207 +Move|53,194 +Move|57,565 +TradeValue|40 +Item|5,81 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/417.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/417.dat index 9af9550a7..d78601c3a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/417.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/417.dat @@ -1 +1,53 @@ -{"Name":"Pachirisu","Number":417,"ExperienceType":"MediumFast","BaseExperience":142,"Type1":"Electric","Type2":"Blank","CatchRate":200,"BaseFriendship":100,"EggGroup1":"Field","EggGroup2":"Fairy","BaseEggSteps":2805,"EggPokemon":417,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,53],"HiddenAbility":10,"EggMoves":[516,44,268,343,111,313,175,260,266,569,205,231,39],"Machines":[174,205,92,192,237,173,63,182,240,203,218,231,87,216,91,189,104,207,214,129,111,9,197,156,213,36,6,68,99,85,102,117,86,164,113,351,263,290,374,451,416,445,363,447,369,496,497,521,590,15,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":45,"Def":70,"SpAtk":45,"SpDef":90,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It’s one of the kinds of Pokémon with electric cheek pouches. It shoots charges from its tail.","Species":"EleSquirrel Pokémon","Height":0.4,"Weight":3.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":117},{"Level":5,"ID":98},{"Level":9,"ID":204},{"Level":13,"ID":209},{"Level":17,"ID":203},{"Level":19,"ID":609},{"Level":21,"ID":129},{"Level":25,"ID":486},{"Level":29,"ID":186},{"Level":33,"ID":86},{"Level":37,"ID":162},{"Level":41,"ID":435},{"Level":45,"ID":387},{"Level":49,"ID":158}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Pachirisu +Number|417 +ExperienceType|1 +BaseExperience|142 +Type1|Electric +Type2| +CatchRate|200 +BaseFriendship|100 +EggGroup1|Field +EggGroup2|Fairy +BaseEggSteps|2805 +EggPokemon|417 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|50 +Ability2|53 +HiddenAbility|10 +EggMoves|516,44,268,343,111,313,175,260,266,569,205,231,39 +Machines|174,205,92,192,237,173,63,182,240,203,218,231,87,216,91,189,104,207,214,129,111,9,197,156,213,36,6,68,99,85,102,117,86,164,113,351,263,290,374,451,416,445,363,447,369,496,497,521,590,15,148 +BaseHP|60 +BaseAttack|45 +BaseDefense|70 +BaseSpAttack|45 +BaseSpDefense|90 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It’s one of the kinds of Pokémon with electric cheek pouches. It shoots charges from its tail.\EleSquirrel Pokémon\3.9\0.4\0,148,0 +Scale|0.7 +Move|1,45 +Move|1,117 +Move|5,98 +Move|9,204 +Move|13,209 +Move|17,203 +Move|19,609 +Move|21,129 +Move|25,486 +Move|29,186 +Move|33,86 +Move|37,162 +Move|41,435 +Move|45,387 +Move|49,158 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/418.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/418.dat index 43914a59f..eb684b885 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/418.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/418.dat @@ -1 +1,54 @@ -{"Name":"Buizel","Number":418,"ExperienceType":"MediumFast","BaseExperience":66,"Type1":"Water","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":418,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33],"HiddenAbility":41,"EggMoves":[392,401,226,3,210,154,29,382,189,316,163,487,415,541],"Machines":[174,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,129,197,156,213,5,34,36,61,55,58,6,66,68,69,99,102,117,164,264,352,258,339,280,317,263,290,362,416,445,363,496,497,503,612,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":65,"Def":35,"SpAtk":60,"SpDef":30,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It inflates its flotation sac keeping its face above water in order to watch for prey movement.","Species":"Sea Weasel Pokémon","Height":0.7,"Weight":29.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":20,"Moves":[{"Level":1,"ID":49},{"Level":4,"ID":45},{"Level":7,"ID":346},{"Level":11,"ID":98},{"Level":15,"ID":55},{"Level":18,"ID":228},{"Level":21,"ID":129},{"Level":24,"ID":453},{"Level":27,"ID":458},{"Level":31,"ID":250},{"Level":35,"ID":13},{"Level":38,"ID":401},{"Level":41,"ID":97},{"Level":45,"ID":56}],"EvolutionConditions":[{"Condition":"26","ConditionType":"Level","Evolution":419,"Trigger":"LevelUp"}],"Items":[{"Id":2037,"Chance":5}]} \ No newline at end of file +Name|Buizel +Number|418 +ExperienceType|1 +BaseExperience|66 +Type1|Water +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|418 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|33 +Ability2|Nothing +HiddenAbility|41 +EggMoves|392,401,226,3,210,154,29,382,189,316,163,487,415,541 +Machines|174,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,129,197,156,213,5,34,36,61,55,58,6,66,68,69,99,102,117,164,264,352,258,339,280,317,263,290,362,416,445,363,496,497,503,612,590,57,70,250,127,291 +BaseHP|55 +BaseAttack|65 +BaseDefense|35 +BaseSpAttack|60 +BaseSpDefense|30 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It inflates its flotation sac keeping its face above water in order to watch for prey movement.\Sea Weasel Pokémon\29.5\0.7\0,148,0 +Scale|0.88 +Move|1,49 +Move|4,45 +Move|7,346 +Move|11,98 +Move|15,55 +Move|18,228 +Move|21,129 +Move|24,453 +Move|27,458 +Move|31,250 +Move|35,13 +Move|38,401 +Move|41,97 +Move|45,56 +TradeValue|20 +Item|5,2037 +EvolutionCondition|419,Level,26,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/419.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/419.dat index f1774d168..92c8049dc 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/419.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/419.dat @@ -1 +1,58 @@ -{"Name":"Floatzel","Number":419,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Water","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":418,"Devolution":418,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33],"HiddenAbility":41,"EggMoves":[392,401,226,3,210,154,29,382,189,316,163,487,415,541],"Machines":[223,174,46,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,129,197,156,213,5,25,34,36,38,61,55,58,6,66,68,69,99,102,117,130,164,264,352,258,339,269,280,317,259,263,290,411,362,371,416,445,363,496,497,503,612,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":105,"Def":55,"SpAtk":85,"SpDef":50,"Speed":115},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"With its flotation sac inflated can carry people on its back. It deflates the sac before it dives.","Species":"Sea Weasel Pokémon","Height":1.1,"Weight":33.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":40,"Moves":[{"Level":1,"ID":423},{"Level":2,"ID":242},{"Level":3,"ID":49},{"Level":4,"ID":45},{"Level":5,"ID":346},{"Level":6,"ID":98},{"Level":7,"ID":45},{"Level":8,"ID":346},{"Level":11,"ID":98},{"Level":15,"ID":55},{"Level":18,"ID":228},{"Level":21,"ID":129},{"Level":24,"ID":453},{"Level":29,"ID":458},{"Level":35,"ID":250},{"Level":41,"ID":13},{"Level":46,"ID":401},{"Level":51,"ID":97},{"Level":57,"ID":56}],"EvolutionConditions":[],"Items":[{"Id":2037,"Chance":5}]} \ No newline at end of file +Name|Floatzel +Number|419 +ExperienceType|1 +BaseExperience|173 +Type1|Water +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|418 +IsGenderLess|0 +CanBreed|1 +Devolution|418 +IsMale|50 +Ability1|33 +Ability2|Nothing +HiddenAbility|41 +EggMoves|392,401,226,3,210,154,29,382,189,316,163,487,415,541 +Machines|223,174,46,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,129,197,156,213,5,25,34,36,38,61,55,58,6,66,68,69,99,102,117,130,164,264,352,258,339,269,280,317,259,263,290,411,362,371,416,445,363,496,497,503,612,590,57,70,250,127,291 +BaseHP|85 +BaseAttack|105 +BaseDefense|55 +BaseSpAttack|85 +BaseSpDefense|50 +BaseSpeed|115 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|With its flotation sac inflated can carry people on its back. It deflates the sac before it dives.\Sea Weasel Pokémon\33.5\1.1\0,148,0 +Scale|1.04 +Move|1,423 +Move|1,242 +Move|1,49 +Move|1,45 +Move|1,346 +Move|1,98 +Move|4,45 +Move|7,346 +Move|11,98 +Move|15,55 +Move|18,228 +Move|21,129 +Move|24,453 +Move|29,458 +Move|35,250 +Move|41,13 +Move|46,401 +Move|51,97 +Move|57,56 +TradeValue|40 +Item|5,2037 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/42.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/42.dat index 8a5a2b94b..60c4d867d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/42.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/42.dat @@ -1 +1,53 @@ -{"Name":"Golbat","Number":42,"ExperienceType":"MediumFast","BaseExperience":159,"Type1":"Poison","Type2":"Flying","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":41,"Devolution":41,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[39],"HiddenAbility":151,"EggMoves":[413,174,432,185,202,16,95,417,228,98,599,18,428,211],"Machines":[174,92,237,241,173,63,182,202,203,218,216,247,104,207,214,188,129,197,156,213,168,211,13,18,36,99,72,102,117,164,269,332,259,263,290,289,355,371,416,432,445,363,365,369,474,496,512,590,19],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":80,"Def":70,"SpAtk":65,"SpDef":75,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"However hard its victim's hide may be, it punctures with sharp fangs and gorges itself with blood.","Species":"Bat Pokémon","Height":1.6,"Weight":55,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":20,"Moves":[{"Level":1,"ID":48},{"Level":2,"ID":103},{"Level":3,"ID":141},{"Level":4,"ID":310},{"Level":5,"ID":48},{"Level":8,"ID":310},{"Level":12,"ID":44},{"Level":15,"ID":17},{"Level":19,"ID":109},{"Level":24,"ID":129},{"Level":28,"ID":314},{"Level":33,"ID":512},{"Level":38,"ID":212},{"Level":42,"ID":305},{"Level":47,"ID":114},{"Level":52,"ID":403}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":169,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Golbat +Number|42 +ExperienceType|1 +BaseExperience|159 +Type1|Poison +Type2|Flying +CatchRate|90 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|41 +IsGenderLess|0 +IsMale|50 +Ability1|39 +Ability2|Nothing +HiddenAbility|151 +EggMoves|413,174,432,185,202,16,95,417,228,98,599,18,428,211 +Machines|174,92,237,241,173,63,182,202,203,218,216,247,104,207,214,188,129,197,156,213,168,211,13,18,36,99,72,102,117,164,269,332,259,263,290,289,355,371,416,432,445,363,365,369,474,496,512,590,19 +BaseHP|75 +BaseAttack|80 +BaseDefense|70 +BaseSpAttack|65 +BaseSpDefense|75 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|1 +CanSwim|0 +Pokedex|However hard its victim's hide may be, it punctures with sharp fangs and gorges itself with blood.\Bat Pokémon\55\1.6\0,148,0 +Scale|1.24 +Move|1,48 +Move|1,103 +Move|1,141 +Move|1,310 +Move|4,48 +Move|8,310 +Move|12,44 +Move|15,17 +Move|19,109 +Move|24,129 +Move|28,314 +Move|33,512 +Move|38,212 +Move|42,305 +Move|47,114 +Move|52,403 +EvolutionCondition|169,friendship,220,Level +TradeValue|20 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/420.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/420.dat index 512e38687..3f267f3e9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/420.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/420.dat @@ -1 +1,52 @@ -{"Name":"Cherubi","Number":420,"ExperienceType":"MediumFast","BaseExperience":55,"Type1":"Grass","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":420,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34],"HiddenAbility":-1,"EggMoves":[312,111,579,320,505,361,363,267,75,205,402,230,311,321],"Machines":[174,205,92,237,241,230,173,63,182,240,202,203,218,76,216,104,207,214,111,197,156,213,14,99,72,102,117,120,164,331,219,263,290,412,416,445,363,447,496,267,605,590,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":35,"Def":45,"SpAtk":62,"SpDef":53,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It evolves by sucking the energy out of the small ball where it had been storing nutrients.","Species":"Cherry Pokémon","Height":0.4,"Weight":3.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":234},{"Level":2,"ID":33},{"Level":7,"ID":74},{"Level":10,"ID":73},{"Level":13,"ID":1},{"Level":19,"ID":345},{"Level":22,"ID":241},{"Level":28,"ID":1},{"Level":31,"ID":36},{"Level":37,"ID":76},{"Level":40,"ID":1},{"Level":47,"ID":572}],"EvolutionConditions":[{"Condition":"25","ConditionType":"Level","Evolution":421,"Trigger":"LevelUp"}],"Items":[{"Id":109,"Chance":5}]} \ No newline at end of file +Name|Cherubi +Number|420 +ExperienceType|1 +BaseExperience|55 +Type1|Grass +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|420 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|34 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|312,111,579,320,505,361,363,267,75,205,402,230,311,321 +Machines|174,205,92,237,241,230,173,63,182,240,202,203,218,76,216,104,207,214,111,197,156,213,14,99,72,102,117,120,164,331,219,263,290,412,416,445,363,447,496,267,605,590,148 +BaseHP|45 +BaseAttack|35 +BaseDefense|45 +BaseSpAttack|62 +BaseSpDefense|53 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It evolves by sucking the energy out of the small ball where it had been storing nutrients.\Cherry Pokémon\3.3\0.4\0,148,0 +Scale|0.7 +Move|1,234 +Move|1,33 +Move|7,74 +Move|10,73 +Move|13,270 +Move|19,345 +Move|22,241 +Move|28,388 +Move|31,36 +Move|37,76 +Move|40,381 +Move|47,572 +TradeValue|20 +Item|5,109 +EvolutionCondition|421,level,25,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/421.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/421.dat index 1ab791b0c..656511de6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/421.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/421.dat @@ -1 +1,53 @@ -{"Name":"Cherrim","Number":421,"ExperienceType":"MediumFast","BaseExperience":158,"Type1":"Grass","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":420,"Devolution":420,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[122],"HiddenAbility":-1,"EggMoves":[312,111,579,320,505,361,363,267,75,205,402,230,311,321],"Machines":[174,205,92,237,241,230,173,63,182,240,202,203,218,76,216,104,207,214,111,197,156,213,14,36,99,72,102,117,120,164,331,219,263,290,412,416,445,363,447,496,267,605,590,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":60,"Def":70,"SpAtk":87,"SpDef":78,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"During times of strong sunlight its bud blooms, its petals open fully, and it becomes very active.","Species":"Blossom Pokémon","Height":0.5,"Weight":9.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":40,"Moves":[{"Level":1,"ID":234},{"Level":2,"ID":33},{"Level":3,"ID":74},{"Level":7,"ID":74},{"Level":10,"ID":73},{"Level":13,"ID":1},{"Level":19,"ID":345},{"Level":22,"ID":241},{"Level":25,"ID":80},{"Level":30,"ID":1},{"Level":35,"ID":36},{"Level":43,"ID":76},{"Level":48,"ID":1},{"Level":50,"ID":572}],"EvolutionConditions":[],"Items":[{"Id":109,"Chance":5}]} \ No newline at end of file +Name|Cherrim +Number|421 +ExperienceType|1 +BaseExperience|158 +Type1|Grass +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|420 +IsGenderLess|0 +CanBreed|1 +Devolution|420 +IsMale|50 +Ability1|122 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|312,111,579,320,505,361,363,267,75,205,402,230,311,321 +Machines|174,205,92,237,241,230,173,63,182,240,202,203,218,76,216,104,207,214,111,197,156,213,14,36,99,72,102,117,120,164,331,219,263,290,412,416,445,363,447,496,267,605,590,148 +BaseHP|70 +BaseAttack|60 +BaseDefense|70 +BaseSpAttack|87 +BaseSpDefense|78 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|During times of strong sunlight its bud blooms, its petals open fully, and it becomes very active.\Blossom Pokémon\9.3\0.5\0,148,0 +Scale|0.7 +Move|1,234 +Move|1,33 +Move|1,74 +Move|7,74 +Move|10,73 +Move|13,270 +Move|19,345 +Move|22,241 +Move|25,80 +Move|30,388 +Move|35,36 +Move|43,76 +Move|48,381 +Move|50,572 +TradeValue|40 +Item|5,109 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/422.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/422.dat index 0b5afe351..7719981bc 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/422.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/422.dat @@ -1 +1,49 @@ -{"Name":"Shellos","Number":422,"ExperienceType":"MediumFast","BaseExperience":65,"Type1":"Water","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Amorphous","BaseEggSteps":5355,"EggPokemon":422,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[60,114],"HiddenAbility":159,"EggMoves":[151,133,362,499,68,174,90,262,243,54,124,255,254,256,376,281],"Machines":[174,92,237,173,59,63,196,182,240,203,218,89,216,104,207,214,197,156,213,61,55,58,99,102,117,164,352,263,290,362,416,445,363,496,503,611,590,57,250,291],"TutorMoves":[],"BaseStats":{"HP":76,"Atk":48,"Def":48,"SpAtk":57,"SpDef":62,"Speed":34},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its shape and coloration vary depending on its habitat.","Species":"Sea Slug Pokémon","Height":0.3,"Weight":6.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":189},{"Level":2,"ID":300},{"Level":4,"ID":106},{"Level":7,"ID":352},{"Level":11,"ID":426},{"Level":16,"ID":237},{"Level":22,"ID":240},{"Level":29,"ID":34},{"Level":37,"ID":330},{"Level":46,"ID":105}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":423,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Shellos +Number|422 +ExperienceType|1 +BaseExperience|65 +Type1|Water +Type2|Amorphous +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Amorphous +BaseEggSteps|5355 +EggPokemon|422 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|60 +Ability2|114 +HiddenAbility|159 +EggMoves|151,133,362,499,68,174,90,262,243,54,124,255,254,256,376,281 +Machines|174,92,237,173,59,63,196,182,240,203,218,89,216,104,207,214,197,156,213,61,55,58,99,102,117,164,352,263,290,362,416,445,363,496,503,611,590,57,250,291 +BaseHP|76 +BaseAttack|48 +BaseDefense|48 +BaseSpAttack|57 +BaseSpDefense|62 +BaseSpeed|34 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its shape and coloration vary depending on its habitat.\Sea Slug Pokémon\6.3\0.3\0,148,0 +Scale|0.7 +Move|1,189 +Move|2,300 +Move|4,106 +Move|7,352 +Move|11,426 +Move|16,237 +Move|22,240 +Move|29,34 +Move|37,330 +Move|46,105 +TradeValue|20 +EvolutionCondition|423,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/423.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/423.dat index ee2722789..d865329a6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/423.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/423.dat @@ -1 +1,51 @@ -{"Name":"Gastrodon","Number":423,"ExperienceType":"MediumFast","BaseExperience":166,"Type1":"Water","Type2":"Ground","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Amorphous","BaseEggSteps":5355,"EggPokemon":422,"Devolution":422,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[60,114],"HiddenAbility":159,"EggMoves":[151,133,362,499,68,174,90,262,243,54,124,255,254,256,376,281],"Machines":[174,92,249,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,197,156,213,34,36,38,61,55,58,99,102,117,164,352,263,290,362,416,445,363,482,496,503,611,590,57,70,148,250,127,560,291],"TutorMoves":[],"BaseStats":{"HP":111,"Atk":83,"Def":68,"SpAtk":92,"SpDef":82,"Speed":39},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When its natural enemy attacks it oozes purple fluid and escapes.","Species":"Sea Slug Pokémon","Height":0.9,"Weight":29.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":40,"Moves":[{"Level":1,"ID":189},{"Level":2,"ID":300},{"Level":3,"ID":106},{"Level":4,"ID":352},{"Level":5,"ID":300},{"Level":6,"ID":106},{"Level":7,"ID":352},{"Level":11,"ID":426},{"Level":16,"ID":237},{"Level":22,"ID":240},{"Level":29,"ID":34},{"Level":41,"ID":330},{"Level":54,"ID":105}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Gastrodon +Number|423 +ExperienceType|1 +BaseExperience|166 +Type1|Water +Type2|Ground +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Amorphous +BaseEggSteps|5355 +EggPokemon|422 +IsGenderLess|0 +CanBreed|1 +Devolution|422 +IsMale|50 +Ability1|60 +Ability2|114 +HiddenAbility|159 +EggMoves|151,133,362,499,68,174,90,262,243,54,124,255,254,256,376,281 +Machines|174,92,249,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,197,156,213,34,36,38,61,55,58,99,102,117,164,352,263,290,362,416,445,363,482,496,503,611,590,57,70,148,250,127,560,291 +BaseHP|111 +BaseAttack|83 +BaseDefense|68 +BaseSpAttack|92 +BaseSpDefense|82 +BaseSpeed|39 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When its natural enemy attacks it oozes purple fluid and escapes.\Sea Slug Pokémon\29.9\0.9\0,148,0 +Scale|0.96 +Move|1,189 +Move|1,300 +Move|1,106 +Move|1,352 +Move|2,300 +Move|4,106 +Move|7,352 +Move|11,426 +Move|16,237 +Move|22,240 +Move|29,34 +Move|41,330 +Move|54,105 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/424.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/424.dat index 97c8531a8..d28704aef 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/424.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/424.dat @@ -1 +1,52 @@ -{"Name":"Ambipom","Number":424,"ExperienceType":"Fast","BaseExperience":169,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":100,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":190,"Devolution":190,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[101,53],"HiddenAbility":92,"EggMoves":[97,340,68,343,3,252,228,501,279,103,21,180,415,251],"Machines":[15,63,70,76,85,86,87,91,92,104,138,156,164,168,182,207,213,216,218,237,240,241,247,249,263,269,280,332,369,371,374,416,421,447,468,490,496,512,514,526],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":100,"Def":66,"SpAtk":60,"SpDef":66,"Speed":115},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They live on large trees. They are said to communicate by connecting their tails to those of others.","Species":"Long Tail Pokémon","Height":1.2,"Weight":20.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":45,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":39},{"Level":3,"ID":310},{"Level":8,"ID":310},{"Level":11,"ID":226},{"Level":15,"ID":321},{"Level":18,"ID":154},{"Level":22,"ID":129},{"Level":25,"ID":103},{"Level":29,"ID":97},{"Level":32,"ID":458},{"Level":36,"ID":374},{"Level":39,"ID":417},{"Level":43,"ID":387}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Ambipom +Number|424 +ExperienceType|0 +BaseExperience|169 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|100 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|190 +IsGenderLess|0 +CanBreed|1 +Devolution|190 +IsMale|50 +Ability1|101 +Ability2|53 +HiddenAbility|92 +EggMoves|97,340,68,343,3,252,228,501,279,103,21,180,415,251 +Machines|15,63,70,76,85,86,87,91,92,104,138,156,164,168,182,207,213,216,218,237,240,241,247,249,263,269,280,332,369,371,374,416,421,447,468,490,496,512,514,526 +BaseHP|75 +BaseAttack|100 +BaseDefense|66 +BaseSpAttack|60 +BaseSpDefense|66 +BaseSpeed|115 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|They live on large trees. They are said to communicate by connecting their tails to those of others.\Long Tail Pokémon\20.3\1.2\0,148,0 +Scale|1.08 +Move|1,10 +Move|1,39 +Move|1,310 +Move|8,310 +Move|11,226 +Move|15,321 +Move|18,154 +Move|22,129 +Move|25,103 +Move|29,97 +Move|32,458 +Move|36,374 +Move|39,417 +Move|43,387 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/425.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/425.dat index bcf310fb8..d4e1fa639 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/425.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/425.dat @@ -1 +1,53 @@ -{"Name":"Drifloon","Number":425,"ExperienceType":"MediumFast","BaseExperience":70,"Type1":"Ghost","Type2":"Flying","CatchRate":125,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":425,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[106,84],"HiddenAbility":138,"EggMoves":[34,499,432,194,50,114,95,262,366,311],"Machines":[174,205,92,244,237,241,173,63,196,182,240,203,218,87,216,94,247,189,104,207,214,129,111,138,197,156,213,168,171,13,18,36,99,102,117,120,86,153,164,347,351,263,290,285,451,261,318,373,371,278,416,432,360,445,363,477,496,512,590,148],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":50,"Def":34,"SpAtk":60,"SpDef":44,"Speed":70},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is whispered that any child who mistakes DRIFLOON for a balloon and holds on to it could wind up missing.","Species":"Balloon Pokémon","Height":0.4,"Weight":1.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":30,"Moves":[{"Level":1,"ID":132},{"Level":2,"ID":107},{"Level":4,"ID":310},{"Level":8,"ID":16},{"Level":13,"ID":116},{"Level":16,"ID":371},{"Level":20,"ID":466},{"Level":25,"ID":254},{"Level":27,"ID":506},{"Level":32,"ID":256},{"Level":33,"ID":255},{"Level":36,"ID":247},{"Level":40,"ID":133},{"Level":44,"ID":226},{"Level":50,"ID":153}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Drifloon +Number|425 +ExperienceType|1 +BaseExperience|70 +Type1|Ghost +Type2|Flying +CatchRate|125 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|425 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|106 +Ability2|84 +HiddenAbility|138 +EggMoves|34,499,432,194,50,114,95,262,366,311 +Machines|174,205,92,244,237,241,173,63,196,182,240,203,218,87,216,94,247,189,104,207,214,129,111,138,197,156,213,168,171,13,18,36,99,102,117,120,86,153,164,347,351,263,290,285,451,261,318,373,371,278,416,432,360,445,363,477,496,512,590,148 +BaseHP|90 +BaseAttack|50 +BaseDefense|34 +BaseSpAttack|60 +BaseSpDefense|44 +BaseSpeed|70 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is whispered that any child who mistakes DRIFLOON for a balloon and holds on to it could wind up missing.\Balloon Pokémon\1.2\0.4\0,148,0 +Scale|0.7 +Move|1,132 +Move|1,107 +Move|4,310 +Move|8,16 +Move|13,116 +Move|16,371 +Move|20,466 +Move|25,254 +Move|27,506 +Move|32,256 +Move|32,255 +Move|36,247 +Move|40,133 +Move|44,226 +Move|50,153 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/426.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/426.dat index d0d231cf1..2e7e4a2f6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/426.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/426.dat @@ -1 +1,57 @@ -{"Name":"Drifblim","Number":426,"ExperienceType":"MediumFast","BaseExperience":174,"Type1":"Ghost","Type2":"Flying","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":425,"Devolution":425,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[106,84],"HiddenAbility":138,"EggMoves":[34,499,432,194,50,114,95,262,366,311],"Machines":[174,205,92,244,237,241,173,63,196,182,240,203,218,87,216,94,247,189,104,207,214,129,111,138,197,156,213,168,171,13,18,36,99,102,117,120,86,153,164,347,351,263,290,285,451,261,318,373,371,278,416,432,360,445,363,477,496,512,590,19,148],"TutorMoves":[],"BaseStats":{"HP":150,"Atk":80,"Def":44,"SpAtk":90,"SpDef":54,"Speed":80},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can generate and release gas within its body. That’s how it can control the altitude of its drift.","Species":"Blimp Pokémon","Height":1.2,"Weight":15,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":132},{"Level":3,"ID":107},{"Level":4,"ID":310},{"Level":5,"ID":16},{"Level":6,"ID":310},{"Level":8,"ID":16},{"Level":13,"ID":116},{"Level":16,"ID":371},{"Level":20,"ID":466},{"Level":25,"ID":254},{"Level":27,"ID":506},{"Level":34,"ID":256},{"Level":35,"ID":255},{"Level":40,"ID":247},{"Level":46,"ID":133},{"Level":52,"ID":226},{"Level":60,"ID":153},{"Level":65,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Drifblim +Number|426 +ExperienceType|1 +BaseExperience|174 +Type1|Ghost +Type2|Flying +CatchRate|60 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|425 +IsGenderLess|0 +CanBreed|1 +Devolution|425 +IsMale|50 +Ability1|106 +Ability2|84 +HiddenAbility|138 +EggMoves|34,499,432,194,50,114,95,262,366,311 +Machines|174,205,92,244,237,241,173,63,196,182,240,203,218,87,216,94,247,189,104,207,214,129,111,138,197,156,213,168,171,13,18,36,99,102,117,120,86,153,164,347,351,263,290,285,451,261,318,373,371,278,416,432,360,445,363,477,496,512,590,19,148 +BaseHP|150 +BaseAttack|80 +BaseDefense|44 +BaseSpAttack|90 +BaseSpDefense|54 +BaseSpeed|80 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can generate and release gas within its body. That’s how it can control the altitude of its drift.\Blimp Pokémon\15\1.2\0,148,0 +Scale|1.08 +Move|1,566 +Move|1,132 +Move|1,107 +Move|1,310 +Move|1,16 +Move|4,310 +Move|8,16 +Move|13,116 +Move|16,371 +Move|20,466 +Move|25,254 +Move|27,506 +Move|34,256 +Move|34,255 +Move|40,247 +Move|46,133 +Move|52,226 +Move|60,153 +Move|65,566 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/427.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/427.dat index 7280e11be..f97ec799b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/427.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/427.dat @@ -1 +1,58 @@ -{"Name":"Buneary","Number":427,"ExperienceType":"MediumFast","BaseExperience":70,"Type1":"Normal","Type2":"Blank","CatchRate":190,"BaseFriendship":0,"EggGroup1":"Field","EggGroup2":"HumanLike","BaseEggSteps":5355,"EggPokemon":427,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[28,56],"HiddenAbility":7,"EggMoves":[509,322,383,458,227,252,313,7,175,264,8,67,300,327,186,415,298,9,213],"Machines":[174,92,249,237,241,173,63,182,203,218,231,216,189,104,8,207,214,129,9,197,156,213,171,5,25,36,61,55,58,6,68,99,102,117,118,164,264,352,351,263,290,409,416,445,363,490,496,526,612,590],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":66,"Def":44,"SpAtk":44,"SpDef":56,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"You can tell how it feels by the way it rolls its ears. When it's scared, both ears are rolled up.","Species":"Rabbit Pokémon","Height":0.4,"Weight":5.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":111},{"Level":2,"ID":150},{"Level":3,"ID":1},{"Level":4,"ID":193},{"Level":6,"ID":203},{"Level":10,"ID":608},{"Level":13,"ID":218},{"Level":16,"ID":98},{"Level":23,"ID":26},{"Level":26,"ID":226},{"Level":33,"ID":97},{"Level":36,"ID":146},{"Level":43,"ID":1},{"Level":46,"ID":204},{"Level":50,"ID":1},{"Level":56,"ID":340},{"Level":63,"ID":361}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":428,"Trigger":"LevelUp"}],"Items":[{"Id":2040,"Chance":5},{"Id":2002,"Chance":50}]} \ No newline at end of file +Name|Buneary +Number|427 +ExperienceType|1 +BaseExperience|70 +Type1|Normal +Type2| +CatchRate|190 +BaseFriendship|0 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|5355 +EggPokemon|427 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|28 +Ability2|56 +HiddenAbility|7 +EggMoves|509,322,383,458,227,252,313,7,175,264,8,67,300,327,186,415,298,9,213 +Machines|174,92,249,237,241,173,63,182,203,218,231,216,189,104,8,207,214,129,9,197,156,213,171,5,25,36,61,55,58,6,68,99,102,117,118,164,264,352,351,263,290,409,416,445,363,490,496,526,612,590 +BaseHP|55 +BaseAttack|66 +BaseDefense|44 +BaseSpAttack|44 +BaseSpDefense|56 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|You can tell how it feels by the way it rolls its ears. When it's scared, both ears are rolled up.\Rabbit Pokémon\5.5\0.4\0,148,0 +Scale|0.7 +Move|1,111 +Move|1,150 +Move|1,1 +Move|1,193 +Move|6,203 +Move|10,608 +Move|13,218 +Move|16,98 +Move|23,26 +Move|26,226 +Move|33,97 +Move|36,146 +Move|43,495 +Move|46,204 +Move|50,494 +Move|56,340 +Move|63,361 +TradeValue|25 +Item|5,2040 +Item|50,2002 +EvolutionCondition|428,friendship,220,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/428.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/428.dat index 5b095b51f..3b6c1e50e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/428.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/428.dat @@ -1 +1,61 @@ -{"Name":"Lopunny","Number":428,"ExperienceType":"MediumFast","BaseExperience":168,"Type1":"Normal","Type2":"Blank","CatchRate":60,"BaseFriendship":140,"EggGroup1":"Field","EggGroup2":"HumanLike","BaseEggSteps":5355,"EggPokemon":427,"Devolution":427,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[28,56],"HiddenAbility":7,"EggMoves":[509,322,383,458,227,252,313,7,175,264,8,67,300,327,186,415,298,9,213],"Machines":[223,174,92,192,249,237,241,173,59,63,182,203,218,231,216,189,104,8,207,214,129,9,197,156,213,7,210,171,5,25,34,36,61,55,58,6,66,68,69,99,102,117,118,130,164,264,352,351,263,290,411,409,416,445,363,490,496,526,612,590,70],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":76,"Def":84,"SpAtk":54,"SpDef":96,"Speed":105},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It sheds its fur twice a year. Its winter fur is soft and fluffy.","Species":"Rabbit Pokémon","Height":1.2,"Weight":33.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":45,"Moves":[{"Level":1,"ID":361},{"Level":2,"ID":340},{"Level":3,"ID":243},{"Level":4,"ID":277},{"Level":5,"ID":1},{"Level":6,"ID":150},{"Level":7,"ID":1},{"Level":8,"ID":111},{"Level":9,"ID":193},{"Level":10,"ID":203},{"Level":13,"ID":216},{"Level":16,"ID":98},{"Level":23,"ID":26},{"Level":26,"ID":226},{"Level":33,"ID":97},{"Level":36,"ID":146},{"Level":43,"ID":1},{"Level":46,"ID":204},{"Level":53,"ID":1},{"Level":56,"ID":340},{"Level":63,"ID":361}],"EvolutionConditions":[],"Items":[{"Id":2040,"Chance":5},{"Id":2002,"Chance":50}]} \ No newline at end of file +Name|Lopunny +Number|428 +ExperienceType|1 +BaseExperience|168 +Type1|Normal +Type2| +CatchRate|60 +BaseFriendship|140 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|5355 +EggPokemon|427 +IsGenderLess|0 +CanBreed|1 +Devolution|427 +IsMale|50 +Ability1|28 +Ability2|56 +HiddenAbility|7 +EggMoves|509,322,383,458,227,252,313,7,175,264,8,67,300,327,186,415,298,9,213 +Machines|223,174,92,192,249,237,241,173,59,63,182,203,218,231,216,189,104,8,207,214,129,9,197,156,213,7,210,171,5,25,34,36,61,55,58,6,66,68,69,99,102,117,118,130,164,264,352,351,263,290,411,409,416,445,363,490,496,526,612,590,70 +BaseHP|65 +BaseAttack|76 +BaseDefense|84 +BaseSpAttack|54 +BaseSpDefense|96 +BaseSpeed|105 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It sheds its fur twice a year. Its winter fur is soft and fluffy.\Rabbit Pokémon\33.3\1.2\0,148,0 +Scale|1.08 +Move|1,361 +Move|1,340 +Move|1,243 +Move|1,277 +Move|1,563 +Move|1,150 +Move|1,1 +Move|1,111 +Move|1,193 +Move|6,203 +Move|13,216 +Move|16,98 +Move|23,26 +Move|26,226 +Move|33,97 +Move|36,146 +Move|43,495 +Move|46,204 +Move|53,494 +Move|56,340 +Move|63,361 +TradeValue|45 +Item|5,2040 +Item|50,2002 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/428_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/428_mega.dat new file mode 100644 index 000000000..806da0803 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/428_mega.dat @@ -0,0 +1,61 @@ +Name|Mega Lopunny +Number|428 +ExperienceType|1 +BaseExperience|168 +Type1|Normal +Type2|Fighting +CatchRate|60 +BaseFriendship|140 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|5355 +EggPokemon|427 +IsGenderLess|0 +CanBreed|1 +Devolution|427 +IsMale|50 +Ability1|113 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|509,322,383,458,227,252,313,7,175,264,8,67,300,327,186,415,298,9,213 +Machines|223,174,92,192,249,237,241,173,59,63,182,203,218,231,216,189,104,8,207,214,129,9,197,156,213,7,210,171,5,25,34,36,61,55,58,6,66,68,69,99,102,117,118,130,164,264,352,351,263,290,411,409,416,445,363,490,496,526,612,590,70 +BaseHP|65 +BaseAttack|136 +BaseDefense|94 +BaseSpAttack|54 +BaseSpDefense|96 +BaseSpeed|135 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It sheds its fur twice a year. Its winter fur is soft and fluffy.\Rabbit Pokémon\28.3\1.3\0,148,0 +Scale|1.08 +Move|1,361 +Move|1,340 +Move|1,243 +Move|1,277 +Move|1,563 +Move|1,150 +Move|1,1 +Move|1,111 +Move|1,193 +Move|6,203 +Move|13,216 +Move|16,98 +Move|23,26 +Move|26,226 +Move|33,97 +Move|36,146 +Move|43,495 +Move|46,204 +Move|53,494 +Move|56,340 +Move|63,361 +TradeValue|45 +Item|5,2040 +Item|50,2002 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/429.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/429.dat index be3d87a10..c24953888 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/429.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/429.dat @@ -1 +1,46 @@ -{"Name":"Mismagius","Number":429,"ExperienceType":"Fast","BaseExperience":173,"Type1":"Ghost","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":200,"Devolution":200,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[174,194,286,262,417,466,103,425,285,180,389,472,244],"Machines":[174,92,244,237,241,173,63,196,182,240,203,218,87,216,94,247,104,207,214,129,138,197,156,213,168,171,99,85,102,117,86,149,164,347,269,351,332,259,263,290,285,289,412,451,261,373,371,416,445,399,363,433,477,496,497,605,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":60,"Def":60,"SpAtk":105,"SpDef":105,"Speed":105},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its cries sound like incantations to torment the foe. It appears where you least expect it.","Species":"Magical Pokémon","Height":0.9,"Weight":4.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":55,"Moves":[{"Level":1,"ID":408},{"Level":2,"ID":1},{"Level":3,"ID":1},{"Level":4,"ID":345},{"Level":5,"ID":45},{"Level":6,"ID":149},{"Level":7,"ID":180},{"Level":8,"ID":310}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Mismagius +Number|429 +ExperienceType|0 +BaseExperience|173 +Type1|Ghost +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|200 +IsGenderLess|0 +CanBreed|1 +Devolution|200 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|174,194,286,262,417,466,103,425,285,180,389,472,244 +Machines|174,92,244,237,241,173,63,196,182,240,203,218,87,216,94,247,104,207,214,129,138,197,156,213,168,171,99,85,102,117,86,149,164,347,269,351,332,259,263,290,285,289,412,451,261,373,371,416,445,399,363,433,477,496,497,605,590,148 +BaseHP|60 +BaseAttack|60 +BaseDefense|60 +BaseSpAttack|105 +BaseSpDefense|105 +BaseSpeed|105 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its cries sound like incantations to torment the foe. It appears where you least expect it.\Magical Pokémon\4.4\0.9\0,148,0 +Scale|0.96 +Move|1,408 +Move|1,566 +Move|1,381 +Move|1,345 +Move|1,45 +Move|1,149 +Move|1,180 +Move|1,310 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/43.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/43.dat index f95e362d1..3afedfea0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/43.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/43.dat @@ -1 +1,50 @@ -{"Name":"Oddish","Number":43,"ExperienceType":"MediumSlow","BaseExperience":64,"Type1":"Grass","Type2":"Poison","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":43,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34],"HiddenAbility":50,"EggMoves":[495,204,175,275,75,290,235,298,321,14],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,14,36,99,72,102,117,164,331,263,290,412,416,445,363,447,474,496,611,267,605,590,15,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":50,"Def":55,"SpAtk":75,"SpDef":65,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Awakened by moonlight, it roams actively at night. In the day it stays quietly underground.","Species":"Weed Pokémon","Height":0.5,"Weight":5.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":71},{"Level":5,"ID":230},{"Level":9,"ID":51},{"Level":13,"ID":77},{"Level":15,"ID":78},{"Level":17,"ID":79},{"Level":21,"ID":72},{"Level":25,"ID":1},{"Level":29,"ID":363},{"Level":33,"ID":236},{"Level":37,"ID":202},{"Level":41,"ID":80},{"Level":45,"ID":1}],"EvolutionConditions":[{"Condition":"21","ConditionType":"Level","Evolution":44,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Oddish +Number|43 +ExperienceType|2 +BaseExperience|64 +Type1|Grass +Type2|Poison +CatchRate|255 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|43 +IsGenderLess|0 +IsMale|50 +Ability1|34 +Ability2|Nothing +HiddenAbility|50 +EggMoves|495,204,175,275,75,290,235,298,321,14 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,14,36,99,72,102,117,164,331,263,290,412,416,445,363,447,474,496,611,267,605,590,15,148 +BaseHP|45 +BaseAttack|50 +BaseDefense|55 +BaseSpAttack|75 +BaseSpDefense|65 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Awakened by moonlight, it roams actively at night. In the day it stays quietly underground.\Weed Pokémon\5.4\0.5\0,148,0 +Scale|0.7 +Move|1,71 +Move|5,230 +Move|9,51 +Move|13,77 +Move|15,78 +Move|17,79 +Move|21,72 +Move|25,381 +Move|29,363 +Move|33,236 +Move|37,202 +Move|41,80 +Move|45,580 +EvolutionCondition|44,Level,21,Level +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/430.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/430.dat index f87acc757..5f7cdfb28 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/430.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/430.dat @@ -1 +1,50 @@ -{"Name":"Honchkrow","Number":430,"ExperienceType":"MediumSlow","BaseExperience":177,"Type1":"Dark","Type2":"Flying","CatchRate":30,"BaseFriendship":35,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":198,"Devolution":198,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[15,105],"HiddenAbility":153,"EggMoves":[372,413,109,65,297,185,260,119,195,375,355,103,143,18,17,98],"Machines":[174,92,244,237,241,173,63,196,182,203,218,216,94,247,189,104,207,214,129,138,197,156,213,168,211,171,13,18,36,38,6,99,102,117,143,86,164,347,269,332,259,263,290,289,355,373,371,416,432,445,399,363,365,477,496,510,511,514,555,590,19],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":125,"Def":52,"SpAtk":105,"SpDef":52,"Speed":71},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is merciless by nature. It is said that it never forgives the mistakes of its MURKROW followers.","Species":"Big Boss Pokémon","Height":0.9,"Weight":27.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":70,"Moves":[{"Level":1,"ID":400},{"Level":2,"ID":389},{"Level":3,"ID":310},{"Level":4,"ID":228},{"Level":5,"ID":114},{"Level":6,"ID":17},{"Level":25,"ID":207},{"Level":35,"ID":417},{"Level":45,"ID":1},{"Level":55,"ID":400},{"Level":65,"ID":1},{"Level":75,"ID":399}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Honchkrow +Number|430 +ExperienceType|2 +BaseExperience|177 +Type1|Dark +Type2|Flying +CatchRate|30 +BaseFriendship|35 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|198 +IsGenderLess|0 +CanBreed|1 +Devolution|198 +IsMale|50 +Ability1|15 +Ability2|105 +HiddenAbility|153 +EggMoves|372,413,109,65,297,185,260,119,195,375,355,103,143,18,17,98 +Machines|174,92,244,237,241,173,63,196,182,203,218,216,94,247,189,104,207,214,129,138,197,156,213,168,211,171,13,18,36,38,6,99,102,117,143,86,164,347,269,332,259,263,290,289,355,373,371,416,432,445,399,363,365,477,496,510,511,514,555,590,19 +BaseHP|100 +BaseAttack|125 +BaseDefense|52 +BaseSpAttack|105 +BaseSpDefense|52 +BaseSpeed|71 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is merciless by nature. It is said that it never forgives the mistakes of its MURKROW followers.\Big Boss Pokémon\27.3\0.9\0,148,0 +Scale|0.96 +Move|1,400 +Move|1,389 +Move|1,310 +Move|1,228 +Move|1,114 +Move|1,17 +Move|25,207 +Move|35,417 +Move|45,492 +Move|55,400 +Move|65,511 +Move|75,399 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/431.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/431.dat index 440bc9396..2adb510f1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/431.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/431.dat @@ -1 +1,54 @@ -{"Name":"Glameow","Number":431,"ExperienceType":"Fast","BaseExperience":62,"Type1":"Normal","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":431,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[7,20],"HiddenAbility":51,"EggMoves":[372,44,313,175,387,98,28,289,39,358],"Machines":[174,92,244,237,241,173,63,182,240,203,218,231,87,216,91,247,189,104,207,214,129,138,197,156,213,168,210,171,34,36,6,99,85,102,117,164,352,269,351,332,259,263,290,289,421,371,416,445,363,369,468,496,497,514,526,555,590,148],"TutorMoves":[],"BaseStats":{"HP":49,"Atk":55,"Def":42,"SpAtk":42,"SpDef":37,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it’s happy demonstrates beautiful movements of its tail, like a dancing ribbon.","Species":"Catty Pokémon","Height":0.5,"Weight":3.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":252},{"Level":5,"ID":10},{"Level":8,"ID":45},{"Level":13,"ID":95},{"Level":17,"ID":185},{"Level":20,"ID":154},{"Level":25,"ID":204},{"Level":29,"ID":274},{"Level":32,"ID":445},{"Level":37,"ID":163},{"Level":41,"ID":389},{"Level":44,"ID":213},{"Level":48,"ID":468},{"Level":50,"ID":583}],"EvolutionConditions":[{"Condition":"38","ConditionType":"Level","Evolution":432,"Trigger":"LevelUp"}],"Items":[{"Id":2000,"Chance":5}]} \ No newline at end of file +Name|Glameow +Number|431 +ExperienceType|0 +BaseExperience|62 +Type1|Normal +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|431 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|7 +Ability2|20 +HiddenAbility|51 +EggMoves|372,44,313,175,387,98,28,289,39,358 +Machines|174,92,244,237,241,173,63,182,240,203,218,231,87,216,91,247,189,104,207,214,129,138,197,156,213,168,210,171,34,36,6,99,85,102,117,164,352,269,351,332,259,263,290,289,421,371,416,445,363,369,468,496,497,514,526,555,590,148 +BaseHP|49 +BaseAttack|55 +BaseDefense|42 +BaseSpAttack|42 +BaseSpDefense|37 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|When it’s happy demonstrates beautiful movements of its tail, like a dancing ribbon.\Catty Pokémon\3.9\0.5\0,148,0 +Scale|0.7 +Move|1,252 +Move|5,10 +Move|8,45 +Move|13,95 +Move|17,185 +Move|20,154 +Move|25,204 +Move|29,274 +Move|32,445 +Move|37,163 +Move|41,389 +Move|44,213 +Move|48,468 +Move|50,583 +TradeValue|25 +Item|5,2000 +EvolutionCondition|432,level,38,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/432.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/432.dat index e0b042a0b..77782fc79 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/432.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/432.dat @@ -1 +1,55 @@ -{"Name":"Purugly","Number":432,"ExperienceType":"Fast","BaseExperience":158,"Type1":"Normal","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":431,"Devolution":431,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[47,20],"HiddenAbility":128,"EggMoves":[372,44,313,175,387,98,28,289,39,358],"Machines":[174,205,46,92,192,244,237,241,173,63,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,138,197,156,213,168,210,171,25,34,36,38,6,99,85,102,117,130,164,352,269,351,332,259,263,290,289,421,371,416,445,363,369,468,496,497,514,523,526,590,148,560],"TutorMoves":[],"BaseStats":{"HP":71,"Atk":82,"Def":64,"SpAtk":64,"SpDef":59,"Speed":112},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It would claim another Pokémon’s nest as its own if it finds a nest sufficiently comfortable.","Species":"Tiger Cat Pokémon","Height":1,"Weight":43.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":45,"Moves":[{"Level":1,"ID":252},{"Level":2,"ID":10},{"Level":3,"ID":45},{"Level":5,"ID":10},{"Level":8,"ID":45},{"Level":13,"ID":95},{"Level":17,"ID":185},{"Level":20,"ID":154},{"Level":25,"ID":204},{"Level":29,"ID":274},{"Level":32,"ID":445},{"Level":37,"ID":163},{"Level":38,"ID":207},{"Level":45,"ID":34},{"Level":52,"ID":213},{"Level":60,"ID":468}],"EvolutionConditions":[],"Items":[{"Id":2000,"Chance":5}]} \ No newline at end of file +Name|Purugly +Number|432 +ExperienceType|0 +BaseExperience|158 +Type1|Normal +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|431 +IsGenderLess|0 +CanBreed|1 +Devolution|431 +IsMale|25 +Ability1|47 +Ability2|20 +HiddenAbility|128 +EggMoves|372,44,313,175,387,98,28,289,39,358 +Machines|174,205,46,92,192,244,237,241,173,63,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,138,197,156,213,168,210,171,25,34,36,38,6,99,85,102,117,130,164,352,269,351,332,259,263,290,289,421,371,416,445,363,369,468,496,497,514,523,526,590,148,560 +BaseHP|71 +BaseAttack|82 +BaseDefense|64 +BaseSpAttack|64 +BaseSpDefense|59 +BaseSpeed|112 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It would claim another Pokémon’s nest as its own if it finds a nest sufficiently comfortable.\Tiger Cat Pokémon\43.8\1\0,148,0 +Scale|1 +Move|1,252 +Move|1,10 +Move|1,45 +Move|5,10 +Move|8,45 +Move|13,95 +Move|17,185 +Move|20,154 +Move|25,204 +Move|29,274 +Move|32,445 +Move|37,163 +Move|38,207 +Move|45,34 +Move|52,213 +Move|60,468 +TradeValue|45 +Item|5,2000 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/433.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/433.dat index fb050270b..110c8db6a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/433.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/433.dat @@ -1 +1,48 @@ -{"Name":"Chingling","Number":433,"ExperienceType":"Fast","BaseExperience":57,"Type1":"Psychic","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":433,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[322,174,50,248,95,105,285,500,273,138],"Machines":[174,205,92,244,237,241,173,63,196,182,240,203,218,216,94,247,104,207,214,129,111,138,197,156,213,6,99,100,102,115,117,120,86,164,347,269,113,219,351,259,263,290,285,289,451,278,416,445,363,447,433,473,477,496,497,605,590,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":30,"Def":50,"SpAtk":65,"SpDef":50,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It emits high-frequency cries that people can’t hear. Once it starts, it can cry for an awfully long time. ","Species":"Bell Pokémon","Height":0.2,"Weight":0.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":35},{"Level":6,"ID":45},{"Level":9,"ID":310},{"Level":14,"ID":93},{"Level":17,"ID":253},{"Level":22,"ID":387},{"Level":25,"ID":1}],"EvolutionConditions":[{"Condition":"0;3","ConditionType":"DayTime","Evolution":358,"Trigger":"LevelUp"},{"Condition":"220","ConditionType":"Friendship","Evolution":358,"Trigger":"LevelUp"}],"Items":[{"Id":2049,"Chance":5}]} \ No newline at end of file +Name|Chingling +Number|433 +ExperienceType|0 +BaseExperience|57 +Type1|Psychic +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|433 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|322,174,50,248,95,105,285,500,273,138 +Machines|174,205,92,244,237,241,173,63,196,182,240,203,218,216,94,247,104,207,214,129,111,138,197,156,213,6,99,100,102,115,117,120,86,164,347,269,113,219,351,259,263,290,285,289,451,278,416,445,363,447,433,473,477,496,497,605,590,148 +BaseHP|45 +BaseAttack|30 +BaseDefense|50 +BaseSpAttack|65 +BaseSpDefense|50 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It emits high-frequency cries that people can’t hear. Once it starts, it can cry for an awfully long time. \Bell Pokémon\0.6\0.2\0,148,0 +Scale|0.7 +Move|1,35 +Move|6,45 +Move|9,310 +Move|14,93 +Move|17,253 +Move|22,387 +Move|25,494 +TradeValue|25 +Item|5,2049 +EvolutionCondition|358,daytime,0;3,level +EvolutionCondition|358,friendship,220,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/434.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/434.dat index 2a461f137..1c7740675 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/434.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/434.dat @@ -1 +1,54 @@ -{"Name":"Stunky","Number":434,"ExperienceType":"MediumFast","BaseExperience":66,"Type1":"Poison","Type2":"Dark","CatchRate":225,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":434,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[1,106],"HiddenAbility":51,"EggMoves":[310,242,38,481,492,114,231,43,583,386,228,184,123],"Machines":[174,46,92,249,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,188,126,129,197,156,213,168,210,171,34,36,99,102,117,153,164,269,53,259,263,290,289,421,371,416,432,445,399,363,468,474,496,510,555,590,15],"TutorMoves":[],"BaseStats":{"HP":63,"Atk":63,"Def":47,"SpAtk":41,"SpDef":41,"Speed":74},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The foul fluid from its rear is so revolting that it can make people feel queasy up to a mile and a quarter away.","Species":"Skunk Pokémon","Height":0.4,"Weight":19.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":116},{"Level":4,"ID":139},{"Level":7,"ID":103},{"Level":10,"ID":154},{"Level":14,"ID":108},{"Level":18,"ID":364},{"Level":22,"ID":163},{"Level":27,"ID":92},{"Level":32,"ID":491},{"Level":37,"ID":400},{"Level":43,"ID":262},{"Level":46,"ID":1},{"Level":49,"ID":153}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Level","Evolution":435,"Trigger":"LevelUp"}],"Items":[{"Id":2002,"Chance":5}]} \ No newline at end of file +Name|Stunky +Number|434 +ExperienceType|1 +BaseExperience|66 +Type1|Poison +Type2|Dark +CatchRate|225 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|434 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|1 +Ability2|106 +HiddenAbility|51 +EggMoves|310,242,38,481,492,114,231,43,583,386,228,184,123 +Machines|174,46,92,249,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,188,126,129,197,156,213,168,210,171,34,36,99,102,117,153,164,269,53,259,263,290,289,421,371,416,432,445,399,363,468,474,496,510,555,590,15 +BaseHP|63 +BaseAttack|63 +BaseDefense|47 +BaseSpAttack|41 +BaseSpDefense|41 +BaseSpeed|74 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|The foul fluid from its rear is so revolting that it can make people feel queasy up to a mile and a quarter away.\Skunk Pokémon\19.2\0.4\0,148,0 +Scale|0.7 +Move|1,10 +Move|1,116 +Move|4,139 +Move|7,103 +Move|10,154 +Move|14,108 +Move|18,364 +Move|22,163 +Move|27,92 +Move|32,491 +Move|37,400 +Move|43,262 +Move|46,562 +Move|49,153 +TradeValue|25 +Item|5,2002 +EvolutionCondition|435,level,34,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/435.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/435.dat index 4bafb0b58..f306346c1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/435.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/435.dat @@ -1 +1,54 @@ -{"Name":"Skuntank","Number":435,"ExperienceType":"MediumFast","BaseExperience":168,"Type1":"Poison","Type2":"Dark","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":434,"Devolution":434,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[1,106],"HiddenAbility":51,"EggMoves":[310,242,38,481,492,114,231,43,583,386,228,184,123],"Machines":[174,46,92,249,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,188,126,129,197,156,213,168,210,171,25,34,36,38,99,102,117,130,153,164,269,53,259,263,290,289,421,371,416,432,445,399,363,398,468,474,496,510,555,590,15,70,560],"TutorMoves":[],"BaseStats":{"HP":103,"Atk":93,"Def":67,"SpAtk":71,"SpDef":61,"Speed":84},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It attacks by spraying a repugnant fluid from its tail, but the stench dulls after a few squirts.","Species":"Skunk Pokémon","Height":1,"Weight":38,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":116},{"Level":3,"ID":139},{"Level":4,"ID":139},{"Level":7,"ID":103},{"Level":10,"ID":154},{"Level":18,"ID":364},{"Level":22,"ID":163},{"Level":27,"ID":92},{"Level":32,"ID":491},{"Level":34,"ID":53},{"Level":41,"ID":400},{"Level":51,"ID":262},{"Level":56,"ID":1},{"Level":61,"ID":153}],"EvolutionConditions":[],"Items":[{"Id":2002,"Chance":5}]} \ No newline at end of file +Name|Skuntank +Number|435 +ExperienceType|1 +BaseExperience|168 +Type1|Poison +Type2|Dark +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|434 +IsGenderLess|0 +CanBreed|1 +Devolution|434 +IsMale|50 +Ability1|1 +Ability2|106 +HiddenAbility|51 +EggMoves|310,242,38,481,492,114,231,43,583,386,228,184,123 +Machines|174,46,92,249,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,188,126,129,197,156,213,168,210,171,25,34,36,38,99,102,117,130,153,164,269,53,259,263,290,289,421,371,416,432,445,399,363,398,468,474,496,510,555,590,15,70,560 +BaseHP|103 +BaseAttack|93 +BaseDefense|67 +BaseSpAttack|71 +BaseSpDefense|61 +BaseSpeed|84 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It attacks by spraying a repugnant fluid from its tail, but the stench dulls after a few squirts.\Skunk Pokémon\38\1\0,148,0 +Scale|1 +Move|1,10 +Move|1,116 +Move|1,139 +Move|4,139 +Move|7,103 +Move|10,154 +Move|18,364 +Move|22,163 +Move|27,92 +Move|32,491 +Move|34,53 +Move|41,400 +Move|51,262 +Move|56,562 +Move|61,153 +TradeValue|50 +Item|5,2002 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/436.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/436.dat index 5446fe756..fd43fba18 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/436.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/436.dat @@ -1 +1,55 @@ -{"Name":"Bronzor","Number":436,"ExperienceType":"MediumFast","BaseExperience":60,"Type1":"Steel","Type2":"Psychic","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":436,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26,85],"HiddenAbility":134,"EggMoves":[],"Machines":[174,205,92,192,244,237,241,173,63,182,203,218,216,94,104,207,214,111,197,156,213,171,36,99,100,102,115,117,120,149,161,164,263,290,285,278,416,446,445,363,433,473,477,496,590,148],"TutorMoves":[],"BaseStats":{"HP":57,"Atk":24,"Def":86,"SpAtk":24,"SpDef":86,"Speed":23},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Ancient people believed that the pattern on BRONZOR's back contained a mysterious power.","Species":"Bronze Pokémon","Height":0.5,"Weight":60.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":93},{"Level":5,"ID":95},{"Level":9,"ID":1},{"Level":11,"ID":109},{"Level":15,"ID":149},{"Level":19,"ID":334},{"Level":21,"ID":185},{"Level":25,"ID":219},{"Level":29,"ID":248},{"Level":31,"ID":319},{"Level":35,"ID":360},{"Level":39,"ID":326},{"Level":41,"ID":371},{"Level":45,"ID":377},{"Level":49,"ID":484}],"EvolutionConditions":[{"Condition":"33","ConditionType":"Level","Evolution":437,"Trigger":"LevelUp"}],"Items":[{"Id":143,"Chance":5}]} \ No newline at end of file +Name|Bronzor +Number|436 +ExperienceType|1 +BaseExperience|60 +Type1|Steel +Type2|Psychic +CatchRate|255 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|436 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|85 +HiddenAbility|134 +Machines|174,205,92,192,244,237,241,173,63,182,203,218,216,94,104,207,214,111,197,156,213,171,36,99,100,102,115,117,120,149,161,164,263,290,285,278,416,446,445,363,433,473,477,496,590,148 +BaseHP|57 +BaseAttack|24 +BaseDefense|86 +BaseSpAttack|24 +BaseSpDefense|86 +BaseSpeed|23 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Ancient people believed that the pattern on BRONZOR's back contained a mysterious power.\Bronze Pokémon\60.5\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,93 +Move|5,95 +Move|9,286 +Move|11,109 +Move|15,149 +Move|19,334 +Move|21,185 +Move|25,219 +Move|29,248 +Move|31,319 +Move|35,360 +Move|39,326 +Move|41,371 +Move|45,377 +Move|49,484 +TradeValue|35 +Item|5,143 +EvolutionCondition|437,Level,33,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/437.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/437.dat index 68b389210..672ac7ffa 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/437.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/437.dat @@ -1 +1,59 @@ -{"Name":"Bronzong","Number":437,"ExperienceType":"MediumFast","BaseExperience":175,"Type1":"Steel","Type2":"Psychic","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":436,"Devolution":436,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26,85],"HiddenAbility":134,"EggMoves":[],"Machines":[174,205,92,192,249,244,237,241,173,63,182,203,218,216,94,104,207,214,111,197,156,213,171,34,36,38,99,100,102,115,117,120,149,161,164,263,290,285,278,416,446,445,363,433,473,477,496,590,70,148,560],"TutorMoves":[],"BaseStats":{"HP":67,"Atk":89,"Def":116,"SpAtk":79,"SpDef":116,"Speed":33},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Ancient people believed that petitioning BRONZONG for rain was the way to make crops grow.","Species":"Bronze Bell Pokémon","Height":1.3,"Weight":187,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":55,"Moves":[{"Level":1,"ID":241},{"Level":2,"ID":240},{"Level":3,"ID":33},{"Level":4,"ID":93},{"Level":5,"ID":95},{"Level":6,"ID":1},{"Level":7,"ID":95},{"Level":9,"ID":1},{"Level":11,"ID":109},{"Level":15,"ID":149},{"Level":19,"ID":334},{"Level":21,"ID":185},{"Level":25,"ID":219},{"Level":29,"ID":248},{"Level":31,"ID":319},{"Level":33,"ID":335},{"Level":36,"ID":360},{"Level":42,"ID":326},{"Level":46,"ID":371},{"Level":52,"ID":377},{"Level":58,"ID":484}],"EvolutionConditions":[],"Items":[{"Id":143,"Chance":5}]} \ No newline at end of file +Name|Bronzong +Number|437 +ExperienceType|1 +BaseExperience|175 +Type1|Steel +Type2|Psychic +CatchRate|90 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|436 +IsGenderLess|1 +CanBreed|1 +Devolution|436 +IsMale|0.0 +Ability1|26 +Ability2|85 +HiddenAbility|134 +Machines|174,205,92,192,249,244,237,241,173,63,182,203,218,216,94,104,207,214,111,197,156,213,171,34,36,38,99,100,102,115,117,120,149,161,164,263,290,285,278,416,446,445,363,433,473,477,496,590,70,148,560 +BaseHP|67 +BaseAttack|89 +BaseDefense|116 +BaseSpAttack|79 +BaseSpDefense|116 +BaseSpeed|33 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Ancient people believed that petitioning BRONZONG for rain was the way to make crops grow.\Bronze Bell Pokémon\187\1.3\0,148,0 +Scale|1.12 +Move|1,241 +Move|1,240 +Move|1,33 +Move|1,93 +Move|1,95 +Move|1,286 +Move|5,95 +Move|9,286 +Move|11,109 +Move|15,149 +Move|19,334 +Move|21,185 +Move|25,219 +Move|29,248 +Move|31,319 +Move|33,335 +Move|36,360 +Move|42,326 +Move|46,371 +Move|52,377 +Move|58,484 +TradeValue|55 +Item|5,143 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/438.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/438.dat index a8fe3ba04..3e0649496 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/438.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/438.dat @@ -1 +1,52 @@ -{"Name":"Bonsly","Number":438,"ExperienceType":"MediumFast","BaseExperience":58,"Type1":"Rock","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":438,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5,69],"HiddenAbility":155,"EggMoves":[174,111,203,106,29,205,328,120,446],"Machines":[174,205,92,244,237,241,173,63,182,203,218,216,91,104,207,214,201,111,197,156,213,168,36,99,102,117,118,120,153,157,164,347,280,317,263,290,416,397,446,445,363,479,496,267,590],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":80,"Def":95,"SpAtk":10,"SpDef":45,"Speed":10},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"In order to adjust the level of fluids in its body, it exudes water from its eyes. This makes it appear to be crying.","Species":"Bonsai Pokémon","Height":0.5,"Weight":15,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":313},{"Level":2,"ID":1},{"Level":5,"ID":175},{"Level":8,"ID":67},{"Level":12,"ID":88},{"Level":15,"ID":102},{"Level":19,"ID":185},{"Level":22,"ID":317},{"Level":26,"ID":335},{"Level":29,"ID":157},{"Level":33,"ID":68},{"Level":36,"ID":389},{"Level":40,"ID":38}],"EvolutionConditions":[{"Condition":"102","ConditionType":"Move","Evolution":185,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Bonsly +Number|438 +ExperienceType|1 +BaseExperience|58 +Type1|Rock +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|438 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|5 +Ability2|69 +HiddenAbility|155 +EggMoves|174,111,203,106,29,205,328,120,446 +Machines|174,205,92,244,237,241,173,63,182,203,218,216,91,104,207,214,201,111,197,156,213,168,36,99,102,117,118,120,153,157,164,347,280,317,263,290,416,397,446,445,363,479,496,267,590 +BaseHP|50 +BaseAttack|80 +BaseDefense|95 +BaseSpAttack|10 +BaseSpDefense|45 +BaseSpeed|10 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|In order to adjust the level of fluids in its body, it exudes water from its eyes. This makes it appear to be crying.\Bonsai Pokémon\15\0.5\0,148,0 +Scale|0.7 +Move|1,313 +Move|1,383 +Move|5,175 +Move|8,67 +Move|12,88 +Move|15,102 +Move|19,185 +Move|22,317 +Move|26,335 +Move|29,157 +Move|33,68 +Move|36,389 +Move|40,38 +TradeValue|20 +EvolutionCondition|185,move,102,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/439.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/439.dat index 2344005ce..5b27aca2f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/439.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/439.dat @@ -1 +1,58 @@ -{"Name":"Mime Jr.","Number":439,"ExperienceType":"MediumFast","BaseExperience":62,"Type1":"Psychic","Type2":"Fairy","CatchRate":145,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":439,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[43,111],"HiddenAbility":101,"EggMoves":[204,109,252,248,361,95,196,478,102,417,471,298,271,358,244],"Machines":[174,92,244,237,241,173,63,196,182,240,203,218,76,87,216,94,247,189,104,207,214,138,197,156,213,168,171,5,25,36,68,99,85,100,102,115,117,118,86,149,164,264,347,269,113,219,280,351,259,263,290,285,289,374,451,409,278,416,445,363,447,433,473,477,496,611,590,148],"TutorMoves":[],"BaseStats":{"HP":20,"Atk":25,"Def":45,"SpAtk":70,"SpDef":90,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"In an attempt to confuse its enemy it mimics the enemy's movements. Then it wastes no time in making itself scarce!","Species":"Mime Pokémon","Height":0.6,"Weight":13,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":20,"Moves":[{"Level":1,"ID":321},{"Level":2,"ID":112},{"Level":3,"ID":93},{"Level":4,"ID":1},{"Level":8,"ID":96},{"Level":11,"ID":3},{"Level":15,"ID":102},{"Level":18,"ID":227},{"Level":22,"ID":113},{"Level":23,"ID":115},{"Level":25,"ID":60},{"Level":29,"ID":164},{"Level":32,"ID":278},{"Level":36,"ID":271},{"Level":39,"ID":94},{"Level":43,"ID":272},{"Level":46,"ID":226},{"Level":50,"ID":219}],"EvolutionConditions":[{"Condition":"102","ConditionType":"Move","Evolution":122,"Trigger":"LevelUp"}],"Items":[{"Id":2005,"Chance":5}]} \ No newline at end of file +Name|Mime Jr. +Number|439 +ExperienceType|1 +BaseExperience|62 +Type1|Psychic +Type2|Fairy +CatchRate|145 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|439 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|43 +Ability2|111 +HiddenAbility|101 +EggMoves|204,109,252,248,361,95,196,478,102,417,471,298,271,358,244 +Machines|174,92,244,237,241,173,63,196,182,240,203,218,76,87,216,94,247,189,104,207,214,138,197,156,213,168,171,5,25,36,68,99,85,100,102,115,117,118,86,149,164,264,347,269,113,219,280,351,259,263,290,285,289,374,451,409,278,416,445,363,447,433,473,477,496,611,590,148 +BaseHP|20 +BaseAttack|25 +BaseDefense|45 +BaseSpAttack|70 +BaseSpDefense|90 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|In an attempt to confuse its enemy it mimics the enemy's movements. Then it wastes no time in making itself scarce!\Mime Pokémon\13\0.6\0,148,0 +Scale|0.84 +Move|1,321 +Move|1,112 +Move|1,93 +Move|4,383 +Move|8,96 +Move|11,3 +Move|15,102 +Move|18,227 +Move|22,113 +Move|22,115 +Move|25,60 +Move|29,164 +Move|32,278 +Move|36,271 +Move|39,94 +Move|43,272 +Move|46,226 +Move|50,219 +TradeValue|20 +Item|5,2005 +EvolutionCondition|122,move,102,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/44.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/44.dat index ddc6a5322..a4f7845bf 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/44.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/44.dat @@ -1 +1,54 @@ -{"Name":"Gloom","Number":44,"ExperienceType":"MediumSlow","BaseExperience":138,"Type1":"Grass","Type2":"Poison","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":43,"Devolution":43,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34],"HiddenAbility":1,"EggMoves":[495,204,175,275,75,290,235,298,321,14],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,14,36,99,72,102,117,164,331,263,290,412,374,409,416,445,363,447,474,496,611,267,605,590,15,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":65,"Def":70,"SpAtk":85,"SpDef":75,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"What appears to be drool is actually sweet honey. It is very sticky and clings stubbornly if touched.","Species":"Weed Pokémon","Height":0.8,"Weight":8.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":25,"Moves":[{"Level":1,"ID":71},{"Level":2,"ID":51},{"Level":3,"ID":230},{"Level":5,"ID":230},{"Level":9,"ID":51},{"Level":13,"ID":77},{"Level":15,"ID":78},{"Level":17,"ID":79},{"Level":23,"ID":72},{"Level":29,"ID":1},{"Level":35,"ID":363},{"Level":41,"ID":236},{"Level":47,"ID":202},{"Level":50,"ID":572},{"Level":53,"ID":80},{"Level":56,"ID":1}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Item","Evolution":45,"Trigger":"ItemUse"},{"Condition":"169","ConditionType":"Item","Evolution":182,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Gloom +Number|44 +ExperienceType|2 +BaseExperience|138 +Type1|Grass +Type2|Poison +CatchRate|120 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|43 +IsGenderLess|0 +IsMale|50 +Ability1|34 +Ability2|Nothing +HiddenAbility|1 +EggMoves|495,204,175,275,75,290,235,298,321,14 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,14,36,99,72,102,117,164,331,263,290,412,374,409,416,445,363,447,474,496,611,267,605,590,15,148 +BaseHP|60 +BaseAttack|65 +BaseDefense|70 +BaseSpAttack|85 +BaseSpDefense|75 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|What appears to be drool is actually sweet honey. It is very sticky and clings stubbornly if touched.\Weed Pokémon\8.6\0.8\0,148,0 +Scale|0.92 +Move|1,71 +Move|1,51 +Move|1,230 +Move|5,230 +Move|9,51 +Move|13,77 +Move|15,78 +Move|17,79 +Move|23,72 +Move|29,381 +Move|35,363 +Move|41,236 +Move|47,202 +Move|50,572 +Move|53,80 +Move|56,580 +EvolutionCondition|45,item,34,item +EvolutionCondition|182,item,169,item +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/440.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/440.dat index 280f37ce0..d76c15d96 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/440.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/440.dat @@ -1 +1,47 @@ -{"Name":"Happiny","Number":440,"ExperienceType":"Fast","BaseExperience":110,"Type1":"Normal","Type2":"Blank","CatchRate":130,"BaseFriendship":140,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":440,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[30,32],"HiddenAbility":132,"EggMoves":[312,68,203,356,215,270,387,118,426,363,217,69,164],"Machines":[174,205,92,244,237,241,173,63,196,182,240,203,218,216,189,104,207,214,126,111,197,156,213,34,36,99,102,117,118,121,135,86,164,352,351,53,263,290,409,278,416,445,363,496,510,526,590,148],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":5,"Def":5,"SpAtk":15,"SpDef":65,"Speed":30},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It carefully carries a round that it thinks is an egg. It's bothered by how curly its hair looks.","Species":"Playhouse Pokémon","Height":0.6,"Weight":24.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":20,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":204},{"Level":5,"ID":1},{"Level":9,"ID":287},{"Level":12,"ID":186}],"EvolutionConditions":[{"Condition":"179","ConditionType":"HoldItem","Evolution":113,"Trigger":"LevelUp"},{"Condition":"2","ConditionType":"DayTime","Evolution":113,"Trigger":"LevelUp"}],"Items":[{"Id":126,"Chance":5},{"Id":179,"Chance":50}]} \ No newline at end of file +Name|Happiny +Number|440 +ExperienceType|0 +BaseExperience|110 +Type1|Normal +Type2| +CatchRate|130 +BaseFriendship|140 +EggGroup1|None +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|440 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|0 +Ability1|30 +Ability2|32 +HiddenAbility|132 +EggMoves|312,68,203,356,215,270,387,118,426,363,217,69,164 +Machines|174,205,92,244,237,241,173,63,196,182,240,203,218,216,189,104,207,214,126,111,197,156,213,34,36,99,102,117,118,121,135,86,164,352,351,53,263,290,409,278,416,445,363,496,510,526,590,148 +BaseHP|100 +BaseAttack|5 +BaseDefense|5 +BaseSpAttack|15 +BaseSpDefense|65 +BaseSpeed|30 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It carefully carries a round that it thinks is an egg. It's bothered by how curly its hair looks.\Playhouse Pokémon\24.4\0.6\0,148,0 +Scale|0.84 +Move|1,1 +Move|1,204 +Move|5,383 +Move|9,287 +Move|12,186 +TradeValue|20 +Item|5,126 +Item|50,179 +EvolutionCondition|113,holditem,179,level +EvolutionCondition|113,daytime,2,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/441.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/441.dat index 5d26613f4..47ab2364c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/441.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/441.dat @@ -1 +1,57 @@ -{"Name":"Chatot","Number":441,"ExperienceType":"MediumSlow","BaseExperience":144,"Type1":"Normal","Type2":"Flying","CatchRate":30,"BaseFriendship":35,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":441,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51,77],"HiddenAbility":145,"EggMoves":[97,314,586,432,227,417,101,214,211,48],"Machines":[174,92,237,241,173,63,182,240,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,118,143,164,269,332,259,263,290,355,416,432,445,363,365,369,496,497,526,590,19],"TutorMoves":[],"BaseStats":{"HP":76,"Atk":65,"Def":45,"SpAtk":92,"SpDef":42,"Speed":91},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It mimics the cries of other Pokémon to trick them into thinking it’s one of them. This way they won’t attack it.","Species":"Music Note Pokémon","Height":0.5,"Weight":1.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":304},{"Level":2,"ID":448},{"Level":3,"ID":590},{"Level":4,"ID":269},{"Level":5,"ID":64},{"Level":6,"ID":45},{"Level":9,"ID":119},{"Level":13,"ID":47},{"Level":17,"ID":31},{"Level":21,"ID":448},{"Level":25,"ID":269},{"Level":29,"ID":1},{"Level":33,"ID":102},{"Level":37,"ID":1},{"Level":41,"ID":355},{"Level":45,"ID":253},{"Level":49,"ID":1},{"Level":50,"ID":297},{"Level":57,"ID":304}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Chatot +Number|441 +ExperienceType|2 +BaseExperience|144 +Type1|Normal +Type2|Flying +CatchRate|30 +BaseFriendship|35 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|441 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|51 +Ability2|77 +HiddenAbility|145 +EggMoves|97,314,586,432,227,417,101,214,211,48 +Machines|174,92,237,241,173,63,182,240,203,218,216,189,104,207,214,129,197,156,213,168,211,13,18,36,99,102,117,118,143,164,269,332,259,263,290,355,416,432,445,363,365,369,496,497,526,590,19 +BaseHP|76 +BaseAttack|65 +BaseDefense|45 +BaseSpAttack|92 +BaseSpDefense|42 +BaseSpeed|91 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It mimics the cries of other Pokémon to trick them into thinking it’s one of them. This way they won’t attack it.\Music Note Pokémon\1.9\0.5\0,148,0 +Scale|0.7 +Move|1,304 +Move|1,448 +Move|1,590 +Move|1,269 +Move|1,64 +Move|5,45 +Move|9,119 +Move|13,47 +Move|17,31 +Move|21,448 +Move|25,269 +Move|29,496 +Move|33,102 +Move|37,497 +Move|41,355 +Move|45,253 +Move|49,485 +Move|50,297 +Move|57,304 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/442.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/442.dat index 72d15dcc7..984758852 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/442.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/442.dat @@ -1 +1,51 @@ -{"Name":"Spiritomb","Number":442,"ExperienceType":"MediumFast","BaseExperience":170,"Type1":"Ghost","Type2":"Dark","CatchRate":100,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":442,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[46],"HiddenAbility":151,"EggMoves":[445,194,492,171,288,286,220,425,108],"Machines":[174,92,244,237,241,173,63,196,182,203,218,216,247,104,207,214,197,156,213,168,99,102,117,118,120,149,164,352,351,263,290,289,318,373,416,445,399,363,477,496,511,555,611,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":92,"Def":108,"SpAtk":92,"SpDef":108,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It was formed by uniting 108 spirits. It has been bound to the Odd Keystone to keep it from doing any mischief.","Species":"Forbidden Pokémon","Height":1,"Weight":108,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":60,"Moves":[{"Level":1,"ID":174},{"Level":2,"ID":228},{"Level":3,"ID":109},{"Level":4,"ID":180},{"Level":5,"ID":425},{"Level":7,"ID":185},{"Level":13,"ID":95},{"Level":19,"ID":138},{"Level":25,"ID":466},{"Level":31,"ID":389},{"Level":37,"ID":417},{"Level":43,"ID":262},{"Level":49,"ID":399}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Spiritomb +Number|442 +ExperienceType|1 +BaseExperience|170 +Type1|Ghost +Type2|Dark +CatchRate|100 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|442 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|46 +Ability2|Nothing +HiddenAbility|151 +EggMoves|445,194,492,171,288,286,220,425,108 +Machines|174,92,244,237,241,173,63,196,182,203,218,216,247,104,207,214,197,156,213,168,99,102,117,118,120,149,164,352,351,263,290,289,318,373,416,445,399,363,477,496,511,555,611,590,148 +BaseHP|50 +BaseAttack|92 +BaseDefense|108 +BaseSpAttack|92 +BaseSpDefense|108 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It was formed by uniting 108 spirits. It has been bound to the Odd Keystone to keep it from doing any mischief.\Forbidden Pokémon\108\1\0,148,0 +Scale|1 +Move|1,174 +Move|1,228 +Move|1,109 +Move|1,180 +Move|1,425 +Move|7,185 +Move|13,95 +Move|19,138 +Move|25,466 +Move|31,389 +Move|37,417 +Move|43,262 +Move|49,399 +TradeValue|60 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/443.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/443.dat index 9d03b6034..e118a6a51 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/443.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/443.dat @@ -1 +1,51 @@ -{"Name":"Gible","Number":443,"ExperienceType":"Slow","BaseExperience":60,"Type1":"Dragon","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":10455,"EggPokemon":443,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[8],"HiddenAbility":24,"EggMoves":[34,38,225,442,231,232,341,200,431,328,184,37,239],"Machines":[174,46,92,249,237,241,173,63,182,240,203,218,225,89,216,91,189,104,207,214,201,126,129,197,156,213,210,32,36,99,82,90,102,117,157,164,337,53,317,332,263,290,406,421,416,444,446,445,363,468,496,510,523,590,15,70,431],"TutorMoves":[434],"BaseStats":{"HP":58,"Atk":70,"Def":45,"SpAtk":40,"SpDef":45,"Speed":42},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It nests in horizontal holes warmed by geothermal heat. Foes who get too close can expect to be pounced on and bitten.","Species":"Land Shark Pokémon","Height":0.7,"Weight":20.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":40,"Moves":[{"Level":1,"ID":33},{"Level":3,"ID":28},{"Level":7,"ID":82},{"Level":13,"ID":201},{"Level":15,"ID":36},{"Level":19,"ID":328},{"Level":25,"ID":163},{"Level":27,"ID":337},{"Level":31,"ID":91},{"Level":37,"ID":407}],"EvolutionConditions":[{"Condition":"24","ConditionType":"Level","Evolution":444,"Trigger":"LevelUp"}],"Items":[{"Id":132,"Chance":5}]} \ No newline at end of file +Name|Gible +Number|443 +ExperienceType|3 +BaseExperience|60 +Type1|Dragon +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|10455 +EggPokemon|443 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|8 +Ability2|Nothing +HiddenAbility|24 +EggMoves|34,38,225,442,231,232,341,200,431,328,184,37,239 +Machines|174,46,92,249,237,241,173,63,182,240,203,218,225,89,216,91,189,104,207,214,201,126,129,197,156,213,210,32,36,99,82,90,102,117,157,164,337,53,317,332,263,290,406,421,416,444,446,445,363,468,496,510,523,590,15,70,431 +TutorMoves|434 +BaseHP|58 +BaseAttack|70 +BaseDefense|45 +BaseSpAttack|40 +BaseSpDefense|45 +BaseSpeed|42 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It nests in horizontal holes warmed by geothermal heat. Foes who get too close can expect to be pounced on and bitten.\Land Shark Pokémon\20.5\0.7\0,148,0 +Scale|0.88 +Move|1,33 +Move|3,28 +Move|7,82 +Move|13,201 +Move|15,36 +Move|19,328 +Move|25,163 +Move|27,337 +Move|31,91 +Move|37,407 +TradeValue|40 +Item|5,132 +EvolutionCondition|444,Level,24,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/444.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/444.dat index ee07bea13..f5418255d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/444.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/444.dat @@ -1 +1,53 @@ -{"Name":"Gabite","Number":444,"ExperienceType":"Slow","BaseExperience":144,"Type1":"Dragon","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":10455,"EggPokemon":443,"Devolution":443,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[8],"HiddenAbility":24,"EggMoves":[34,38,225,442,231,232,341,200,431,328,184,37,239],"Machines":[223,174,46,92,192,249,237,241,173,63,182,240,203,218,231,225,89,216,91,189,104,207,214,201,126,129,197,156,213,210,25,32,34,36,38,66,68,69,99,82,90,102,117,130,157,164,337,53,317,332,263,290,406,421,416,444,446,445,363,468,496,510,523,590,15,70,431,560],"TutorMoves":[434],"BaseStats":{"HP":68,"Atk":90,"Def":65,"SpAtk":50,"SpDef":55,"Speed":82},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"As it digs to expand its nest, it habitually digs up gems that it then hoards in its nest.","Species":"Cave Pokémon","Height":1.4,"Weight":56,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":28},{"Level":3,"ID":28},{"Level":7,"ID":82},{"Level":13,"ID":201},{"Level":15,"ID":36},{"Level":19,"ID":328},{"Level":24,"ID":530},{"Level":28,"ID":163},{"Level":33,"ID":337},{"Level":40,"ID":91},{"Level":49,"ID":407}],"EvolutionConditions":[{"Condition":"48","ConditionType":"Level","Evolution":445,"Trigger":"LevelUp"}],"Items":[{"Id":132,"Chance":5}]} \ No newline at end of file +Name|Gabite +Number|444 +ExperienceType|3 +BaseExperience|144 +Type1|Dragon +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|10455 +EggPokemon|443 +IsGenderLess|0 +CanBreed|1 +Devolution|443 +IsMale|50 +Ability1|8 +Ability2|Nothing +HiddenAbility|24 +EggMoves|34,38,225,442,231,232,341,200,431,328,184,37,239 +Machines|223,174,46,92,192,249,237,241,173,63,182,240,203,218,231,225,89,216,91,189,104,207,214,201,126,129,197,156,213,210,25,32,34,36,38,66,68,69,99,82,90,102,117,130,157,164,337,53,317,332,263,290,406,421,416,444,446,445,363,468,496,510,523,590,15,70,431,560 +TutorMoves|434 +BaseHP|68 +BaseAttack|90 +BaseDefense|65 +BaseSpAttack|50 +BaseSpDefense|55 +BaseSpeed|82 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|As it digs to expand its nest, it habitually digs up gems that it then hoards in its nest.\Cave Pokémon\56\1.4\0,148,0 +Scale|1.16 +Move|1,33 +Move|1,28 +Move|3,28 +Move|7,82 +Move|13,201 +Move|15,36 +Move|19,328 +Move|24,530 +Move|28,163 +Move|33,337 +Move|40,91 +Move|49,407 +TradeValue|60 +Item|5,132 +EvolutionCondition|445,Level,48,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/445.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/445.dat index d76a2abcf..1485575a7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/445.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/445.dat @@ -1 +1,56 @@ -{"Name":"Garchomp","Number":445,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Dragon","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":10455,"EggPokemon":443,"Devolution":444,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[8],"HiddenAbility":24,"EggMoves":[34,38,225,442,231,232,341,200,431,328,184,37,239],"Machines":[223,174,46,92,192,249,237,241,173,63,182,240,203,218,231,225,89,216,91,189,104,207,214,201,126,129,197,156,213,210,14,25,32,34,36,38,66,68,69,99,82,90,102,117,130,157,164,337,280,53,317,332,263,290,206,374,406,421,416,444,446,445,363,398,468,496,510,523,525,590,15,57,70,250,431,560],"TutorMoves":[434],"BaseStats":{"HP":108,"Atk":130,"Def":95,"SpAtk":80,"SpDef":85,"Speed":102},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its body is covered in fine scales that reduce drag, enabling it to fly at high speeds.","Species":"Mach Pokémon","Height":1.9,"Weight":95,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":75,"Moves":[{"Level":1,"ID":424},{"Level":2,"ID":33},{"Level":3,"ID":28},{"Level":4,"ID":82},{"Level":5,"ID":201},{"Level":6,"ID":28},{"Level":7,"ID":82},{"Level":13,"ID":201},{"Level":15,"ID":36},{"Level":19,"ID":328},{"Level":24,"ID":530},{"Level":28,"ID":163},{"Level":33,"ID":337},{"Level":40,"ID":91},{"Level":48,"ID":242},{"Level":55,"ID":407}],"EvolutionConditions":[],"Items":[{"Id":132,"Chance":5}]} \ No newline at end of file +Name|Garchomp +Number|445 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|10455 +EggPokemon|443 +IsGenderLess|0 +CanBreed|1 +Devolution|444 +IsMale|50 +Ability1|8 +Ability2|Nothing +HiddenAbility|24 +EggMoves|34,38,225,442,231,232,341,200,431,328,184,37,239 +Machines|223,174,46,92,192,249,237,241,173,63,182,240,203,218,231,225,89,216,91,189,104,207,214,201,126,129,197,156,213,210,14,25,32,34,36,38,66,68,69,99,82,90,102,117,130,157,164,337,280,53,317,332,263,290,206,374,406,421,416,444,446,445,363,398,468,496,510,523,525,590,15,57,70,250,431,560 +TutorMoves|434 +BaseHP|108 +BaseAttack|130 +BaseDefense|95 +BaseSpAttack|80 +BaseSpDefense|85 +BaseSpeed|102 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its body is covered in fine scales that reduce drag, enabling it to fly at high speeds.\Mach Pokémon\95\1.9\0,148,0 +Scale|1.36 +Move|1,424 +Move|1,33 +Move|1,28 +Move|1,82 +Move|1,201 +Move|3,28 +Move|7,82 +Move|13,201 +Move|15,36 +Move|19,328 +Move|24,530 +Move|28,163 +Move|33,337 +Move|40,91 +Move|48,242 +Move|55,407 +TradeValue|75 +Item|5,132 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/445_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/445_mega.dat new file mode 100644 index 000000000..83b94c7d8 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/445_mega.dat @@ -0,0 +1,56 @@ +Name|Mega Garchomp +Number|445 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|10455 +EggPokemon|443 +IsGenderLess|0 +CanBreed|1 +Devolution|444 +IsMale|50 +Ability1|159 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|34,38,225,442,231,232,341,200,431,328,184,37,239 +Machines|223,174,46,92,192,249,237,241,173,63,182,240,203,218,231,225,89,216,91,189,104,207,214,201,126,129,197,156,213,210,14,25,32,34,36,38,66,68,69,99,82,90,102,117,130,157,164,337,280,53,317,332,263,290,206,374,406,421,416,444,446,445,363,398,468,496,510,523,525,590,15,57,70,250,431,560 +TutorMoves|434 +BaseHP|108 +BaseAttack|170 +BaseDefense|115 +BaseSpAttack|120 +BaseSpDefense|95 +BaseSpeed|92 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its body is covered in fine scales that reduce drag, enabling it to fly at high speeds.\Mach Pokémon\95\1.9\0,148,0 +Scale|1.36 +Move|1,424 +Move|1,33 +Move|1,28 +Move|1,82 +Move|1,201 +Move|3,28 +Move|7,82 +Move|13,201 +Move|15,36 +Move|19,328 +Move|24,530 +Move|28,163 +Move|33,337 +Move|40,91 +Move|48,242 +Move|55,407 +TradeValue|75 +Item|5,132 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/446.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/446.dat index a14c8ba15..849f9d999 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/446.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/446.dat @@ -1 +1,57 @@ -{"Name":"Munchlax","Number":446,"ExperienceType":"Slow","BaseExperience":78,"Type1":"Normal","Type2":"Blank","CatchRate":50,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":446,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[53,47],"HiddenAbility":82,"EggMoves":[495,562,204,68,174,38,90,122,363,228,120,18,428,164],"Machines":[223,174,205,92,249,237,241,173,59,63,196,182,240,203,218,76,87,89,216,94,247,189,104,8,207,214,201,126,111,9,197,156,213,7,5,25,34,36,38,61,55,58,6,66,68,69,99,85,102,117,118,120,130,149,157,164,264,352,280,351,53,317,263,290,374,278,416,445,363,496,510,514,523,526,612,590,57,70,250,431],"TutorMoves":[],"BaseStats":{"HP":135,"Atk":85,"Def":40,"SpAtk":40,"SpDef":85,"Speed":5},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It conceals food under the long fur on its body. It carts around this food stash and swallows it without chewing.","Species":"Big Eater Pokémon","Height":0.6,"Weight":105,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":118},{"Level":3,"ID":316},{"Level":4,"ID":111},{"Level":9,"ID":133},{"Level":12,"ID":122},{"Level":17,"ID":278},{"Level":20,"ID":103},{"Level":25,"ID":498},{"Level":28,"ID":254},{"Level":33,"ID":256},{"Level":36,"ID":34},{"Level":41,"ID":374},{"Level":44,"ID":205},{"Level":49,"ID":363},{"Level":52,"ID":289},{"Level":57,"ID":387}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":143,"Trigger":"LevelUp"}],"Items":[{"Id":146,"Chance":100}]} \ No newline at end of file +Name|Munchlax +Number|446 +ExperienceType|3 +BaseExperience|78 +Type1|Normal +Type2| +CatchRate|50 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|446 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|53 +Ability2|47 +HiddenAbility|82 +EggMoves|495,562,204,68,174,38,90,122,363,228,120,18,428,164 +Machines|223,174,205,92,249,237,241,173,59,63,196,182,240,203,218,76,87,89,216,94,247,189,104,8,207,214,201,126,111,9,197,156,213,7,5,25,34,36,38,61,55,58,6,66,68,69,99,85,102,117,118,120,130,149,157,164,264,352,280,351,53,317,263,290,374,278,416,445,363,496,510,514,523,526,612,590,57,70,250,431 +BaseHP|135 +BaseAttack|85 +BaseDefense|40 +BaseSpAttack|40 +BaseSpDefense|85 +BaseSpeed|5 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It conceals food under the long fur on its body. It carts around this food stash and swallows it without chewing.\Big Eater Pokémon\105\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|36,34 +Move|20,103 +Move|4,111 +Move|1,118 +Move|12,122 +Move|9,133 +Move|44,205 +Move|28,254 +Move|33,256 +Move|17,278 +Move|52,289 +Move|1,316 +Move|49,363 +Move|41,374 +Move|57,387 +Move|25,498 +TradeValue|25 +Item|100,146 +EvolutionCondition|143,friendship,220,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/447.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/447.dat index f3e5354ed..3d81f045c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/447.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/447.dat @@ -1 +1,51 @@ -{"Name":"Riolu","Number":447,"ExperienceType":"MediumSlow","BaseExperience":57,"Type1":"Fighting","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":447,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[80,39],"HiddenAbility":158,"EggMoves":[97,44,299,418,509,238,242,197,266,136,334,67,170,327,410],"Machines":[223,174,46,92,249,237,241,173,63,182,240,203,218,231,89,216,91,189,104,8,207,214,129,9,197,156,213,210,5,14,25,34,36,66,68,69,99,102,117,118,130,157,164,264,339,280,317,263,290,411,374,409,421,371,416,445,363,398,490,496,514,523,526,612,590,70],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":70,"Def":40,"SpAtk":35,"SpDef":40,"Speed":60},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They communicate with one another using their auras. They are able to run all through the night.","Species":"Emanation Pokémon","Height":0.7,"Weight":20.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":25,"Moves":[{"Level":1,"ID":193},{"Level":2,"ID":98},{"Level":3,"ID":203},{"Level":6,"ID":68},{"Level":11,"ID":364},{"Level":15,"ID":395},{"Level":19,"ID":1},{"Level":24,"ID":103},{"Level":29,"ID":179},{"Level":47,"ID":417},{"Level":50,"ID":1}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":448,"Trigger":"LevelUp"},{"Condition":"1;2","ConditionType":"DayTime","Evolution":448,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Riolu +Number|447 +ExperienceType|2 +BaseExperience|57 +Type1|Fighting +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|447 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|80 +Ability2|39 +HiddenAbility|158 +EggMoves|97,44,299,418,509,238,242,197,266,136,334,67,170,327,410 +Machines|223,174,46,92,249,237,241,173,63,182,240,203,218,231,89,216,91,189,104,8,207,214,129,9,197,156,213,210,5,14,25,34,36,66,68,69,99,102,117,118,130,157,164,264,339,280,317,263,290,411,374,409,421,371,416,445,363,398,490,496,514,523,526,612,590,70 +BaseHP|40 +BaseAttack|70 +BaseDefense|40 +BaseSpAttack|35 +BaseSpDefense|40 +BaseSpeed|60 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They communicate with one another using their auras. They are able to run all through the night.\Emanation Pokémon\20.2\0.7\0,148,0 +Scale|0.88 +Move|1,193 +Move|1,98 +Move|1,203 +Move|6,68 +Move|11,364 +Move|15,395 +Move|19,383 +Move|24,103 +Move|29,179 +Move|47,417 +Move|50,515 +TradeValue|25 +EvolutionCondition|448,friendship,220,level +EvolutionCondition|448,daytime,1;2,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/448.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/448.dat index 01248e96d..828e43622 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/448.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/448.dat @@ -1 +1,60 @@ -{"Name":"Lucario","Number":448,"ExperienceType":"MediumSlow","BaseExperience":184,"Type1":"Fighting","Type2":"Steel","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"HumanLike","BaseEggSteps":6630,"EggPokemon":447,"Devolution":447,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[80,39],"HiddenAbility":154,"EggMoves":[97,44,299,418,509,238,242,197,266,136,334,67,170,327,410],"Machines":[223,174,46,92,249,237,241,173,63,182,240,203,218,231,89,216,91,94,247,189,104,8,207,214,129,9,197,156,213,210,5,14,25,34,36,38,66,68,69,99,102,117,118,130,157,161,164,264,352,347,339,280,317,263,290,411,374,406,409,421,371,416,444,445,399,363,398,430,468,490,496,514,523,526,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":110,"Def":70,"SpAtk":115,"SpDef":70,"Speed":90},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It's said that no foe can remain invisible to LUCARIO, since it can detect auras. Even foes it could not otherwise see.","Species":"Aura Pokémon","Height":1.2,"Weight":54,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":35,"Moves":[{"Level":1,"ID":245},{"Level":2,"ID":406},{"Level":3,"ID":370},{"Level":4,"ID":396},{"Level":5,"ID":193},{"Level":6,"ID":98},{"Level":7,"ID":197},{"Level":8,"ID":232},{"Level":9,"ID":68},{"Level":11,"ID":364},{"Level":15,"ID":612},{"Level":19,"ID":14},{"Level":24,"ID":319},{"Level":29,"ID":198},{"Level":33,"ID":1},{"Level":37,"ID":1},{"Level":42,"ID":396},{"Level":47,"ID":347},{"Level":51,"ID":505},{"Level":55,"ID":370},{"Level":60,"ID":406},{"Level":65,"ID":245}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Lucario +Number|448 +ExperienceType|2 +BaseExperience|184 +Type1|Fighting +Type2|Steel +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|6630 +EggPokemon|447 +IsGenderLess|0 +CanBreed|1 +Devolution|447 +IsMale|87.5 +Ability1|80 +Ability2|39 +HiddenAbility|154 +EggMoves|97,44,299,418,509,238,242,197,266,136,334,67,170,327,410 +Machines|223,174,46,92,249,237,241,173,63,182,240,203,218,231,89,216,91,94,247,189,104,8,207,214,129,9,197,156,213,210,5,14,25,34,36,38,66,68,69,99,102,117,118,130,157,161,164,264,352,347,339,280,317,263,290,411,374,406,409,421,371,416,444,445,399,363,398,430,468,490,496,514,523,526,612,590,70,431 +BaseHP|70 +BaseAttack|110 +BaseDefense|70 +BaseSpAttack|115 +BaseSpDefense|70 +BaseSpeed|90 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It's said that no foe can remain invisible to LUCARIO, since it can detect auras. Even foes it could not otherwise see.\Aura Pokémon\54\1.2\0,148,0 +Scale|1.08 +Move|1,245 +Move|1,406 +Move|1,370 +Move|1,396 +Move|1,193 +Move|1,98 +Move|1,197 +Move|1,232 +Move|6,68 +Move|11,364 +Move|15,612 +Move|19,14 +Move|24,319 +Move|29,198 +Move|33,501 +Move|37,382 +Move|42,396 +Move|47,347 +Move|51,505 +Move|55,370 +Move|60,406 +Move|65,245 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/448_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/448_mega.dat new file mode 100644 index 000000000..81a98dff4 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/448_mega.dat @@ -0,0 +1,60 @@ +Name|Mega Lucario +Number|448 +ExperienceType|2 +BaseExperience|184 +Type1|Fighting +Type2|Steel +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|6630 +EggPokemon|447 +IsGenderLess|0 +CanBreed|1 +Devolution|447 +IsMale|87.5 +Ability1|91 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|97,44,299,418,509,238,242,197,266,136,334,67,170,327,410 +Machines|223,174,46,92,249,237,241,173,63,182,240,203,218,231,89,216,91,94,247,189,104,8,207,214,129,9,197,156,213,210,5,14,25,34,36,38,66,68,69,99,102,117,118,130,157,161,164,264,352,347,339,280,317,263,290,411,374,406,409,421,371,416,444,445,399,363,398,430,468,490,496,514,523,526,612,590,70,431 +BaseHP|70 +BaseAttack|145 +BaseDefense|88 +BaseSpAttack|140 +BaseSpDefense|70 +BaseSpeed|112 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It's said that no foe can remain invisible to LUCARIO, since it can detect auras. Even foes it could not otherwise see.\Aura Pokémon\57.5\1.3\0,148,0 +Scale|1.08 +Move|1,245 +Move|1,406 +Move|1,370 +Move|1,396 +Move|1,193 +Move|1,98 +Move|1,197 +Move|1,232 +Move|6,68 +Move|11,364 +Move|15,612 +Move|19,14 +Move|24,319 +Move|29,198 +Move|33,501 +Move|37,382 +Move|42,396 +Move|47,347 +Move|51,505 +Move|55,370 +Move|60,406 +Move|65,245 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/449.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/449.dat index 01d5f1a68..aaba9821e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/449.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/449.dat @@ -1 +1,50 @@ -{"Name":"Hippopotas","Number":449,"ExperienceType":"Slow","BaseExperience":66,"Type1":"Ground","Type2":"Blank","CatchRate":140,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":449,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[45],"HiddenAbility":159,"EggMoves":[34,174,279,328,303,214,255,254,256,18],"Machines":[174,46,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,197,156,213,25,34,36,38,99,90,102,117,120,157,164,352,317,263,290,416,446,445,363,496,523,590,70,560],"TutorMoves":[],"BaseStats":{"HP":68,"Atk":72,"Def":78,"SpAtk":38,"SpDef":42,"Speed":32},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It shrouds itself in sand to ward off germs. It travels easily through the sands of the desert.","Species":"Hippo Pokémon","Height":0.8,"Weight":49.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":35,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":28},{"Level":7,"ID":44},{"Level":13,"ID":281},{"Level":19,"ID":36},{"Level":20,"ID":91},{"Level":25,"ID":328},{"Level":31,"ID":242},{"Level":37,"ID":89},{"Level":44,"ID":38},{"Level":50,"ID":90}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Level","Evolution":450,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Hippopotas +Number|449 +ExperienceType|3 +BaseExperience|66 +Type1|Ground +Type2| +CatchRate|140 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|449 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|45 +Ability2|Nothing +HiddenAbility|159 +EggMoves|34,174,279,328,303,214,255,254,256,18 +Machines|174,46,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,197,156,213,25,34,36,38,99,90,102,117,120,157,164,352,317,263,290,416,446,445,363,496,523,590,70,560 +BaseHP|68 +BaseAttack|72 +BaseDefense|78 +BaseSpAttack|38 +BaseSpDefense|42 +BaseSpeed|32 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It shrouds itself in sand to ward off germs. It travels easily through the sands of the desert.\Hippo Pokémon\49.5\0.8\0,148,0 +Scale|0.92 +Move|1,33 +Move|1,28 +Move|7,44 +Move|13,281 +Move|19,36 +Move|19,91 +Move|25,328 +Move|31,242 +Move|37,89 +Move|44,38 +Move|50,90 +TradeValue|35 +EvolutionCondition|450,level,34,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/45.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/45.dat index fd9b768c5..2da2c9f8a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/45.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/45.dat @@ -1 +1,43 @@ -{"Name":"Vileplume","Number":45,"ExperienceType":"MediumSlow","BaseExperience":216,"Type1":"Grass","Type2":"Poison","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":43,"Devolution":44,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34],"HiddenAbility":27,"EggMoves":[495,204,175,275,75,290,235,298,321,14],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,14,34,36,99,72,102,117,164,331,263,290,412,374,409,416,445,363,447,474,496,611,267,605,590,15,148],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":80,"Def":85,"SpAtk":110,"SpDef":90,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has the world's largest petals. With every step, the petals shake out heavy clouds of toxic pollen.","Species":"Flower Pokémon","Height":1.2,"Weight":18.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":45,"Moves":[{"Level":1,"ID":72},{"Level":2,"ID":77},{"Level":3,"ID":78},{"Level":4,"ID":312},{"Level":50,"ID":572},{"Level":53,"ID":80},{"Level":65,"ID":76}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Vileplume +Number|45 +ExperienceType|2 +BaseExperience|216 +Type1|Grass +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|43 +IsGenderLess|0 +IsMale|50 +Ability1|34 +Ability2|Nothing +HiddenAbility|27 +EggMoves|495,204,175,275,75,290,235,298,321,14 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,14,34,36,99,72,102,117,164,331,263,290,412,374,409,416,445,363,447,474,496,611,267,605,590,15,148 +BaseHP|75 +BaseAttack|80 +BaseDefense|85 +BaseSpAttack|110 +BaseSpDefense|90 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has the world's largest petals. With every step, the petals shake out heavy clouds of toxic pollen.\Flower Pokémon\18.6\1.2\0,148,0 +Scale|1.08 +Move|1,72 +Move|1,77 +Move|1,78 +Move|1,312 +Move|50,572 +Move|53,80 +Move|65,76 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/450.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/450.dat index 1e0af3467..9800c9d20 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/450.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/450.dat @@ -1 +1,54 @@ -{"Name":"Hippowdon","Number":450,"ExperienceType":"Slow","BaseExperience":184,"Type1":"Ground","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":7905,"EggPokemon":449,"Devolution":449,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[45],"HiddenAbility":159,"EggMoves":[34,174,279,328,303,214,255,254,256,18],"Machines":[174,46,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,197,156,213,25,34,36,38,99,90,102,117,120,157,164,352,317,263,290,416,444,446,445,363,496,523,590,70,560],"TutorMoves":[],"BaseStats":{"HP":108,"Atk":112,"Def":118,"SpAtk":68,"SpDef":72,"Speed":47},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It brandishes its gaping mouth in a display of fearsome strength. It raises vast quantities of sand while attacking.","Species":"Heavyweight Pokémon","Height":2,"Weight":300,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":65,"Moves":[{"Level":1,"ID":423},{"Level":2,"ID":424},{"Level":3,"ID":422},{"Level":4,"ID":33},{"Level":5,"ID":28},{"Level":6,"ID":44},{"Level":7,"ID":281},{"Level":8,"ID":44},{"Level":13,"ID":281},{"Level":19,"ID":36},{"Level":20,"ID":91},{"Level":25,"ID":328},{"Level":31,"ID":242},{"Level":40,"ID":89},{"Level":50,"ID":38},{"Level":60,"ID":90}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Hippowdon +Number|450 +ExperienceType|3 +BaseExperience|184 +Type1|Ground +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|7905 +EggPokemon|449 +IsGenderLess|0 +CanBreed|1 +Devolution|449 +IsMale|50 +Ability1|45 +Ability2|Nothing +HiddenAbility|159 +EggMoves|34,174,279,328,303,214,255,254,256,18 +Machines|174,46,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,197,156,213,25,34,36,38,99,90,102,117,120,157,164,352,317,263,290,416,444,446,445,363,496,523,590,70,560 +BaseHP|108 +BaseAttack|112 +BaseDefense|118 +BaseSpAttack|68 +BaseSpDefense|72 +BaseSpeed|47 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It brandishes its gaping mouth in a display of fearsome strength. It raises vast quantities of sand while attacking.\Heavyweight Pokémon\300\2\0,148,0 +Scale|1.4 +Move|1,423 +Move|1,424 +Move|1,422 +Move|1,33 +Move|1,28 +Move|1,44 +Move|1,281 +Move|7,44 +Move|13,281 +Move|19,36 +Move|19,91 +Move|25,328 +Move|31,242 +Move|40,89 +Move|50,38 +Move|60,90 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/451.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/451.dat index 4d6e9a501..ed662344e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/451.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/451.dat @@ -1 +1,57 @@ -{"Name":"Skorupi","Number":451,"ExperienceType":"Slow","BaseExperience":66,"Type1":"Poison","Type2":"Bug","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"Water3","BaseEggSteps":5355,"EggPokemon":451,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[4,97],"HiddenAbility":51,"EggMoves":[97,109,185,231,400,342,228,103,163,41,18],"Machines":[174,92,249,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,188,197,156,213,168,210,171,14,25,36,99,72,102,117,164,269,280,317,332,259,263,290,206,374,371,416,445,399,404,363,398,468,474,496,522,611,590,15,70,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":50,"Def":90,"SpAtk":30,"SpDef":55,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It burrows under the sand to lie in wait for prey. Its tail claws can inject its prey with a savage poison.","Species":"Scorpion Pokémon","Height":0.8,"Weight":12,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":30,"Moves":[{"Level":1,"ID":44},{"Level":2,"ID":40},{"Level":3,"ID":43},{"Level":5,"ID":282},{"Level":9,"ID":42},{"Level":13,"ID":367},{"Level":16,"ID":228},{"Level":20,"ID":450},{"Level":23,"ID":305},{"Level":27,"ID":474},{"Level":30,"ID":468},{"Level":34,"ID":390},{"Level":38,"ID":400},{"Level":41,"ID":184},{"Level":45,"ID":242},{"Level":47,"ID":1},{"Level":49,"ID":440}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":452,"Trigger":"LevelUp"}],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Skorupi +Number|451 +ExperienceType|3 +BaseExperience|66 +Type1|Poison +Type2|Bug +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|Water3 +BaseEggSteps|5355 +EggPokemon|451 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|4 +Ability2|97 +HiddenAbility|51 +EggMoves|97,109,185,231,400,342,228,103,163,41,18 +Machines|174,92,249,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,188,197,156,213,168,210,171,14,25,36,99,72,102,117,164,269,280,317,332,259,263,290,206,374,371,416,445,399,404,363,398,468,474,496,522,611,590,15,70,148 +BaseHP|40 +BaseAttack|50 +BaseDefense|90 +BaseSpAttack|30 +BaseSpDefense|55 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It burrows under the sand to lie in wait for prey. Its tail claws can inject its prey with a savage poison.\Scorpion Pokémon\12\0.8\0,148,0 +Scale|0.92 +Move|1,44 +Move|1,40 +Move|1,43 +Move|5,282 +Move|9,42 +Move|13,367 +Move|16,228 +Move|20,450 +Move|23,305 +Move|27,474 +Move|30,468 +Move|34,390 +Move|38,400 +Move|41,184 +Move|45,242 +Move|47,565 +Move|49,440 +TradeValue|30 +Item|5,81 +EvolutionCondition|452,Level,40,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/452.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/452.dat index d493320ab..b61f6897e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/452.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/452.dat @@ -1 +1,60 @@ -{"Name":"Drapion","Number":452,"ExperienceType":"Slow","BaseExperience":175,"Type1":"Poison","Type2":"Dark","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"Water3","BaseEggSteps":5355,"EggPokemon":451,"Devolution":451,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[4,97],"HiddenAbility":51,"EggMoves":[97,109,185,231,400,342,228,103,163,41,18],"Machines":[174,46,92,249,237,241,173,63,182,240,203,218,231,89,216,91,247,189,104,207,214,188,197,156,213,168,210,171,14,25,32,34,36,38,99,72,82,102,117,157,164,269,280,317,332,259,263,290,206,374,371,416,445,399,404,363,398,468,474,496,514,522,523,555,611,590,15,70,148,431,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":90,"Def":110,"SpAtk":60,"SpDef":75,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It attacks people and Pokémon that cross the desert. This has only furthered its bad reputation.","Species":"Ogre Scorp Pokémon","Height":1.3,"Weight":61.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":50,"Moves":[{"Level":1,"ID":422},{"Level":2,"ID":423},{"Level":3,"ID":424},{"Level":4,"ID":44},{"Level":5,"ID":40},{"Level":6,"ID":43},{"Level":7,"ID":282},{"Level":8,"ID":282},{"Level":9,"ID":42},{"Level":13,"ID":367},{"Level":16,"ID":228},{"Level":20,"ID":450},{"Level":23,"ID":305},{"Level":27,"ID":474},{"Level":30,"ID":468},{"Level":34,"ID":390},{"Level":38,"ID":400},{"Level":43,"ID":184},{"Level":49,"ID":242},{"Level":53,"ID":1},{"Level":57,"ID":440}],"EvolutionConditions":[],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Drapion +Number|452 +ExperienceType|3 +BaseExperience|175 +Type1|Poison +Type2|Dark +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|Water3 +BaseEggSteps|5355 +EggPokemon|451 +IsGenderLess|0 +CanBreed|1 +Devolution|451 +IsMale|50 +Ability1|4 +Ability2|97 +HiddenAbility|51 +EggMoves|97,109,185,231,400,342,228,103,163,41,18 +Machines|174,46,92,249,237,241,173,63,182,240,203,218,231,89,216,91,247,189,104,207,214,188,197,156,213,168,210,171,14,25,32,34,36,38,99,72,82,102,117,157,164,269,280,317,332,259,263,290,206,374,371,416,445,399,404,363,398,468,474,496,514,522,523,555,611,590,15,70,148,431,560 +BaseHP|70 +BaseAttack|90 +BaseDefense|110 +BaseSpAttack|60 +BaseSpDefense|75 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It attacks people and Pokémon that cross the desert. This has only furthered its bad reputation.\Ogre Scorp Pokémon\61.5\1.3\0,148,0 +Scale|1.12 +Move|1,422 +Move|1,423 +Move|1,424 +Move|1,44 +Move|1,40 +Move|1,43 +Move|1,282 +Move|5,282 +Move|9,42 +Move|13,367 +Move|16,228 +Move|20,450 +Move|23,305 +Move|27,474 +Move|30,468 +Move|34,390 +Move|38,400 +Move|43,184 +Move|49,242 +Move|53,565 +Move|57,440 +TradeValue|50 +Item|5,81 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/453.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/453.dat index 906d2ccfe..a78b38deb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/453.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/453.dat @@ -1 +1,56 @@ -{"Name":"Croagunk","Number":453,"ExperienceType":"MediumFast","BaseExperience":60,"Type1":"Poison","Type2":"Fighting","CatchRate":140,"BaseFriendship":100,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":453,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[107,87],"HiddenAbility":143,"EggMoves":[367,418,68,238,409,223,252,364,29,382,96,501,265,410,358],"Machines":[223,174,92,249,237,241,173,63,196,182,240,203,218,89,216,91,247,189,104,8,207,214,188,9,197,156,213,168,210,171,5,25,34,36,66,68,69,99,72,102,117,157,164,264,339,269,280,317,259,263,290,289,411,374,373,371,416,445,399,404,363,398,474,482,490,496,514,523,526,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":48,"Atk":61,"Def":40,"SpAtk":61,"SpDef":40,"Speed":50},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Fluid squeezed from its finger poisonous, is a significant ingredient in remedies for lower-back pain.","Species":"Toxic Mouth Pokémon","Height":0.7,"Weight":23,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":35,"Moves":[{"Level":1,"ID":310},{"Level":3,"ID":189},{"Level":8,"ID":40},{"Level":10,"ID":269},{"Level":15,"ID":228},{"Level":17,"ID":185},{"Level":22,"ID":279},{"Level":24,"ID":207},{"Level":29,"ID":426},{"Level":31,"ID":389},{"Level":36,"ID":474},{"Level":38,"ID":417},{"Level":43,"ID":398},{"Level":45,"ID":188},{"Level":47,"ID":1},{"Level":50,"ID":260}],"EvolutionConditions":[{"Condition":"37","ConditionType":"Level","Evolution":454,"Trigger":"LevelUp"}],"Items":[{"Id":182,"Chance":5}]} \ No newline at end of file +Name|Croagunk +Number|453 +ExperienceType|1 +BaseExperience|60 +Type1|Poison +Type2|Fighting +CatchRate|140 +BaseFriendship|100 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|453 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|107 +Ability2|87 +HiddenAbility|143 +EggMoves|367,418,68,238,409,223,252,364,29,382,96,501,265,410,358 +Machines|223,174,92,249,237,241,173,63,196,182,240,203,218,89,216,91,247,189,104,8,207,214,188,9,197,156,213,168,210,171,5,25,34,36,66,68,69,99,72,102,117,157,164,264,339,269,280,317,259,263,290,289,411,374,373,371,416,445,399,404,363,398,474,482,490,496,514,523,526,612,590,70,431 +BaseHP|48 +BaseAttack|61 +BaseDefense|40 +BaseSpAttack|61 +BaseSpDefense|40 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Fluid squeezed from its finger poisonous, is a significant ingredient in remedies for lower-back pain.\Toxic Mouth Pokémon\23\0.7\0,148,0 +Scale|0.88 +Move|1,310 +Move|3,189 +Move|8,40 +Move|10,269 +Move|15,228 +Move|17,185 +Move|22,279 +Move|24,207 +Move|29,426 +Move|31,389 +Move|36,474 +Move|38,417 +Move|43,398 +Move|45,188 +Move|47,562 +Move|50,260 +TradeValue|35 +Item|5,182 +EvolutionCondition|454,level,37,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/454.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/454.dat index 9d5bd40fa..d2d8ef514 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/454.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/454.dat @@ -1 +1,55 @@ -{"Name":"Toxicroak","Number":454,"ExperienceType":"MediumFast","BaseExperience":172,"Type1":"Poison","Type2":"Fighting","CatchRate":75,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":453,"Devolution":453,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[107,87],"HiddenAbility":143,"EggMoves":[367,418,68,238,409,223,252,364,29,382,96,501,265,410,358],"Machines":[14,15,63,70,89,91,92,104,156,157,164,168,182,188,207,213,216,218,237,240,241,247,249,259,263,269,280,317,339,371,373,374,398,404,411,416,444,474,482,490,496,514,523,526],"TutorMoves":[],"BaseStats":{"HP":83,"Atk":106,"Def":65,"SpAtk":86,"SpDef":65,"Speed":85},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Swaying and dodging the attacks of its foes, it weaves its flexible body in close, then lunges out with its poisonous claws.","Species":"Toxic Mouth Pokémon","Height":1.3,"Weight":44.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":55,"Moves":[{"Level":1,"ID":40},{"Level":2,"ID":189},{"Level":3,"ID":189},{"Level":4,"ID":310},{"Level":8,"ID":40},{"Level":10,"ID":269},{"Level":15,"ID":228},{"Level":17,"ID":185},{"Level":22,"ID":279},{"Level":24,"ID":207},{"Level":29,"ID":426},{"Level":31,"ID":389},{"Level":36,"ID":474},{"Level":41,"ID":417},{"Level":49,"ID":398},{"Level":54,"ID":188},{"Level":62,"ID":260}],"EvolutionConditions":[],"Items":[{"Id":182,"Chance":5}]} \ No newline at end of file +Name|Toxicroak +Number|454 +ExperienceType|1 +BaseExperience|172 +Type1|Poison +Type2|Fighting +CatchRate|75 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|453 +IsGenderLess|0 +CanBreed|1 +IsMale|50 +Ability1|107 +Ability2|87 +HiddenAbility|143 +EggMoves|367,418,68,238,409,223,252,364,29,382,96,501,265,410,358 +Machines|14,15,63,70,89,91,92,104,156,157,164,168,182,188,207,213,216,218,237,240,241,247,249,259,263,269,280,317,339,371,373,374,398,404,411,416,444,474,482,490,496,514,523,526 +BaseHP|83 +BaseAttack|106 +BaseDefense|65 +BaseSpAttack|86 +BaseSpDefense|65 +BaseSpeed|85 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Swaying and dodging the attacks of its foes, it weaves its flexible body in close, then lunges out with its poisonous claws.\Toxic Mouth Pokémon\44.4\1.3\0,148,0 +Scale|1.12 +Move|1,40 +Move|8,40 +Move|17,185 +Move|54,188 +Move|1,189 +Move|3,189 +Move|24,207 +Move|15,228 +Move|62,260 +Move|10,269 +Move|22,279 +Move|1,310 +Move|31,389 +Move|49,398 +Move|41,417 +Move|29,426 +Move|36,474 +TradeValue|55 +Item|5,182 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/455.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/455.dat index 3bd08a8ad..2295d34cf 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/455.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/455.dat @@ -1 +1,52 @@ -{"Name":"Carnivine","Number":455,"ExperienceType":"Slow","BaseExperience":159,"Type1":"Grass","Type2":"Blank","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":455,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[202,320,73,345,476,75,21,79,78,235,388],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,188,197,156,213,168,210,14,36,68,99,72,102,117,164,331,263,290,412,374,371,416,445,363,447,496,611,267,590,15,148],"TutorMoves":[],"BaseStats":{"HP":74,"Atk":100,"Def":72,"SpAtk":90,"SpDef":72,"Speed":46},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It walks around on its tentacles in search of a tree branch where it can dangle down and ambush prey.","Species":"Bug Catcher Pokémon","Height":1.4,"Weight":27,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":40,"Moves":[{"Level":1,"ID":20},{"Level":2,"ID":74},{"Level":7,"ID":44},{"Level":11,"ID":22},{"Level":17,"ID":230},{"Level":21,"ID":275},{"Level":27,"ID":185},{"Level":31,"ID":536},{"Level":37,"ID":254},{"Level":38,"ID":255},{"Level":39,"ID":256},{"Level":41,"ID":242},{"Level":47,"ID":378},{"Level":50,"ID":438}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Carnivine +Number|455 +ExperienceType|3 +BaseExperience|159 +Type1|Grass +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|455 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|202,320,73,345,476,75,21,79,78,235,388 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,188,197,156,213,168,210,14,36,68,99,72,102,117,164,331,263,290,412,374,371,416,445,363,447,496,611,267,590,15,148 +BaseHP|74 +BaseAttack|100 +BaseDefense|72 +BaseSpAttack|90 +BaseSpDefense|72 +BaseSpeed|46 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It walks around on its tentacles in search of a tree branch where it can dangle down and ambush prey.\Bug Catcher Pokémon\27\1.4\0,148,0 +Scale|1.16 +Move|1,20 +Move|1,74 +Move|7,44 +Move|11,22 +Move|17,230 +Move|21,275 +Move|27,185 +Move|31,536 +Move|37,254 +Move|37,255 +Move|37,256 +Move|41,242 +Move|47,378 +Move|50,438 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/456.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/456.dat index ca5e9fb79..13d756007 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/456.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/456.dat @@ -1 +1,54 @@ -{"Name":"Finneon","Number":456,"ExperienceType":"MediumFast","BaseExperience":66,"Type1":"Water","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":456,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,114],"HiddenAbility":41,"EggMoves":[97,401,62,362,204,175,60,324,150,186,321],"Machines":[174,92,244,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,61,55,58,99,102,117,164,352,263,290,362,318,416,432,445,363,496,503,267,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":49,"Atk":49,"Def":56,"SpAtk":49,"SpDef":61,"Speed":66},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Swimming and fluttering its two tail fins it looks like a BEAUTIFLY. At night, the patterns on its tail fins softly shine.","Species":"Wing Fish Pokémon","Height":0.4,"Weight":7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":6,"ID":55},{"Level":10,"ID":213},{"Level":13,"ID":240},{"Level":17,"ID":16},{"Level":22,"ID":352},{"Level":26,"ID":445},{"Level":29,"ID":219},{"Level":33,"ID":392},{"Level":38,"ID":250},{"Level":42,"ID":369},{"Level":45,"ID":340},{"Level":49,"ID":318},{"Level":54,"ID":1}],"EvolutionConditions":[{"Condition":"31","ConditionType":"Level","Evolution":457,"Trigger":"LevelUp"}],"Items":[{"Id":2038,"Chance":5}]} \ No newline at end of file +Name|Finneon +Number|456 +ExperienceType|1 +BaseExperience|66 +Type1|Water +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|456 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|33 +Ability2|114 +HiddenAbility|41 +EggMoves|97,401,62,362,204,175,60,324,150,186,321 +Machines|174,92,244,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,61,55,58,99,102,117,164,352,263,290,362,318,416,432,445,363,496,503,267,590,57,250,127,291 +BaseHP|49 +BaseAttack|49 +BaseDefense|56 +BaseSpAttack|49 +BaseSpDefense|61 +BaseSpeed|66 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Swimming and fluttering its two tail fins it looks like a BEAUTIFLY. At night, the patterns on its tail fins softly shine.\Wing Fish Pokémon\7\0.4\0,148,0 +Scale|0.7 +Move|1,1 +Move|6,55 +Move|10,213 +Move|13,240 +Move|17,16 +Move|22,352 +Move|26,445 +Move|29,219 +Move|33,392 +Move|38,250 +Move|42,369 +Move|45,340 +Move|49,318 +Move|54,487 +TradeValue|25 +Item|5,2038 +EvolutionCondition|457,Level,31,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/457.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/457.dat index a1021a0ff..2bc8091d5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/457.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/457.dat @@ -1 +1,57 @@ -{"Name":"Lumineon","Number":457,"ExperienceType":"MediumFast","BaseExperience":161,"Type1":"Water","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":456,"Devolution":456,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,114],"HiddenAbility":41,"EggMoves":[97,401,62,362,204,175,60,324,150,186,321],"Machines":[174,92,244,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,36,61,55,58,99,102,117,164,352,263,290,362,318,416,432,445,363,496,503,267,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":69,"Atk":69,"Def":76,"SpAtk":69,"SpDef":86,"Speed":91},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"LUMINEON swimming in the darkness of the deep sea look like stars shining in the night sky.","Species":"Neon Pokémon","Height":1.2,"Weight":24,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":16},{"Level":3,"ID":1},{"Level":4,"ID":55},{"Level":5,"ID":213},{"Level":6,"ID":55},{"Level":10,"ID":213},{"Level":13,"ID":240},{"Level":17,"ID":16},{"Level":22,"ID":352},{"Level":29,"ID":445},{"Level":30,"ID":219},{"Level":35,"ID":392},{"Level":42,"ID":250},{"Level":48,"ID":369},{"Level":53,"ID":340},{"Level":59,"ID":318},{"Level":66,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":2038,"Chance":5}]} \ No newline at end of file +Name|Lumineon +Number|457 +ExperienceType|1 +BaseExperience|161 +Type1|Water +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|456 +IsGenderLess|0 +CanBreed|1 +Devolution|456 +IsMale|50 +Ability1|33 +Ability2|114 +HiddenAbility|41 +EggMoves|97,401,62,362,204,175,60,324,150,186,321 +Machines|174,92,244,237,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,36,61,55,58,99,102,117,164,352,263,290,362,318,416,432,445,363,496,503,267,590,57,250,127,291 +BaseHP|69 +BaseAttack|69 +BaseDefense|76 +BaseSpAttack|69 +BaseSpDefense|86 +BaseSpeed|91 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|LUMINEON swimming in the darkness of the deep sea look like stars shining in the night sky.\Neon Pokémon\24\1.2\0,148,0 +Scale|1.08 +Move|1,487 +Move|1,16 +Move|1,1 +Move|1,55 +Move|1,213 +Move|6,55 +Move|10,213 +Move|13,240 +Move|17,16 +Move|22,352 +Move|29,445 +Move|29,219 +Move|35,392 +Move|42,250 +Move|48,369 +Move|53,340 +Move|59,318 +Move|66,487 +TradeValue|50 +Item|5,2038 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/458.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/458.dat index fa4eb220e..a872a6e6f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/458.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/458.dat @@ -1 +1,54 @@ -{"Name":"Mantyke","Number":458,"ExperienceType":"Slow","BaseExperience":69,"Type1":"Water","Type2":"Flying","CatchRate":25,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":458,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,11],"HiddenAbility":41,"EggMoves":[133,114,56,243,300,324,21,150,366,239,346,469,157],"Machines":[29,174,92,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,129,197,156,213,36,61,55,58,99,102,117,157,164,352,258,332,263,290,416,445,363,496,503,512,523,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":20,"Def":50,"SpAtk":60,"SpDef":120,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it swims close to the surface of the ocean, people aboard ships are able to observe the pattern on its back.","Species":"Kite Pokémon","Height":1,"Weight":65,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":20,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":145},{"Level":3,"ID":48},{"Level":7,"ID":61},{"Level":11,"ID":109},{"Level":14,"ID":17},{"Level":16,"ID":29},{"Level":19,"ID":352},{"Level":23,"ID":1},{"Level":27,"ID":36},{"Level":32,"ID":97},{"Level":36,"ID":403},{"Level":39,"ID":392},{"Level":46,"ID":340},{"Level":49,"ID":56}],"EvolutionConditions":[{"Condition":"223","ConditionType":"InParty","Evolution":226,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Mantyke +Number|458 +ExperienceType|3 +BaseExperience|69 +Type1|Water +Type2|Flying +CatchRate|25 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|458 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|33 +Ability2|11 +HiddenAbility|41 +EggMoves|133,114,56,243,300,324,21,150,366,239,346,469,157 +Machines|29,174,92,237,173,59,63,196,182,240,203,218,89,216,189,104,207,214,129,197,156,213,36,61,55,58,99,102,117,157,164,352,258,332,263,290,416,445,363,496,503,512,523,590,57,250,127,291 +BaseHP|45 +BaseAttack|20 +BaseDefense|50 +BaseSpAttack|60 +BaseSpDefense|120 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it swims close to the surface of the ocean, people aboard ships are able to observe the pattern on its back.\Kite Pokémon\65\1\0,148,0 +Scale|1 +Move|1,33 +Move|1,145 +Move|3,48 +Move|7,61 +Move|11,109 +Move|14,17 +Move|16,29 +Move|19,352 +Move|23,469 +Move|27,36 +Move|32,97 +Move|36,403 +Move|39,392 +Move|46,340 +Move|49,56 +TradeValue|20 +EvolutionCondition|226,inparty,223,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/459.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/459.dat index 900e31bb1..855dceffa 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/459.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/459.dat @@ -1 +1,52 @@ -{"Name":"Snover","Number":459,"ExperienceType":"Slow","BaseExperience":67,"Type1":"Grass","Type2":"Ice","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":459,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[117],"HiddenAbility":43,"EggMoves":[419,331,38,74,73,345,363,402,130,23],"Machines":[174,92,237,230,173,59,63,196,182,202,203,218,76,231,216,247,189,104,8,207,214,197,156,213,14,36,58,66,68,69,99,72,102,117,164,352,258,331,113,219,263,290,412,416,419,445,363,447,496,524,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":62,"Def":50,"SpAtk":62,"SpDef":60,"Speed":40},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"During cold seasons mountain's lower reaches. It returns to the snow-covered summit in the spring.","Species":"Frost Tree Pokémon","Height":1,"Weight":50.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":35,"Moves":[{"Level":1,"ID":181},{"Level":2,"ID":43},{"Level":5,"ID":75},{"Level":9,"ID":196},{"Level":13,"ID":320},{"Level":17,"ID":207},{"Level":21,"ID":54},{"Level":26,"ID":420},{"Level":31,"ID":275},{"Level":36,"ID":452},{"Level":41,"ID":59},{"Level":46,"ID":329}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":460,"Trigger":"LevelUp"}],"Items":[{"Id":107,"Chance":5}]} \ No newline at end of file +Name|Snover +Number|459 +ExperienceType|3 +BaseExperience|67 +Type1|Grass +Type2|Ice +CatchRate|120 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|459 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|117 +Ability2|Nothing +HiddenAbility|43 +EggMoves|419,331,38,74,73,345,363,402,130,23 +Machines|174,92,237,230,173,59,63,196,182,202,203,218,76,231,216,247,189,104,8,207,214,197,156,213,14,36,58,66,68,69,99,72,102,117,164,352,258,331,113,219,263,290,412,416,419,445,363,447,496,524,590,148 +BaseHP|60 +BaseAttack|62 +BaseDefense|50 +BaseSpAttack|62 +BaseSpDefense|60 +BaseSpeed|40 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|During cold seasons mountain's lower reaches. It returns to the snow-covered summit in the spring.\Frost Tree Pokémon\50.5\1\0,148,0 +Scale|1 +Move|1,181 +Move|1,43 +Move|5,75 +Move|9,196 +Move|13,320 +Move|17,207 +Move|21,54 +Move|26,420 +Move|31,275 +Move|36,452 +Move|41,59 +Move|46,329 +TradeValue|35 +Item|5,107 +EvolutionCondition|460,level,40,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/46.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/46.dat index 793c70247..21156b40f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/46.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/46.dat @@ -1 +1,52 @@ -{"Name":"Paras","Number":46,"ExperienceType":"MediumFast","BaseExperience":57,"Type1":"Bug","Type2":"Grass","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":46,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[27,87],"HiddenAbility":6,"EggMoves":[97,450,68,440,203,565,206,73,113,175,232,363,60,228,563,103,230,469],"Machines":[174,92,249,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,168,210,34,36,68,99,72,102,117,130,164,331,280,332,263,290,412,206,416,445,404,363,447,468,474,496,522,267,590,15,148],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":70,"Def":55,"SpAtk":45,"SpDef":55,"Speed":25},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is doused with mushroom spores when it is born. As its body grows, mushrooms sprout from its back.","Species":"Mushroom Pokémon","Height":0.3,"Weight":5.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":10},{"Level":6,"ID":77},{"Level":7,"ID":78},{"Level":11,"ID":141},{"Level":17,"ID":210},{"Level":22,"ID":147},{"Level":27,"ID":163},{"Level":33,"ID":74},{"Level":38,"ID":202},{"Level":43,"ID":312},{"Level":49,"ID":1},{"Level":54,"ID":404}],"EvolutionConditions":[{"Condition":"24","ConditionType":"Level","Evolution":47,"Trigger":"LevelUp"}],"Items":[{"Id":86,"Chance":50},{"Id":87,"Chance":5},{"Id":153,"Chance":1}]} \ No newline at end of file +Name|Paras +Number|46 +ExperienceType|1 +BaseExperience|57 +Type1|Bug +Type2|Grass +CatchRate|190 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|46 +IsGenderLess|0 +IsMale|50 +Ability1|27 +Ability2|87 +HiddenAbility|6 +EggMoves|97,450,68,440,203,565,206,73,113,175,232,363,60,228,563,103,230,469 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,168,210,34,36,68,99,72,102,117,130,164,331,280,332,263,290,412,206,416,445,404,363,447,468,474,496,522,267,590,15,148 +BaseHP|35 +BaseAttack|70 +BaseDefense|55 +BaseSpAttack|45 +BaseSpDefense|55 +BaseSpeed|25 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is doused with mushroom spores when it is born. As its body grows, mushrooms sprout from its back.\Mushroom Pokémon\5.4\0.3\0,148,0 +Scale|0.7 +Move|1,10 +Move|6,77 +Move|6,78 +Move|11,141 +Move|17,210 +Move|22,147 +Move|27,163 +Move|33,74 +Move|38,202 +Move|43,312 +Move|49,476 +Move|54,404 +EvolutionCondition|47,Level,24,Level +Item|50,86 +Item|5,87 +Item|1,153 +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/460.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/460.dat index 887448991..18e64991a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/460.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/460.dat @@ -1 +1,51 @@ -{"Name":"Abomasnow","Number":460,"ExperienceType":"Slow","BaseExperience":173,"Type1":"Grass","Type2":"Ice","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":459,"Devolution":459,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[117],"HiddenAbility":43,"EggMoves":[],"Machines":[14,58,59,63,70,76,89,92,104,113,148,156,157,164,182,202,203,207,213,214,216,218,219,231,237,240,247,249,258,263,264,280,290,317,331,352,363,374,411,412,416,419,431,445,447,496,523,524],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":92,"Def":75,"SpAtk":92,"SpDef":85,"Speed":60},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives a quiet life on mountains that are perpetually covered in snow. It hides itself by whipping up blizzards.","Species":"Frost Tree Pokémon","Height":2.2,"Weight":135.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.48,"Y":1.48,"Z":1.48},"TradeValue":55,"Moves":[{"Level":1,"ID":8},{"Level":2,"ID":43},{"Level":3,"ID":75},{"Level":4,"ID":181},{"Level":5,"ID":75},{"Level":6,"ID":196},{"Level":9,"ID":196},{"Level":13,"ID":320},{"Level":17,"ID":207},{"Level":21,"ID":54},{"Level":26,"ID":420},{"Level":31,"ID":275},{"Level":36,"ID":452},{"Level":47,"ID":59},{"Level":58,"ID":329}],"EvolutionConditions":[],"Items":[{"Id":107,"Chance":5}]} \ No newline at end of file +Name|Abomasnow +Number|460 +ExperienceType|3 +BaseExperience|173 +Type1|Grass +Type2|Ice +CatchRate|60 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +EggPokemon|459 +BaseEggSteps|5355 +IsGenderLess|0 +IsMale|50 +Ability1|117 +Ability2|Nothing +HiddenAbility|43 +Machines|14,58,59,63,70,76,89,92,104,113,148,156,157,164,182,202,203,207,213,214,216,218,219,231,237,240,247,249,258,263,264,280,290,317,331,352,363,374,411,412,416,419,431,445,447,496,523,524 +BaseHP|90 +BaseAttack|92 +BaseDefense|75 +BaseSpAttack|92 +BaseSpDefense|85 +BaseSpeed|60 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives a quiet life on mountains that are perpetually covered in snow. It hides itself by whipping up blizzards.\Frost Tree Pokémon\135.5\2.2\0,148,0 +Scale|1.48 +Move|1,8 +Move|1,43 +Move|21,54 +Move|47,59 +Move|1,75 +Move|5,75 +Move|1,181 +Move|1,196 +Move|9,196 +Move|17,207 +Move|31,275 +Move|13,320 +Move|58,329 +Move|26,420 +Move|36,452 +TradeValue|55 +Item|5,107 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/460_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/460_mega.dat new file mode 100644 index 000000000..0d4307079 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/460_mega.dat @@ -0,0 +1,51 @@ +Name|Mega Abomasnow +Number|460 +ExperienceType|3 +BaseExperience|173 +Type1|Grass +Type2|Ice +CatchRate|60 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Grass +EggPokemon|459 +BaseEggSteps|5355 +IsGenderLess|0 +IsMale|50 +Ability1|117 +Ability2|Nothing +HiddenAbility|Nothing +Machines|14,58,59,63,70,76,89,92,104,113,148,156,157,164,182,202,203,207,213,214,216,218,219,231,237,240,247,249,258,263,264,280,290,317,331,352,363,374,411,412,416,419,431,445,447,496,523,524 +BaseHP|90 +BaseAttack|132 +BaseDefense|105 +BaseSpAttack|132 +BaseSpDefense|105 +BaseSpeed|30 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives a quiet life on mountains that are perpetually covered in snow. It hides itself by whipping up blizzards.\Frost Tree Pokémon\185\2.7\0,148,0 +Scale|1.48 +Move|1,8 +Move|1,43 +Move|21,54 +Move|47,59 +Move|1,75 +Move|5,75 +Move|1,181 +Move|1,196 +Move|9,196 +Move|17,207 +Move|31,275 +Move|13,320 +Move|58,329 +Move|26,420 +Move|36,452 +TradeValue|55 +Item|5,107 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/461.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/461.dat index 68c7dd462..4fbab62da 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/461.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/461.dat @@ -1 +1,60 @@ -{"Name":"Weavile","Number":461,"ExperienceType":"MediumSlow","BaseExperience":179,"Type1":"Dark","Type2":"Ice","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":215,"Devolution":215,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[46],"HiddenAbility":124,"EggMoves":[223,29,174,92,249,244,237,241,173,59,63,196,182,240,203,218,231,216,91,247,189,104,8,207,214,129,111,138,197,156,213,168,210,171,14,36,58,6,68,99,102,115,117,130,164,264,347,258,269,280,332,259,263,290,289,206,374,373,421,371,416,419,445,399,404,363,398,468,490,496,514,555,612,590,15,57,70,250],"Machines":[223,174,92,249,244,237,241,173,59,63,196,182,203,218,231,216,91,247,189,104,8,207,214,129,138,197,156,213,168,210,5,14,36,58,6,68,99,102,115,117,130,164,264,347,258,269,280,332,259,263,290,289,411,206,374,373,421,371,416,419,445,399,363,398,468,490,496,555,612,590,15,57,70,250],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":120,"Def":65,"SpAtk":45,"SpDef":85,"Speed":125},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives in snowy regions. It carves patterns in trees with its claws as a signal to others.","Species":"Sharp Claw Pokémon","Height":1.1,"Weight":34,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":50,"Moves":[{"Level":1,"ID":373},{"Level":2,"ID":279},{"Level":3,"ID":372},{"Level":4,"ID":10},{"Level":5,"ID":43},{"Level":6,"ID":269},{"Level":7,"ID":98},{"Level":8,"ID":98},{"Level":10,"ID":185},{"Level":14,"ID":196},{"Level":16,"ID":154},{"Level":20,"ID":417},{"Level":22,"ID":232},{"Level":25,"ID":468},{"Level":28,"ID":374},{"Level":32,"ID":103},{"Level":35,"ID":400},{"Level":40,"ID":289},{"Level":44,"ID":386},{"Level":47,"ID":399}],"EvolutionConditions":[],"Items":[{"Id":73,"Chance":5},{"Id":176,"Chance":50}]} \ No newline at end of file +Name|Weavile +Number|461 +ExperienceType|2 +BaseExperience|179 +Type1|Dark +Type2|Ice +CatchRate|45 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|215 +IsGenderLess|0 +CanBreed|1 +Devolution|215 +IsMale|50 +Ability1|46 +Ability2|Nothing +HiddenAbility|124 +EggMoves|223,29,174,92,249,244,237,241,173,59,63,196,182,240,203,218,231,216,91,247,189,104,8,207,214,129,111,138,197,156,213,168,210,171,14,36,58,6,68,99,102,115,117,130,164,264,347,258,269,280,332,259,263,290,289,206,374,373,421,371,416,419,445,399,404,363,398,468,490,496,514,555,612,590,15,57,70,250 +Machines|223,174,92,249,244,237,241,173,59,63,196,182,203,218,231,216,91,247,189,104,8,207,214,129,138,197,156,213,168,210,5,14,36,58,6,68,99,102,115,117,130,164,264,347,258,269,280,332,259,263,290,289,411,206,374,373,421,371,416,419,445,399,363,398,468,490,496,555,612,590,15,57,70,250 +BaseHP|70 +BaseAttack|120 +BaseDefense|65 +BaseSpAttack|45 +BaseSpDefense|85 +BaseSpeed|125 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It lives in snowy regions. It carves patterns in trees with its claws as a signal to others.\Sharp Claw Pokémon\34\1.1\0,148,0 +Scale|1.04 +Move|1,373 +Move|1,279 +Move|1,372 +Move|1,10 +Move|1,43 +Move|1,269 +Move|1,98 +Move|8,98 +Move|10,185 +Move|14,196 +Move|16,154 +Move|20,417 +Move|22,232 +Move|25,468 +Move|28,374 +Move|32,103 +Move|35,400 +Move|40,289 +Move|44,386 +Move|47,399 +TradeValue|50 +Item|5,73 +Item|50,176 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/462.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/462.dat index 058f5ad76..a61e15424 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/462.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/462.dat @@ -1 +1,61 @@ -{"Name":"Magnezone","Number":462,"ExperienceType":"MediumFast","BaseExperience":241,"Type1":"Electric","Type2":"Steel","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":81,"Devolution":82,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[42,5],"HiddenAbility":148,"EggMoves":[],"Machines":[174,205,92,192,244,237,241,173,63,182,240,203,218,87,216,104,207,214,129,111,197,156,213,34,36,38,99,85,102,115,117,120,86,153,161,164,113,351,263,290,451,278,416,360,445,363,430,496,521,528,590,148,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":70,"Def":115,"SpAtk":130,"SpDef":90,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Exposure to a special magnetic field changed MAGNETON's molecular structure, turning it into MAGNEZONE.","Species":"Magnet Area Pokémon","Height":1.2,"Weight":180,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":50,"Moves":[{"Level":1,"ID":192},{"Level":2,"ID":1},{"Level":3,"ID":243},{"Level":4,"ID":112},{"Level":5,"ID":33},{"Level":6,"ID":48},{"Level":7,"ID":49},{"Level":8,"ID":48},{"Level":9,"ID":84},{"Level":11,"ID":1},{"Level":15,"ID":86},{"Level":18,"ID":443},{"Level":21,"ID":209},{"Level":25,"ID":429},{"Level":29,"ID":319},{"Level":34,"ID":486},{"Level":39,"ID":430},{"Level":45,"ID":103},{"Level":51,"ID":435},{"Level":56,"ID":199},{"Level":62,"ID":1},{"Level":67,"ID":360},{"Level":73,"ID":192}],"EvolutionConditions":[],"Items":[{"Id":143,"Chance":5}]} \ No newline at end of file +Name|Magnezone +Number|462 +ExperienceType|1 +BaseExperience|241 +Type1|Electric +Type2|Steel +CatchRate|30 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|81 +IsGenderLess|1 +CanBreed|1 +Devolution|82 +IsMale|0.0 +Ability1|42 +Ability2|5 +HiddenAbility|148 +Machines|174,205,92,192,244,237,241,173,63,182,240,203,218,87,216,104,207,214,129,111,197,156,213,34,36,38,99,85,102,115,117,120,86,153,161,164,113,351,263,290,451,278,416,360,445,363,430,496,521,528,590,148,560 +BaseHP|70 +BaseAttack|70 +BaseDefense|115 +BaseSpAttack|130 +BaseSpDefense|90 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Exposure to a special magnetic field changed MAGNETON's molecular structure, turning it into MAGNEZONE.\Magnet Area Pokémon\180\1.2\0,148,0 +Scale|1.08 +Move|1,192 +Move|1,602 +Move|1,243 +Move|1,112 +Move|1,33 +Move|1,48 +Move|1,49 +Move|4,48 +Move|7,84 +Move|11,604 +Move|15,86 +Move|18,443 +Move|21,209 +Move|25,429 +Move|29,319 +Move|34,486 +Move|39,430 +Move|45,103 +Move|51,435 +Move|56,199 +Move|62,393 +Move|67,360 +Move|73,192 +TradeValue|50 +Item|5,143 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/463.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/463.dat index d7268bc8f..d571ec32d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/463.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/463.dat @@ -1 +1,57 @@ -{"Name":"Lickilicky","Number":463,"ExperienceType":"MediumFast","BaseExperience":180,"Type1":"Normal","Type2":"Blank","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":108,"Devolution":108,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[20,12],"HiddenAbility":13,"EggMoves":[562,187,34,174,359,222,330,214,265,173,428,133,164],"Machines":[223,174,205,92,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,91,247,189,104,8,207,214,201,126,111,9,138,197,156,213,168,7,5,14,25,34,36,38,61,55,58,6,66,68,69,99,85,90,102,117,130,149,153,157,161,164,264,352,280,351,53,317,263,290,411,374,416,360,445,363,496,510,514,523,525,526,612,590,57,70,250,431],"TutorMoves":[],"BaseStats":{"HP":110,"Atk":85,"Def":95,"SpAtk":80,"SpDef":95,"Speed":50},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its saliva can decompose anything. It wraps its long tongue around things to coat them with its sticky saliva.","Species":"Licking Pokémon","Height":1.7,"Weight":140,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":75,"Moves":[{"Level":1,"ID":378},{"Level":2,"ID":438},{"Level":3,"ID":122},{"Level":5,"ID":48},{"Level":9,"ID":111},{"Level":13,"ID":282},{"Level":17,"ID":35},{"Level":21,"ID":23},{"Level":25,"ID":1},{"Level":29,"ID":21},{"Level":33,"ID":205},{"Level":37,"ID":498},{"Level":41,"ID":1},{"Level":45,"ID":287},{"Level":49,"ID":103},{"Level":53,"ID":438},{"Level":57,"ID":378},{"Level":61,"ID":360}],"EvolutionConditions":[],"Items":[{"Id":142,"Chance":5}]} \ No newline at end of file +Name|Lickilicky +Number|463 +ExperienceType|1 +BaseExperience|180 +Type1|Normal +Type2| +CatchRate|30 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|108 +IsGenderLess|0 +CanBreed|1 +Devolution|108 +IsMale|50 +Ability1|20 +Ability2|12 +HiddenAbility|13 +EggMoves|562,187,34,174,359,222,330,214,265,173,428,133,164 +Machines|223,174,205,92,249,244,237,241,173,59,63,196,182,240,203,218,76,231,87,89,216,91,247,189,104,8,207,214,201,126,111,9,138,197,156,213,168,7,5,14,25,34,36,38,61,55,58,6,66,68,69,99,85,90,102,117,130,149,153,157,161,164,264,352,280,351,53,317,263,290,411,374,416,360,445,363,496,510,514,523,525,526,612,590,57,70,250,431 +BaseHP|110 +BaseAttack|85 +BaseDefense|95 +BaseSpAttack|80 +BaseSpDefense|95 +BaseSpeed|50 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its saliva can decompose anything. It wraps its long tongue around things to coat them with its sticky saliva.\Licking Pokémon\140\1.7\0,148,0 +Scale|1.28 +Move|1,378 +Move|1,438 +Move|1,122 +Move|5,48 +Move|9,111 +Move|13,282 +Move|17,35 +Move|21,23 +Move|25,50 +Move|29,21 +Move|33,205 +Move|37,498 +Move|41,382 +Move|45,287 +Move|49,103 +Move|53,438 +Move|57,378 +Move|61,360 +TradeValue|75 +Item|5,142 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/464.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/464.dat index a654792e4..378c4a8c2 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/464.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/464.dat @@ -1 +1,59 @@ -{"Name":"Rhyperior","Number":464,"ExperienceType":"Slow","BaseExperience":241,"Type1":"Ground","Type2":"Rock","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":111,"Devolution":112,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[31,116],"HiddenAbility":120,"EggMoves":[68,242,306,174,407,424,470,423,231,222,368,563,179,431,130,422,157,14],"Machines":[223,174,46,92,249,237,241,173,59,63,196,182,203,218,231,87,89,216,91,189,104,8,207,214,201,126,9,197,156,213,168,7,210,5,14,25,32,34,36,38,58,6,66,68,69,99,82,85,90,102,117,130,157,164,264,280,351,53,317,263,290,411,374,406,421,371,416,397,444,419,446,445,363,398,430,479,496,510,523,525,612,590,15,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":115,"Atk":140,"Def":130,"SpAtk":55,"SpDef":55,"Speed":40},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"From holes in its palms, it fires out Geodude. Its carapace can withstand volcanic eruptions.","Species":"Drill Pokémon","Height":2.4,"Weight":282.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.56,"Y":1.56,"Z":1.56},"TradeValue":85,"Moves":[{"Level":1,"ID":439},{"Level":2,"ID":224},{"Level":3,"ID":32},{"Level":4,"ID":398},{"Level":5,"ID":30},{"Level":6,"ID":39},{"Level":7,"ID":23},{"Level":8,"ID":31},{"Level":9,"ID":23},{"Level":19,"ID":31},{"Level":20,"ID":184},{"Level":23,"ID":350},{"Level":30,"ID":498},{"Level":41,"ID":36},{"Level":42,"ID":359},{"Level":47,"ID":529},{"Level":56,"ID":444},{"Level":62,"ID":89},{"Level":71,"ID":32},{"Level":77,"ID":224},{"Level":86,"ID":439}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Rhyperior +Number|464 +ExperienceType|3 +BaseExperience|241 +Type1|Ground +Type2|Rock +CatchRate|30 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|111 +IsGenderLess|0 +CanBreed|1 +Devolution|112 +IsMale|50 +Ability1|31 +Ability2|116 +HiddenAbility|120 +EggMoves|68,242,306,174,407,424,470,423,231,222,368,563,179,431,130,422,157,14 +Machines|223,174,46,92,249,237,241,173,59,63,196,182,203,218,231,87,89,216,91,189,104,8,207,214,201,126,9,197,156,213,168,7,210,5,14,25,32,34,36,38,58,6,66,68,69,99,82,85,90,102,117,130,157,164,264,280,351,53,317,263,290,411,374,406,421,371,416,397,444,419,446,445,363,398,430,479,496,510,523,525,612,590,15,57,70,250,431,560 +BaseHP|115 +BaseAttack|140 +BaseDefense|130 +BaseSpAttack|55 +BaseSpDefense|55 +BaseSpeed|40 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|From holes in its palms, it fires out Geodude. Its carapace can withstand volcanic eruptions.\Drill Pokémon\282.8\2.4\0,148,0 +Scale|1.56 +Move|1,439 +Move|1,224 +Move|1,32 +Move|1,398 +Move|1,30 +Move|1,39 +Move|1,23 +Move|1,31 +Move|9,23 +Move|19,31 +Move|19,184 +Move|23,350 +Move|30,498 +Move|41,36 +Move|42,359 +Move|47,529 +Move|56,444 +Move|62,89 +Move|71,32 +Move|77,224 +Move|86,439 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/465.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/465.dat index ffed4bf68..617d1189e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/465.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/465.dat @@ -1 +1,59 @@ -{"Name":"Tangrowth","Number":465,"ExperienceType":"MediumFast","BaseExperience":187,"Type1":"Grass","Type2":"Blank","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":114,"Devolution":114,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,102],"HiddenAbility":144,"EggMoves":[133,93,283,175,202,437,73,72,363,267,384,476,115],"Machines":[223,174,92,249,244,237,241,173,63,182,202,203,218,76,216,189,104,207,214,197,156,213,34,36,38,66,69,99,72,102,117,164,331,351,263,290,411,412,416,445,363,447,496,611,267,590,70,148],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":100,"Def":125,"SpAtk":110,"SpDef":50,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it remains still, it appears to be a large shrub. Unsuspecting prey that wander near get ensnared by its vines.","Species":"Vine Pokémon","Height":2,"Weight":128.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":80,"Moves":[{"Level":1,"ID":335},{"Level":2,"ID":275},{"Level":3,"ID":132},{"Level":4,"ID":79},{"Level":7,"ID":22},{"Level":10,"ID":71},{"Level":14,"ID":77},{"Level":17,"ID":20},{"Level":20,"ID":74},{"Level":23,"ID":72},{"Level":27,"ID":282},{"Level":30,"ID":78},{"Level":33,"ID":363},{"Level":36,"ID":202},{"Level":40,"ID":246},{"Level":43,"ID":21},{"Level":46,"ID":321},{"Level":49,"ID":378},{"Level":50,"ID":1},{"Level":53,"ID":438},{"Level":56,"ID":335}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Tangrowth +Number|465 +ExperienceType|1 +BaseExperience|187 +Type1|Grass +Type2| +CatchRate|30 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|114 +IsGenderLess|0 +CanBreed|1 +Devolution|114 +IsMale|50 +Ability1|34 +Ability2|102 +HiddenAbility|144 +EggMoves|133,93,283,175,202,437,73,72,363,267,384,476,115 +Machines|223,174,92,249,244,237,241,173,63,182,202,203,218,76,216,189,104,207,214,197,156,213,34,36,38,66,69,99,72,102,117,164,331,351,263,290,411,412,416,445,363,447,496,611,267,590,70,148 +BaseHP|100 +BaseAttack|100 +BaseDefense|125 +BaseSpAttack|110 +BaseSpDefense|50 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it remains still, it appears to be a large shrub. Unsuspecting prey that wander near get ensnared by its vines.\Vine Pokémon\128.6\2\0,148,0 +Scale|1.4 +Move|1,335 +Move|1,275 +Move|1,132 +Move|4,79 +Move|7,22 +Move|10,71 +Move|14,77 +Move|17,20 +Move|20,74 +Move|23,72 +Move|27,282 +Move|30,78 +Move|33,363 +Move|36,202 +Move|40,246 +Move|43,21 +Move|46,321 +Move|49,378 +Move|50,580 +Move|53,438 +Move|56,335 +TradeValue|80 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/466.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/466.dat index 8bebb7687..250248ef0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/466.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/466.dat @@ -1 +1,60 @@ -{"Name":"Electivire","Number":466,"ExperienceType":"MediumFast","BaseExperience":243,"Type1":"Electric","Type2":"Blank","CatchRate":30,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":239,"Devolution":125,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[78],"HiddenAbility":72,"EggMoves":[112,238,223,364,7,264,359,8,2,96,27],"Machines":[223,174,92,192,249,237,173,63,182,240,203,218,231,87,89,91,216,189,104,8,207,214,129,9,197,156,213,7,5,25,34,36,38,66,68,69,99,85,102,117,86,161,164,264,351,263,290,411,451,416,445,363,488,490,496,612,590,70,148,431],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":123,"Def":67,"SpAtk":95,"SpDef":85,"Speed":95},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"As its electric charge amplifies blue sparks begin to crackle between its horns.","Species":"Thunderbolt Pokémon","Height":1.8,"Weight":138.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":70,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":1},{"Level":3,"ID":7},{"Level":4,"ID":98},{"Level":5,"ID":43},{"Level":6,"ID":84},{"Level":7,"ID":67},{"Level":8,"ID":84},{"Level":9,"ID":67},{"Level":12,"ID":129},{"Level":15,"ID":351},{"Level":19,"ID":86},{"Level":22,"ID":486},{"Level":26,"ID":113},{"Level":29,"ID":9},{"Level":36,"ID":435},{"Level":42,"ID":103},{"Level":49,"ID":85},{"Level":55,"ID":87},{"Level":62,"ID":416},{"Level":65,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":120,"Chance":5}]} \ No newline at end of file +Name|Electivire +Number|466 +ExperienceType|1 +BaseExperience|243 +Type1|Electric +Type2| +CatchRate|30 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|239 +IsGenderLess|0 +CanBreed|1 +Devolution|125 +IsMale|75 +Ability1|78 +Ability2|Nothing +HiddenAbility|72 +EggMoves|112,238,223,364,7,264,359,8,2,96,27 +Machines|223,174,92,192,249,237,173,63,182,240,203,218,231,87,89,91,216,189,104,8,207,214,129,9,197,156,213,7,5,25,34,36,38,66,68,69,99,85,102,117,86,161,164,264,351,263,290,411,451,416,445,363,488,490,496,612,590,70,148,431 +BaseHP|75 +BaseAttack|123 +BaseDefense|67 +BaseSpAttack|95 +BaseSpDefense|85 +BaseSpeed|95 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|As its electric charge amplifies blue sparks begin to crackle between its horns.\Thunderbolt Pokémon\138.6\1.8\0,148,0 +Scale|1.32 +Move|1,604 +Move|1,569 +Move|1,7 +Move|1,98 +Move|1,43 +Move|1,84 +Move|1,67 +Move|5,84 +Move|8,67 +Move|12,129 +Move|15,351 +Move|19,86 +Move|22,486 +Move|26,113 +Move|29,9 +Move|36,435 +Move|42,103 +Move|49,85 +Move|55,87 +Move|62,416 +Move|65,604 +TradeValue|70 +Item|5,120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/467.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/467.dat index f6ce8fe9f..76596197a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/467.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/467.dat @@ -1 +1,57 @@ -{"Name":"Magmortar","Number":467,"ExperienceType":"MediumFast","BaseExperience":243,"Type1":"Fire","Type2":"Blank","CatchRate":30,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":240,"Devolution":126,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[49],"HiddenAbility":72,"EggMoves":[112,562,187,238,223,394,116,231,2,183,5,384,103,9],"Machines":[223,76,174,92,249,237,241,173,63,182,203,218,231,89,216,94,189,104,207,214,126,9,197,156,213,168,7,5,25,34,36,38,66,68,69,99,85,102,117,161,164,264,53,263,290,315,411,374,261,416,445,363,488,490,496,510,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":95,"Def":67,"SpAtk":125,"SpDef":95,"Speed":83},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It blasts fireballs of over 3,600 degrees Fahrenheit out of its arms. Its breath also sears and sizzles.","Species":"Blast Pokémon","Height":1.6,"Weight":68,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":70,"Moves":[{"Level":1,"ID":9},{"Level":2,"ID":123},{"Level":3,"ID":43},{"Level":4,"ID":52},{"Level":5,"ID":108},{"Level":6,"ID":52},{"Level":8,"ID":108},{"Level":12,"ID":185},{"Level":15,"ID":83},{"Level":19,"ID":499},{"Level":22,"ID":481},{"Level":26,"ID":109},{"Level":29,"ID":7},{"Level":36,"ID":436},{"Level":42,"ID":241},{"Level":49,"ID":53},{"Level":55,"ID":126},{"Level":62,"ID":63}],"EvolutionConditions":[],"Items":[{"Id":100,"Chance":5}]} \ No newline at end of file +Name|Magmortar +Number|467 +ExperienceType|1 +BaseExperience|243 +Type1|Fire +Type2| +CatchRate|30 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|240 +IsGenderLess|0 +CanBreed|1 +Devolution|126 +IsMale|75 +Ability1|49 +Ability2|Nothing +HiddenAbility|72 +EggMoves|112,562,187,238,223,394,116,231,2,183,5,384,103,9 +Machines|223,76,174,92,249,237,241,173,63,182,203,218,231,89,216,94,189,104,207,214,126,9,197,156,213,168,7,5,25,34,36,38,66,68,69,99,85,102,117,161,164,264,53,263,290,315,411,374,261,416,445,363,488,490,496,510,612,590,70,431 +BaseHP|75 +BaseAttack|95 +BaseDefense|67 +BaseSpAttack|125 +BaseSpDefense|95 +BaseSpeed|83 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It blasts fireballs of over 3,600 degrees Fahrenheit out of its arms. Its breath also sears and sizzles.\Blast Pokémon\68\1.6\0,148,0 +Scale|1.24 +Move|1,9 +Move|1,123 +Move|1,43 +Move|1,52 +Move|1,108 +Move|5,52 +Move|8,108 +Move|12,185 +Move|15,83 +Move|19,499 +Move|22,481 +Move|26,109 +Move|29,7 +Move|36,436 +Move|42,241 +Move|49,53 +Move|55,126 +Move|62,63 +TradeValue|70 +Item|5,100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/468.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/468.dat index 3019caa29..fbe68b910 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/468.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/468.dat @@ -1 +1,43 @@ -{"Name":"Togekiss","Number":468,"ExperienceType":"Fast","BaseExperience":245,"Type1":"Fairy","Type2":"Flying","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"Fairy","BaseEggSteps":2805,"EggPokemon":175,"Devolution":176,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[55,32],"HiddenAbility":105,"EggMoves":[326,193,248,381,119,234,417,64,217,375,290,500,244,164],"Machines":[174,205,92,192,249,244,237,241,173,63,182,240,203,218,76,216,94,247,189,104,207,214,126,129,111,138,197,156,213,211,13,18,34,36,38,68,99,100,102,115,117,118,143,86,149,161,164,264,352,113,219,280,351,53,332,263,290,355,374,409,318,416,432,445,363,447,365,473,477,496,497,510,514,526,605,590,19,148],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":50,"Def":95,"SpAtk":120,"SpDef":115,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"As everyone knows regions, bringing them gifts of kindness and sweet blessings.","Species":"Jubilee Pokémon","Height":1.5,"Weight":38,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":75,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":143},{"Level":3,"ID":245},{"Level":4,"ID":396},{"Level":5,"ID":403}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Togekiss +Number|468 +ExperienceType|0 +BaseExperience|245 +Type1|Fairy +Type2|Flying +CatchRate|30 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|Fairy +BaseEggSteps|2805 +EggPokemon|175 +IsGenderLess|0 +CanBreed|1 +Devolution|176 +IsMale|87.5 +Ability1|55 +Ability2|32 +HiddenAbility|105 +EggMoves|326,193,248,381,119,234,417,64,217,375,290,500,244,164 +Machines|174,205,92,192,249,244,237,241,173,63,182,240,203,218,76,216,94,247,189,104,207,214,126,129,111,138,197,156,213,211,13,18,34,36,38,68,99,100,102,115,117,118,143,86,149,161,164,264,352,113,219,280,351,53,332,263,290,355,374,409,318,416,432,445,363,447,365,473,477,496,497,510,514,526,605,590,19,148 +BaseHP|85 +BaseAttack|50 +BaseDefense|95 +BaseSpAttack|120 +BaseSpDefense|115 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|As everyone knows regions, bringing them gifts of kindness and sweet blessings.\Jubilee Pokémon\38\1.5\0,148,0 +Scale|1.2 +Move|1,495 +Move|1,143 +Move|1,245 +Move|1,396 +Move|1,403 +TradeValue|75 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/469.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/469.dat index eee78d8bc..5310b3d76 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/469.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/469.dat @@ -1 +1,61 @@ -{"Name":"Yanmega","Number":469,"ExperienceType":"MediumFast","BaseExperience":180,"Type1":"Bug","Type2":"Flying","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":193,"Devolution":193,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[3,110],"HiddenAbility":119,"EggMoves":[38,364,185,141,228,179,290,324,318,18],"Machines":[174,92,244,237,241,173,63,182,202,203,218,76,216,94,247,189,104,207,214,129,138,197,156,213,168,211,13,18,36,99,72,102,117,143,164,332,263,290,355,318,416,432,445,363,369,496,522,590,19,148],"TutorMoves":[],"BaseStats":{"HP":86,"Atk":76,"Def":86,"SpAtk":116,"SpDef":56,"Speed":95},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This six-legged Pokémon is easily capable of transporting an adult in flight. The wings on its tail help it stay balanced.","Species":"Ogre Darner Pokémon","Height":1.9,"Weight":51.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":75,"Moves":[{"Level":1,"ID":405},{"Level":2,"ID":403},{"Level":3,"ID":400},{"Level":4,"ID":450},{"Level":5,"ID":33},{"Level":6,"ID":193},{"Level":7,"ID":98},{"Level":8,"ID":104},{"Level":9,"ID":98},{"Level":11,"ID":104},{"Level":14,"ID":49},{"Level":17,"ID":197},{"Level":22,"ID":48},{"Level":27,"ID":253},{"Level":30,"ID":228},{"Level":33,"ID":246},{"Level":38,"ID":364},{"Level":43,"ID":163},{"Level":46,"ID":103},{"Level":49,"ID":369},{"Level":54,"ID":403},{"Level":57,"ID":405}],"EvolutionConditions":[],"Items":[{"Id":171,"Chance":5}]} \ No newline at end of file +Name|Yanmega +Number|469 +ExperienceType|1 +BaseExperience|180 +Type1|Bug +Type2|Flying +CatchRate|30 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|193 +IsGenderLess|0 +CanBreed|1 +Devolution|193 +IsMale|50 +Ability1|3 +Ability2|110 +HiddenAbility|119 +EggMoves|38,364,185,141,228,179,290,324,318,18 +Machines|174,92,244,237,241,173,63,182,202,203,218,76,216,94,247,189,104,207,214,129,138,197,156,213,168,211,13,18,36,99,72,102,117,143,164,332,263,290,355,318,416,432,445,363,369,496,522,590,19,148 +BaseHP|86 +BaseAttack|76 +BaseDefense|86 +BaseSpAttack|116 +BaseSpDefense|56 +BaseSpeed|95 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This six-legged Pokémon is easily capable of transporting an adult in flight. The wings on its tail help it stay balanced.\Ogre Darner Pokémon\51.5\1.9\0,148,0 +Scale|1.36 +Move|1,405 +Move|1,403 +Move|1,400 +Move|1,450 +Move|1,33 +Move|1,193 +Move|1,98 +Move|1,104 +Move|6,98 +Move|11,104 +Move|14,49 +Move|17,197 +Move|22,48 +Move|27,253 +Move|30,228 +Move|33,246 +Move|38,364 +Move|43,163 +Move|46,103 +Move|49,369 +Move|54,403 +Move|57,405 +TradeValue|75 +Item|5,171 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/47.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/47.dat index a6738f56a..452bf16a3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/47.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/47.dat @@ -1 +1,55 @@ -{"Name":"Parasect","Number":47,"ExperienceType":"MediumFast","BaseExperience":142,"Type1":"Bug","Type2":"Grass","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":46,"Devolution":46,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[27,87],"HiddenAbility":6,"EggMoves":[97,450,68,440,203,565,206,73,113,175,232,363,60,228,563,103,230,469],"Machines":[174,92,249,237,241,230,173,63,182,202,203,218,76,216,91,104,207,214,188,197,156,213,168,210,14,34,36,68,99,72,102,117,130,164,331,113,280,332,263,290,412,206,416,445,404,363,447,468,474,496,522,267,590,15,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":95,"Def":80,"SpAtk":60,"SpDef":80,"Speed":30},"RewardEV":{"HP":0,"Atk":2,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It stays mostly in dark, damp places, the preference not of the bug, but of the big mushrooms on its back.","Species":"Mushroom Pokémon","Height":1,"Weight":29.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":25,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":77},{"Level":3,"ID":78},{"Level":4,"ID":141},{"Level":5,"ID":440},{"Level":6,"ID":77},{"Level":7,"ID":78},{"Level":11,"ID":141},{"Level":17,"ID":210},{"Level":22,"ID":147},{"Level":29,"ID":163},{"Level":37,"ID":74},{"Level":44,"ID":202},{"Level":51,"ID":312},{"Level":59,"ID":1},{"Level":66,"ID":404}],"EvolutionConditions":[],"Items":[{"Id":86,"Chance":50},{"Id":87,"Chance":5},{"Id":153,"Chance":1}]} \ No newline at end of file +Name|Parasect +Number|47 +ExperienceType|1 +BaseExperience|142 +Type1|Bug +Type2|Grass +CatchRate|75 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|46 +IsGenderLess|0 +IsMale|50 +Ability1|27 +Ability2|87 +HiddenAbility|6 +EggMoves|97,450,68,440,203,565,206,73,113,175,232,363,60,228,563,103,230,469 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,91,104,207,214,188,197,156,213,168,210,14,34,36,68,99,72,102,117,130,164,331,113,280,332,263,290,412,206,416,445,404,363,447,468,474,496,522,267,590,15,148 +BaseHP|60 +BaseAttack|95 +BaseDefense|80 +BaseSpAttack|60 +BaseSpDefense|80 +BaseSpeed|30 +FPHP|0 +FPAttack|2 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It stays mostly in dark, damp places, the preference not of the bug, but of the big mushrooms on its back.\Mushroom Pokémon\29.5\1\0,148,0 +Scale|1 +Move|1,10 +Move|1,77 +Move|1,78 +Move|1,141 +Move|1,440 +Move|6,77 +Move|6,78 +Move|11,141 +Move|17,210 +Move|22,147 +Move|29,163 +Move|37,74 +Move|44,202 +Move|51,312 +Move|59,476 +Move|66,404 +Item|50,86 +Item|5,87 +Item|1,153 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/470.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/470.dat index 073556cbc..91d4fabdb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/470.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/470.dat @@ -1 +1,52 @@ -{"Name":"Leafeon","Number":470,"ExperienceType":"MediumFast","BaseExperience":184,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":133,"Devolution":133,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[102],"HiddenAbility":34,"EggMoves":[445,204,343,174,197,203,313,175,363,500,485,321,273,281],"Machines":[174,46,92,249,237,241,230,173,63,182,240,202,203,218,76,231,216,91,247,189,104,207,214,129,197,156,213,210,14,25,34,36,38,68,99,72,102,117,130,164,331,263,290,412,416,445,404,363,447,496,497,514,526,267,590,70,148,560],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":110,"Def":130,"SpAtk":60,"SpDef":65,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When you see LEAFEON asleep in a patch of sunshine, you'll know it is using photosynthesis to produce clean air.","Species":"Verdant Pokémon","Height":1,"Weight":25.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":39},{"Level":5,"ID":28},{"Level":9,"ID":75},{"Level":13,"ID":98},{"Level":17,"ID":320},{"Level":20,"ID":345},{"Level":25,"ID":202},{"Level":29,"ID":14},{"Level":33,"ID":235},{"Level":37,"ID":241},{"Level":41,"ID":387},{"Level":45,"ID":348}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Leafeon +Number|470 +ExperienceType|1 +BaseExperience|184 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|133 +IsGenderLess|0 +CanBreed|1 +Devolution|133 +IsMale|87.5 +Ability1|102 +Ability2|Nothing +HiddenAbility|34 +EggMoves|445,204,343,174,197,203,313,175,363,500,485,321,273,281 +Machines|174,46,92,249,237,241,230,173,63,182,240,202,203,218,76,231,216,91,247,189,104,207,214,129,197,156,213,210,14,25,34,36,38,68,99,72,102,117,130,164,331,263,290,412,416,445,404,363,447,496,497,514,526,267,590,70,148,560 +BaseHP|65 +BaseAttack|110 +BaseDefense|130 +BaseSpAttack|60 +BaseSpDefense|65 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When you see LEAFEON asleep in a patch of sunshine, you'll know it is using photosynthesis to produce clean air.\Verdant Pokémon\25.5\1\0,148,0 +Scale|1 +Move|1,270 +Move|1,33 +Move|1,39 +Move|5,28 +Move|9,75 +Move|13,98 +Move|17,320 +Move|20,345 +Move|25,202 +Move|29,14 +Move|33,235 +Move|37,241 +Move|41,387 +Move|45,348 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/471.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/471.dat index d99d2000f..f85da61e5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/471.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/471.dat @@ -1 +1,52 @@ -{"Name":"Glaceon","Number":471,"ExperienceType":"MediumFast","BaseExperience":184,"Type1":"Ice","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":9180,"EggPokemon":133,"Devolution":133,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[81],"HiddenAbility":115,"EggMoves":[445,204,343,174,197,203,313,175,363,500,485,321,273,281],"Machines":[174,46,92,249,237,241,173,59,63,196,182,203,218,231,216,91,247,189,104,207,214,129,197,156,213,25,34,36,38,58,68,99,102,117,130,164,352,258,263,290,416,419,445,363,496,497,514,524,526,590,70,560],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":60,"Def":110,"SpAtk":130,"SpDef":95,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It causes small ice crystals to form by lowering the temperature of the surrounding atmosphere.","Species":"Fresh Snow Pokémon","Height":0.8,"Weight":25.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":39},{"Level":5,"ID":28},{"Level":9,"ID":196},{"Level":13,"ID":98},{"Level":17,"ID":44},{"Level":20,"ID":423},{"Level":25,"ID":420},{"Level":29,"ID":112},{"Level":33,"ID":243},{"Level":37,"ID":258},{"Level":41,"ID":387},{"Level":45,"ID":59}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Glaceon +Number|471 +ExperienceType|1 +BaseExperience|184 +Type1|Ice +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|9180 +EggPokemon|133 +IsGenderLess|0 +CanBreed|1 +Devolution|133 +IsMale|87.5 +Ability1|81 +Ability2|Nothing +HiddenAbility|115 +EggMoves|445,204,343,174,197,203,313,175,363,500,485,321,273,281 +Machines|174,46,92,249,237,241,173,59,63,196,182,203,218,231,216,91,247,189,104,207,214,129,197,156,213,25,34,36,38,58,68,99,102,117,130,164,352,258,263,290,416,419,445,363,496,497,514,524,526,590,70,560 +BaseHP|65 +BaseAttack|60 +BaseDefense|110 +BaseSpAttack|130 +BaseSpDefense|95 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It causes small ice crystals to form by lowering the temperature of the surrounding atmosphere.\Fresh Snow Pokémon\25.9\0.8\0,148,0 +Scale|0.92 +Move|1,270 +Move|1,33 +Move|1,39 +Move|5,28 +Move|9,196 +Move|13,98 +Move|17,44 +Move|20,423 +Move|25,420 +Move|29,112 +Move|33,243 +Move|37,258 +Move|41,387 +Move|45,59 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/472.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/472.dat index b6f1d69ee..6266fd936 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/472.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/472.dat @@ -1 +1,58 @@ -{"Name":"Gliscor","Number":472,"ExperienceType":"MediumSlow","BaseExperience":179,"Type1":"Ground","Type2":"Flying","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":207,"Devolution":207,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[52,8],"HiddenAbility":90,"EggMoves":[97,226,68,440,38,364,232,400,342,379,13,431,328,17],"Machines":[174,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,188,201,129,197,156,213,168,211,210,13,14,18,36,38,68,99,90,102,117,130,143,157,164,269,280,317,332,259,263,290,355,206,374,371,416,397,432,444,446,445,399,404,363,398,369,468,474,496,512,522,590,15,70],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":95,"Def":125,"SpAtk":45,"SpDef":75,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its flight is soundless. It uses its lengthy tail to carry off its prey... Then its elongated fangs do the rest.","Species":"Fang Scorp Pokémon","Height":2,"Weight":42.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":80,"Moves":[{"Level":1,"ID":12},{"Level":2,"ID":422},{"Level":3,"ID":423},{"Level":4,"ID":424},{"Level":5,"ID":398},{"Level":6,"ID":106},{"Level":7,"ID":282},{"Level":8,"ID":106},{"Level":10,"ID":282},{"Level":13,"ID":98},{"Level":16,"ID":210},{"Level":19,"ID":185},{"Level":22,"ID":512},{"Level":27,"ID":400},{"Level":30,"ID":369},{"Level":35,"ID":103},{"Level":40,"ID":404},{"Level":45,"ID":327},{"Level":50,"ID":14},{"Level":55,"ID":12}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Gliscor +Number|472 +ExperienceType|2 +BaseExperience|179 +Type1|Ground +Type2|Flying +CatchRate|30 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|207 +IsGenderLess|0 +CanBreed|1 +Devolution|207 +IsMale|50 +Ability1|52 +Ability2|8 +HiddenAbility|90 +EggMoves|97,226,68,440,38,364,232,400,342,379,13,431,328,17 +Machines|174,92,249,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,188,201,129,197,156,213,168,211,210,13,14,18,36,38,68,99,90,102,117,130,143,157,164,269,280,317,332,259,263,290,355,206,374,371,416,397,432,444,446,445,399,404,363,398,369,468,474,496,512,522,590,15,70 +BaseHP|75 +BaseAttack|95 +BaseDefense|125 +BaseSpAttack|45 +BaseSpDefense|75 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its flight is soundless. It uses its lengthy tail to carry off its prey... Then its elongated fangs do the rest.\Fang Scorp Pokémon\42.5\2\0,148,0 +Scale|1.4 +Move|1,12 +Move|1,422 +Move|1,423 +Move|1,424 +Move|1,398 +Move|1,106 +Move|1,282 +Move|7,106 +Move|10,282 +Move|13,98 +Move|16,210 +Move|19,185 +Move|22,512 +Move|27,400 +Move|30,369 +Move|35,103 +Move|40,404 +Move|45,327 +Move|50,14 +Move|55,12 +TradeValue|80 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/473.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/473.dat index 532bc6a51..17c7948ef 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/473.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/473.dat @@ -1 +1,58 @@ -{"Name":"Mamoswine","Number":473,"ExperienceType":"Slow","BaseExperience":239,"Type1":"Ice","Type2":"Ground","CatchRate":50,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":220,"Devolution":221,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[12,81],"HiddenAbility":47,"EggMoves":[246,419,44,34,174,38,90,573,556,333,341,446,36,157],"Machines":[174,46,92,249,237,173,59,63,196,182,203,218,89,216,91,189,104,207,214,201,197,156,213,25,34,36,38,58,99,82,90,102,115,117,130,157,164,258,113,317,263,290,416,444,419,446,445,363,496,523,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":110,"Atk":130,"Def":80,"SpAtk":70,"SpDef":60,"Speed":80},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A frozen MAMOSWINE was dug from ice dating back 10,000 years. This Pokémon has been around a long, long, long time.","Species":"Twin Tusk Pokémon","Height":2.5,"Weight":291,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.6,"Y":1.6,"Z":1.6},"TradeValue":65,"Moves":[{"Level":1,"ID":184},{"Level":2,"ID":246},{"Level":3,"ID":64},{"Level":4,"ID":316},{"Level":5,"ID":300},{"Level":6,"ID":181},{"Level":7,"ID":300},{"Level":8,"ID":181},{"Level":11,"ID":189},{"Level":14,"ID":203},{"Level":18,"ID":426},{"Level":21,"ID":258},{"Level":24,"ID":423},{"Level":28,"ID":36},{"Level":33,"ID":458},{"Level":37,"ID":54},{"Level":41,"ID":37},{"Level":46,"ID":89},{"Level":52,"ID":59},{"Level":58,"ID":184}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Mamoswine +Number|473 +ExperienceType|3 +BaseExperience|239 +Type1|Ice +Type2|Ground +CatchRate|50 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|220 +IsGenderLess|0 +CanBreed|1 +Devolution|221 +IsMale|50 +Ability1|12 +Ability2|81 +HiddenAbility|47 +EggMoves|246,419,44,34,174,38,90,573,556,333,341,446,36,157 +Machines|174,46,92,249,237,173,59,63,196,182,203,218,89,216,91,189,104,207,214,201,197,156,213,25,34,36,38,58,99,82,90,102,115,117,130,157,164,258,113,317,263,290,416,444,419,446,445,363,496,523,590,15,70,431,560 +BaseHP|110 +BaseAttack|130 +BaseDefense|80 +BaseSpAttack|70 +BaseSpDefense|60 +BaseSpeed|80 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A frozen MAMOSWINE was dug from ice dating back 10,000 years. This Pokémon has been around a long, long, long time.\Twin Tusk Pokémon\291\2.5\0,148,0 +Scale|1.6 +Move|1,184 +Move|1,246 +Move|1,64 +Move|1,316 +Move|1,300 +Move|1,181 +Move|5,300 +Move|8,181 +Move|11,189 +Move|14,203 +Move|18,426 +Move|21,258 +Move|24,423 +Move|28,36 +Move|33,458 +Move|37,54 +Move|41,37 +Move|46,89 +Move|52,59 +Move|58,184 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/474.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/474.dat index 54ead3a25..db7eb8bea 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/474.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/474.dat @@ -1 +1,56 @@ -{"Name":"Porygon-Z","Number":474,"ExperienceType":"MediumFast","BaseExperience":241,"Type1":"Normal","Type2":"Blank","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":137,"Devolution":233,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[91,88],"HiddenAbility":148,"EggMoves":[],"Machines":[174,92,192,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,94,247,104,207,214,129,138,197,156,213,168,32,36,38,61,55,58,99,85,102,117,120,130,86,149,161,164,351,332,263,290,451,373,278,416,445,399,363,433,473,496,590,148],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":80,"Def":70,"SpAtk":135,"SpDef":75,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its programming was modified to enable it to travel through alien dimensions. Seems there might have been an error...","Species":"Virtual Pokémon","Height":0.9,"Weight":34,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":90,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":192},{"Level":3,"ID":277},{"Level":4,"ID":176},{"Level":5,"ID":33},{"Level":6,"ID":160},{"Level":7,"ID":417},{"Level":8,"ID":60},{"Level":12,"ID":97},{"Level":18,"ID":105},{"Level":23,"ID":1},{"Level":29,"ID":324},{"Level":34,"ID":373},{"Level":40,"ID":435},{"Level":45,"ID":199},{"Level":50,"ID":161},{"Level":56,"ID":277},{"Level":62,"ID":192},{"Level":67,"ID":63}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Porygon-Z +Number|474 +ExperienceType|1 +BaseExperience|241 +Type1|Normal +Type2| +CatchRate|30 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|137 +IsGenderLess|1 +CanBreed|1 +Devolution|233 +IsMale|0.0 +Ability1|91 +Ability2|88 +HiddenAbility|148 +Machines|174,92,192,244,237,241,173,59,63,196,182,240,203,218,76,231,87,216,94,247,104,207,214,129,138,197,156,213,168,32,36,38,61,55,58,99,85,102,117,120,130,86,149,161,164,351,332,263,290,451,373,278,416,445,399,363,433,473,496,590,148 +BaseHP|85 +BaseAttack|80 +BaseDefense|70 +BaseSpAttack|135 +BaseSpDefense|75 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its programming was modified to enable it to travel through alien dimensions. Seems there might have been an error...\Virtual Pokémon\34\0.9\0,148,0 +Scale|0.96 +Move|1,433 +Move|1,192 +Move|1,277 +Move|1,176 +Move|1,33 +Move|1,160 +Move|1,417 +Move|7,60 +Move|12,97 +Move|18,105 +Move|23,393 +Move|29,324 +Move|34,373 +Move|40,435 +Move|45,199 +Move|50,161 +Move|56,277 +Move|62,192 +Move|67,63 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/475.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/475.dat index 79443d749..474bd3a0f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/475.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/475.dat @@ -1 +1,60 @@ -{"Name":"Gallade","Number":475,"ExperienceType":"Slow","BaseExperience":233,"Type1":"Psychic","Type2":"Fighting","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":280,"Devolution":281,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[80],"HiddenAbility":154,"EggMoves":[502,109,194,50,227,288,212,262,581,425,285,485,261],"Machines":[223,174,92,249,244,237,241,173,63,182,240,203,218,89,216,94,247,189,104,8,207,214,129,9,138,197,156,213,168,7,210,171,5,14,25,34,36,38,66,68,69,99,85,100,102,115,117,130,86,149,157,164,264,347,339,269,113,219,280,351,317,332,259,263,290,285,289,411,206,374,451,409,261,278,416,444,445,404,363,398,447,433,473,477,490,496,497,502,514,523,526,612,605,590,15,70,148],"TutorMoves":[],"BaseStats":{"HP":68,"Atk":125,"Def":65,"SpAtk":65,"SpDef":115,"Speed":80},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Because it can sense what its foe is thinking, its attacks burst out first, fast, and fierce.","Species":"Blade Pokémon","Height":1.6,"Weight":52,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":45,"Moves":[{"Level":1,"ID":500},{"Level":2,"ID":370},{"Level":3,"ID":348},{"Level":4,"ID":400},{"Level":5,"ID":43},{"Level":6,"ID":93},{"Level":7,"ID":104},{"Level":8,"ID":100},{"Level":9,"ID":93},{"Level":10,"ID":104},{"Level":12,"ID":100},{"Level":17,"ID":210},{"Level":22,"ID":163},{"Level":25,"ID":505},{"Level":31,"ID":14},{"Level":36,"ID":427},{"Level":39,"ID":1},{"Level":45,"ID":364},{"Level":50,"ID":206},{"Level":53,"ID":182},{"Level":59,"ID":370},{"Level":64,"ID":500}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Gallade +Number|475 +ExperienceType|3 +BaseExperience|233 +Type1|Psychic +Type2|Fighting +CatchRate|45 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|280 +IsGenderLess|0 +CanBreed|1 +Devolution|281 +IsMale|100 +Ability1|80 +Ability2|Nothing +HiddenAbility|154 +EggMoves|502,109,194,50,227,288,212,262,581,425,285,485,261 +Machines|223,174,92,249,244,237,241,173,63,182,240,203,218,89,216,94,247,189,104,8,207,214,129,9,138,197,156,213,168,7,210,171,5,14,25,34,36,38,66,68,69,99,85,100,102,115,117,130,86,149,157,164,264,347,339,269,113,219,280,351,317,332,259,263,290,285,289,411,206,374,451,409,261,278,416,444,445,404,363,398,447,433,473,477,490,496,497,502,514,523,526,612,605,590,15,70,148 +BaseHP|68 +BaseAttack|125 +BaseDefense|65 +BaseSpAttack|65 +BaseSpDefense|115 +BaseSpeed|80 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Because it can sense what its foe is thinking, its attacks burst out first, fast, and fierce.\Blade Pokémon\52\1.6\0,148,0 +Scale|1.24 +Move|1,500 +Move|1,370 +Move|1,348 +Move|1,400 +Move|1,43 +Move|1,93 +Move|1,104 +Move|1,100 +Move|6,93 +Move|10,104 +Move|12,100 +Move|17,210 +Move|22,163 +Move|25,505 +Move|31,14 +Move|36,427 +Move|39,270 +Move|45,364 +Move|50,206 +Move|53,182 +Move|59,370 +Move|64,500 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/475_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/475_mega.dat new file mode 100644 index 000000000..9c29dbeb8 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/475_mega.dat @@ -0,0 +1,60 @@ +Name|Mega Gallade +Number|475 +ExperienceType|3 +BaseExperience|233 +Type1|Psychic +Type2|Fighting +CatchRate|45 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|280 +IsGenderLess|0 +CanBreed|1 +Devolution|281 +IsMale|100 +Ability1|39 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|502,109,194,50,227,288,212,262,581,425,285,485,261 +Machines|223,174,92,249,244,237,241,173,63,182,240,203,218,89,216,94,247,189,104,8,207,214,129,9,138,197,156,213,168,7,210,171,5,14,25,34,36,38,66,68,69,99,85,100,102,115,117,130,86,149,157,164,264,347,339,269,113,219,280,351,317,332,259,263,290,285,289,411,206,374,451,409,261,278,416,444,445,404,363,398,447,433,473,477,490,496,497,502,514,523,526,612,605,590,15,70,148 +BaseHP|68 +BaseAttack|165 +BaseDefense|95 +BaseSpAttack|65 +BaseSpDefense|115 +BaseSpeed|110 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Because it can sense what its foe is thinking, its attacks burst out first, fast, and fierce.\Blade Pokémon\56.4\1.6\0,148,0 +Scale|1.24 +Move|1,500 +Move|1,370 +Move|1,348 +Move|1,400 +Move|1,43 +Move|1,93 +Move|1,104 +Move|1,100 +Move|6,93 +Move|10,104 +Move|12,100 +Move|17,210 +Move|22,163 +Move|25,505 +Move|31,14 +Move|36,427 +Move|39,270 +Move|45,364 +Move|50,206 +Move|53,182 +Move|59,370 +Move|64,500 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/476.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/476.dat index 7bcf7c804..d8dbc2a04 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/476.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/476.dat @@ -1 +1,60 @@ -{"Name":"Probopass","Number":476,"ExperienceType":"MediumFast","BaseExperience":184,"Type1":"Rock","Type2":"Steel","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":299,"Devolution":299,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5,42],"HiddenAbility":159,"EggMoves":[335,38,203,222,205,446,469,153,457],"Machines":[174,205,92,192,249,237,241,173,63,182,203,218,87,89,216,189,104,8,207,214,201,111,9,197,156,213,7,34,36,38,99,85,90,102,117,120,130,86,153,157,161,164,269,351,317,259,263,290,416,397,444,446,445,363,430,479,496,521,523,605,590,70,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":55,"Def":145,"SpAtk":75,"SpDef":150,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It controls three units called Mini-Noses using magnetic force. With them, it can attack the foe from three directions.","Species":"Compass Pokémon","Height":1.4,"Weight":340,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":356},{"Level":3,"ID":33},{"Level":4,"ID":334},{"Level":5,"ID":335},{"Level":6,"ID":443},{"Level":7,"ID":334},{"Level":8,"ID":335},{"Level":11,"ID":443},{"Level":15,"ID":86},{"Level":18,"ID":350},{"Level":22,"ID":156},{"Level":25,"ID":209},{"Level":29,"ID":157},{"Level":32,"ID":408},{"Level":36,"ID":201},{"Level":39,"ID":435},{"Level":43,"ID":414},{"Level":46,"ID":444},{"Level":50,"ID":199},{"Level":51,"ID":192}],"EvolutionConditions":[],"Items":[{"Id":125,"Chance":5}]} \ No newline at end of file +Name|Probopass +Number|476 +ExperienceType|1 +BaseExperience|184 +Type1|Rock +Type2|Steel +CatchRate|60 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|299 +IsGenderLess|0 +CanBreed|1 +Devolution|299 +IsMale|50 +Ability1|5 +Ability2|42 +HiddenAbility|159 +EggMoves|335,38,203,222,205,446,469,153,457 +Machines|174,205,92,192,249,237,241,173,63,182,203,218,87,89,216,189,104,8,207,214,201,111,9,197,156,213,7,34,36,38,99,85,90,102,117,120,130,86,153,157,161,164,269,351,317,259,263,290,416,397,444,446,445,363,430,479,496,521,523,605,590,70,560 +BaseHP|60 +BaseAttack|55 +BaseDefense|145 +BaseSpAttack|75 +BaseSpDefense|150 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It controls three units called Mini-Noses using magnetic force. With them, it can attack the foe from three directions.\Compass Pokémon\340\1.4\0,148,0 +Scale|1.16 +Move|1,393 +Move|1,356 +Move|1,33 +Move|1,334 +Move|1,335 +Move|1,443 +Move|4,334 +Move|8,335 +Move|11,443 +Move|15,86 +Move|18,350 +Move|22,156 +Move|25,209 +Move|29,157 +Move|32,408 +Move|36,201 +Move|39,435 +Move|43,414 +Move|46,444 +Move|50,199 +Move|50,192 +TradeValue|50 +Item|5,125 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/477.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/477.dat index db7acb521..ec8a4b83f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/477.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/477.dat @@ -1 +1,59 @@ -{"Name":"Dusknoir","Number":477,"ExperienceType":"Fast","BaseExperience":236,"Type1":"Ghost","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":355,"Devolution":356,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[46],"HiddenAbility":119,"EggMoves":[399,194,288,185,114,286,262,466,220,285],"Machines":[223,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,9,138,197,156,213,168,7,171,5,58,6,66,68,69,99,102,117,118,149,157,161,164,264,347,269,280,317,259,263,290,285,289,411,374,451,261,373,371,416,445,399,363,433,477,496,523,611,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":100,"Def":135,"SpAtk":65,"SpDef":135,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This feared Pokémon is said to travel to worlds unknown. Some even believe that it takes lost spirits along with it.","Species":"Gripper Pokémon","Height":2.2,"Weight":106.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.48,"Y":1.48,"Z":1.48},"TradeValue":65,"Moves":[{"Level":1,"ID":7},{"Level":2,"ID":8},{"Level":3,"ID":9},{"Level":4,"ID":356},{"Level":5,"ID":20},{"Level":6,"ID":43},{"Level":7,"ID":101},{"Level":8,"ID":1},{"Level":9,"ID":1},{"Level":10,"ID":193},{"Level":14,"ID":310},{"Level":17,"ID":109},{"Level":22,"ID":425},{"Level":25,"ID":228},{"Level":30,"ID":174},{"Level":33,"ID":261},{"Level":37,"ID":325},{"Level":42,"ID":506},{"Level":49,"ID":212},{"Level":58,"ID":371},{"Level":61,"ID":248}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Dusknoir +Number|477 +ExperienceType|0 +BaseExperience|236 +Type1|Ghost +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|355 +IsGenderLess|0 +CanBreed|1 +Devolution|356 +IsMale|50 +Ability1|46 +Ability2|Nothing +HiddenAbility|119 +EggMoves|399,194,288,185,114,286,262,466,220,285 +Machines|223,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,9,138,197,156,213,168,7,171,5,58,6,66,68,69,99,102,117,118,149,157,161,164,264,347,269,280,317,259,263,290,285,289,411,374,451,261,373,371,416,445,399,363,433,477,496,523,611,612,590,70,148 +BaseHP|45 +BaseAttack|100 +BaseDefense|135 +BaseSpAttack|65 +BaseSpDefense|135 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This feared Pokémon is said to travel to worlds unknown. Some even believe that it takes lost spirits along with it.\Gripper Pokémon\106.6\2.2\0,148,0 +Scale|1.48 +Move|1,7 +Move|1,8 +Move|1,9 +Move|1,356 +Move|1,20 +Move|1,43 +Move|1,101 +Move|1,50 +Move|6,50 +Move|9,193 +Move|14,310 +Move|17,109 +Move|22,425 +Move|25,228 +Move|30,174 +Move|33,261 +Move|37,325 +Move|42,506 +Move|49,212 +Move|58,371 +Move|61,248 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/478.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/478.dat index c0a5c0beb..0d518aab0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/478.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/478.dat @@ -1 +1,55 @@ -{"Name":"Froslass","Number":478,"ExperienceType":"MediumFast","BaseExperience":168,"Type1":"Ice","Type2":"Ghost","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Mineral","BaseEggSteps":5355,"EggPokemon":361,"Devolution":361,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[81],"HiddenAbility":130,"EggMoves":[419,117,335,50,506,313,205,191,415,311],"Machines":[174,205,92,244,237,173,59,63,196,182,203,218,87,216,247,189,104,8,207,214,111,138,197,156,213,171,58,68,99,102,117,149,164,352,351,263,290,289,373,416,419,445,363,477,496,524,590,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":80,"Def":70,"SpAtk":80,"SpDef":70,"Speed":110},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Legends in snowy regions say that a woman who was lost on an icy mountain was reborn as FROSLASS.","Species":"Snow Land Pokémon","Height":1.3,"Weight":26.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":80,"Moves":[{"Level":1,"ID":194},{"Level":2,"ID":181},{"Level":3,"ID":43},{"Level":4,"ID":104},{"Level":5,"ID":310},{"Level":6,"ID":104},{"Level":10,"ID":310},{"Level":13,"ID":196},{"Level":19,"ID":109},{"Level":22,"ID":466},{"Level":28,"ID":358},{"Level":31,"ID":445},{"Level":37,"ID":420},{"Level":40,"ID":258},{"Level":51,"ID":59},{"Level":59,"ID":194}],"EvolutionConditions":[],"Items":[{"Id":2050,"Chance":5}]} \ No newline at end of file +Name|Froslass +Number|478 +ExperienceType|1 +BaseExperience|168 +Type1|Ice +Type2|Ghost +CatchRate|75 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Mineral +BaseEggSteps|5355 +EggPokemon|361 +IsGenderLess|0 +CanBreed|1 +Devolution|361 +IsMale|0 +Ability1|81 +Ability2|Nothing +HiddenAbility|130 +EggMoves|419,117,335,50,506,313,205,191,415,311 +Machines|174,205,92,244,237,173,59,63,196,182,203,218,87,216,247,189,104,8,207,214,111,138,197,156,213,171,58,68,99,102,117,149,164,352,351,263,290,289,373,416,419,445,363,477,496,524,590,148 +BaseHP|70 +BaseAttack|80 +BaseDefense|70 +BaseSpAttack|80 +BaseSpDefense|70 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Legends in snowy regions say that a woman who was lost on an icy mountain was reborn as FROSLASS.\Snow Land Pokémon\26.6\1.3\0,148,0 +Scale|1.12 +Move|1,194 +Move|1,181 +Move|1,43 +Move|1,104 +Move|1,310 +Move|4,104 +Move|10,310 +Move|13,196 +Move|19,109 +Move|22,466 +Move|28,358 +Move|31,445 +Move|37,420 +Move|40,258 +Move|51,59 +Move|59,194 +TradeValue|80 +Item|5,2050 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479.dat index 438d07349..adb05deac 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479.dat @@ -1 +1,53 @@ -{"Name":"Rotom","Number":479,"ExperienceType":"MediumFast","BaseExperience":154,"Type1":"Electric","Type2":"Ghost","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":479,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[85,86,87,92,104,113,115,138,148,156,164,168,182,203,207,214,216,218,237,240,241,244,247,261,263,289,290,351,363,365,399,451,477,496,521,590],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":50,"Def":77,"SpAtk":95,"SpDef":77,"Speed":91},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Research continues on this Pokémon which could be the power source of a unique motor.","Species":"Plasma Pokémon","Height":0.3,"Weight":0.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":55,"Moves":[{"Level":1,"ID":435},{"Level":2,"ID":268},{"Level":3,"ID":271},{"Level":4,"ID":310},{"Level":5,"ID":86},{"Level":6,"ID":84},{"Level":7,"ID":109},{"Level":8,"ID":253},{"Level":15,"ID":104},{"Level":22,"ID":351},{"Level":29,"ID":466},{"Level":36,"ID":164},{"Level":43,"ID":486},{"Level":50,"ID":506},{"Level":57,"ID":268},{"Level":64,"ID":435}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Rotom +Number|479 +ExperienceType|1 +BaseExperience|154 +Type1|Electric +Type2|Ghost +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|479 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|85,86,87,92,104,113,115,138,148,156,164,168,182,203,207,214,216,218,237,240,241,244,247,261,263,289,290,351,363,365,399,451,477,496,521,590 +BaseHP|50 +BaseAttack|50 +BaseDefense|77 +BaseSpAttack|95 +BaseSpDefense|77 +BaseSpeed|91 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Research continues on this Pokémon which could be the power source of a unique motor.\Plasma Pokémon\0.3\0.3\0,148,0 +Scale|0.7 +Move|1,435 +Move|1,268 +Move|1,271 +Move|1,310 +Move|1,86 +Move|1,84 +Move|1,109 +Move|8,253 +Move|15,104 +Move|22,351 +Move|29,466 +Move|36,164 +Move|43,486 +Move|50,506 +Move|57,268 +Move|64,435 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_fan.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_fan.dat index 689165632..3c27a1701 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_fan.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_fan.dat @@ -1 +1,51 @@ -{"Name":"Rotom","Number":479,"ExperienceType":"MediumFast","BaseExperience":154,"Type1":"Electric","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":479,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[85,86,87,92,104,113,115,138,148,156,164,168,182,203,207,214,216,218,237,240,241,244,247,261,263,289,290,351,363,365,399,451,477,496,521,590],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":65,"Def":107,"SpAtk":105,"SpDef":107,"Speed":86},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Research continues on this Pokémon which could be the power source of a unique motor.","Species":"Plasma Pokémon","Height":0.3,"Weight":0.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":55,"Moves":[{"Level":1,"ID":84},{"Level":2,"ID":86},{"Level":3,"ID":109},{"Level":4,"ID":271},{"Level":5,"ID":310},{"Level":8,"ID":253},{"Level":15,"ID":104},{"Level":22,"ID":351},{"Level":29,"ID":466},{"Level":36,"ID":164},{"Level":43,"ID":486},{"Level":50,"ID":506},{"Level":57,"ID":268},{"Level":64,"ID":435}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Rotom +Number|479 +ExperienceType|1 +BaseExperience|154 +Type1|Electric +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +IsGenderLess|1 +IsMale|0.0 +EggPokemon|479 +Devolution|0 +Ability1|026 +Ability2|Nothing +HiddenAbility|Nothing +Machines|85,86,87,92,104,113,115,138,148,156,164,168,182,203,207,214,216,218,237,240,241,244,247,261,263,289,290,351,363,365,399,451,477,496,521,590 +EggMoves| +BaseHP|50 +BaseAttack|65 +BaseDefense|107 +BaseSpAttack|105 +BaseSpDefense|107 +BaseSpeed|86 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Research continues on this Pokémon which could be the power source of a unique motor.\Plasma Pokémon\0.3\0.3\0,148,0 +Scale|0.7 +Move|1,84 +Move|1,86 +Move|15,104 +Move|1,109 +Move|36,164 +Move|8,253 +Move|57,268 +Move|1,271 +Move|1,310 +Move|22,351 +Move|64,435 +Move|29,466 +Move|43,486 +Move|50,506 +TradeValue|55 \ No newline at end of file diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_frost.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_frost.dat index bdb4250b0..b8320e7f7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_frost.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_frost.dat @@ -1 +1,53 @@ -{"Name":"Rotom","Number":479,"ExperienceType":"MediumFast","BaseExperience":154,"Type1":"Electric","Type2":"Ice","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":479,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,244,237,241,173,63,182,240,203,218,87,216,247,189,104,207,214,129,138,197,156,213,168,171,99,85,102,117,120,86,149,161,164,113,351,263,290,289,451,261,416,445,399,363,477,496,521,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":65,"Def":107,"SpAtk":105,"SpDef":107,"Speed":86},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Research continues on this Pokémon which could be the power source of a unique motor.","Species":"Plasma Pokémon","Height":0.3,"Weight":0.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":55,"Moves":[{"Level":1,"ID":435},{"Level":2,"ID":268},{"Level":3,"ID":271},{"Level":4,"ID":310},{"Level":5,"ID":86},{"Level":6,"ID":84},{"Level":7,"ID":109},{"Level":8,"ID":253},{"Level":15,"ID":104},{"Level":22,"ID":351},{"Level":29,"ID":466},{"Level":36,"ID":164},{"Level":43,"ID":486},{"Level":50,"ID":506},{"Level":57,"ID":268},{"Level":64,"ID":435}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Rotom +Number|479 +ExperienceType|1 +BaseExperience|154 +Type1|Electric +Type2|Ice +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|479 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,244,237,241,173,63,182,240,203,218,87,216,247,189,104,207,214,129,138,197,156,213,168,171,99,85,102,117,120,86,149,161,164,113,351,263,290,289,451,261,416,445,399,363,477,496,521,590,148 +BaseHP|50 +BaseAttack|65 +BaseDefense|107 +BaseSpAttack|105 +BaseSpDefense|107 +BaseSpeed|86 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Research continues on this Pokémon which could be the power source of a unique motor.\Plasma Pokémon\0.3\0.3\0,148,0 +Scale|0.7 +Move|1,435 +Move|1,268 +Move|1,271 +Move|1,310 +Move|1,86 +Move|1,84 +Move|1,109 +Move|8,253 +Move|15,104 +Move|22,351 +Move|29,466 +Move|36,164 +Move|43,486 +Move|50,506 +Move|57,268 +Move|64,435 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_heat.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_heat.dat index 67b027c07..5337c5779 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_heat.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_heat.dat @@ -1 +1,53 @@ -{"Name":"Rotom","Number":479,"ExperienceType":"MediumFast","BaseExperience":154,"Type1":"Electric","Type2":"Fire","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":479,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,244,237,241,173,63,182,240,203,218,87,216,247,189,104,207,214,129,138,197,156,213,168,171,99,85,102,117,120,86,149,161,164,113,351,263,290,289,451,261,416,445,399,363,477,496,521,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":65,"Def":107,"SpAtk":105,"SpDef":107,"Speed":86},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Research continues on this Pokémon which could be the power source of a unique motor.","Species":"Plasma Pokémon","Height":0.3,"Weight":0.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":55,"Moves":[{"Level":1,"ID":435},{"Level":2,"ID":268},{"Level":3,"ID":271},{"Level":4,"ID":310},{"Level":5,"ID":86},{"Level":6,"ID":84},{"Level":7,"ID":109},{"Level":8,"ID":253},{"Level":15,"ID":104},{"Level":22,"ID":351},{"Level":29,"ID":466},{"Level":36,"ID":164},{"Level":43,"ID":486},{"Level":50,"ID":506},{"Level":57,"ID":268},{"Level":64,"ID":435}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Rotom +Number|479 +ExperienceType|1 +BaseExperience|154 +Type1|Electric +Type2|Fire +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|479 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,244,237,241,173,63,182,240,203,218,87,216,247,189,104,207,214,129,138,197,156,213,168,171,99,85,102,117,120,86,149,161,164,113,351,263,290,289,451,261,416,445,399,363,477,496,521,590,148 +BaseHP|50 +BaseAttack|65 +BaseDefense|107 +BaseSpAttack|105 +BaseSpDefense|107 +BaseSpeed|86 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Research continues on this Pokémon which could be the power source of a unique motor.\Plasma Pokémon\0.3\0.3\0,148,0 +Scale|0.7 +Move|1,435 +Move|1,268 +Move|1,271 +Move|1,310 +Move|1,86 +Move|1,84 +Move|1,109 +Move|8,253 +Move|15,104 +Move|22,351 +Move|29,466 +Move|36,164 +Move|43,486 +Move|50,506 +Move|57,268 +Move|64,435 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_mow.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_mow.dat index 2d7e2ed06..edbf41ff5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_mow.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_mow.dat @@ -1 +1,53 @@ -{"Name":"Rotom","Number":479,"ExperienceType":"MediumFast","BaseExperience":154,"Type1":"Electric","Type2":"Grass","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":479,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,244,237,241,173,63,182,240,203,218,87,216,247,189,104,207,214,129,138,197,156,213,168,171,99,85,102,117,120,86,149,161,164,113,351,263,290,289,451,261,416,445,399,363,477,496,521,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":65,"Def":107,"SpAtk":105,"SpDef":107,"Speed":86},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Research continues on this Pokémon which could be the power source of a unique motor.","Species":"Plasma Pokémon","Height":0.3,"Weight":0.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":55,"Moves":[{"Level":1,"ID":435},{"Level":2,"ID":268},{"Level":3,"ID":271},{"Level":4,"ID":310},{"Level":5,"ID":86},{"Level":6,"ID":84},{"Level":7,"ID":109},{"Level":8,"ID":253},{"Level":15,"ID":104},{"Level":22,"ID":351},{"Level":29,"ID":466},{"Level":36,"ID":164},{"Level":43,"ID":486},{"Level":50,"ID":506},{"Level":57,"ID":268},{"Level":64,"ID":435}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Rotom +Number|479 +ExperienceType|1 +BaseExperience|154 +Type1|Electric +Type2|Grass +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|479 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,244,237,241,173,63,182,240,203,218,87,216,247,189,104,207,214,129,138,197,156,213,168,171,99,85,102,117,120,86,149,161,164,113,351,263,290,289,451,261,416,445,399,363,477,496,521,590,148 +BaseHP|50 +BaseAttack|65 +BaseDefense|107 +BaseSpAttack|105 +BaseSpDefense|107 +BaseSpeed|86 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Research continues on this Pokémon which could be the power source of a unique motor.\Plasma Pokémon\0.3\0.3\0,148,0 +Scale|0.7 +Move|1,435 +Move|1,268 +Move|1,271 +Move|1,310 +Move|1,86 +Move|1,84 +Move|1,109 +Move|8,253 +Move|15,104 +Move|22,351 +Move|29,466 +Move|36,164 +Move|43,486 +Move|50,506 +Move|57,268 +Move|64,435 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_wash.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_wash.dat index c51bb0a02..0182343d0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_wash.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/479_wash.dat @@ -1 +1,53 @@ -{"Name":"Rotom","Number":479,"ExperienceType":"MediumFast","BaseExperience":154,"Type1":"Electric","Type2":"Water","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":479,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,244,237,241,173,63,182,240,203,218,87,216,247,189,104,207,214,129,138,197,156,213,168,171,99,85,102,117,120,86,149,161,164,113,351,263,290,289,451,261,416,445,399,363,477,496,521,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":65,"Def":107,"SpAtk":105,"SpDef":107,"Speed":86},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Research continues on this Pokémon which could be the power source of a unique motor.","Species":"Plasma Pokémon","Height":0.3,"Weight":0.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":55,"Moves":[{"Level":1,"ID":435},{"Level":2,"ID":268},{"Level":3,"ID":271},{"Level":4,"ID":310},{"Level":5,"ID":86},{"Level":6,"ID":84},{"Level":7,"ID":109},{"Level":8,"ID":253},{"Level":15,"ID":104},{"Level":22,"ID":351},{"Level":29,"ID":466},{"Level":36,"ID":164},{"Level":43,"ID":486},{"Level":50,"ID":506},{"Level":57,"ID":268},{"Level":64,"ID":435}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Rotom +Number|479 +ExperienceType|1 +BaseExperience|154 +Type1|Electric +Type2|Water +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|479 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,244,237,241,173,63,182,240,203,218,87,216,247,189,104,207,214,129,138,197,156,213,168,171,99,85,102,117,120,86,149,161,164,113,351,263,290,289,451,261,416,445,399,363,477,496,521,590,148 +BaseHP|50 +BaseAttack|65 +BaseDefense|107 +BaseSpAttack|105 +BaseSpDefense|107 +BaseSpeed|86 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Research continues on this Pokémon which could be the power source of a unique motor.\Plasma Pokémon\0.3\0.3\0,148,0 +Scale|0.7 +Move|1,435 +Move|1,268 +Move|1,271 +Move|1,310 +Move|1,86 +Move|1,84 +Move|1,109 +Move|8,253 +Move|15,104 +Move|22,351 +Move|29,466 +Move|36,164 +Move|43,486 +Move|50,506 +Move|57,268 +Move|64,435 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/48.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/48.dat index 120563f4d..c69c85c99 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/48.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/48.dat @@ -1 +1,51 @@ -{"Name":"Venonat","Number":48,"ExperienceType":"MediumFast","BaseExperience":61,"Type1":"Bug","Type2":"Poison","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":48,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[14,110],"HiddenAbility":50,"EggMoves":[97,226,450,202,234,476,103,290,324,285,390],"Machines":[174,92,237,241,230,173,63,182,202,203,218,216,104,207,214,188,129,197,156,213,36,99,72,102,117,149,164,263,290,285,416,445,363,474,496,522,611,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":55,"Def":50,"SpAtk":40,"SpDef":55,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its eyes also function as radar units. It catches and eats small bugs that hide in darkness.","Species":"Insect Pokémon","Height":1,"Weight":30,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":10,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":1},{"Level":3,"ID":193},{"Level":5,"ID":48},{"Level":11,"ID":93},{"Level":13,"ID":77},{"Level":17,"ID":141},{"Level":23,"ID":78},{"Level":25,"ID":60},{"Level":29,"ID":79},{"Level":35,"ID":324},{"Level":37,"ID":428},{"Level":41,"ID":305},{"Level":47,"ID":94}],"EvolutionConditions":[{"Condition":"31","ConditionType":"Level","Evolution":49,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Venonat +Number|48 +ExperienceType|1 +BaseExperience|61 +Type1|Bug +Type2|Poison +CatchRate|190 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|48 +IsGenderLess|0 +IsMale|50 +Ability1|14 +Ability2|110 +HiddenAbility|50 +EggMoves|97,226,450,202,234,476,103,290,324,285,390 +Machines|174,92,237,241,230,173,63,182,202,203,218,216,104,207,214,188,129,197,156,213,36,99,72,102,117,149,164,263,290,285,416,445,363,474,496,522,611,590,148 +BaseHP|60 +BaseAttack|55 +BaseDefense|50 +BaseSpAttack|40 +BaseSpDefense|55 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its eyes also function as radar units. It catches and eats small bugs that hide in darkness.\Insect Pokémon\30\1\0,148,0 +Scale|1 +Move|1,33 +Move|1,50 +Move|1,193 +Move|5,48 +Move|11,93 +Move|13,77 +Move|17,141 +Move|23,78 +Move|25,60 +Move|29,79 +Move|35,324 +Move|37,428 +Move|41,305 +Move|47,94 +EvolutionCondition|49,Level,31,Level +TradeValue|10 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/480.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/480.dat index dbe837b22..72cbc9edf 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/480.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/480.dat @@ -1 +1,52 @@ -{"Name":"Uxie","Number":480,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Psychic","Type2":"Blank","CatchRate":3,"BaseFriendship":140,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":480,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,244,237,241,173,63,182,240,202,203,218,76,231,87,216,94,189,104,8,207,214,129,9,197,156,213,7,171,36,99,85,100,102,117,130,86,149,161,164,352,347,351,263,290,285,412,278,416,446,445,363,433,473,477,496,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":75,"Def":130,"SpAtk":75,"SpDef":130,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"According to some sources provided people with the intelligence necessary to solve various problems.","Species":"Knowledge Pokémon","Height":0.3,"Weight":0.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":85,"Moves":[{"Level":1,"ID":262},{"Level":2,"ID":363},{"Level":3,"ID":175},{"Level":4,"ID":156},{"Level":5,"ID":93},{"Level":6,"ID":1},{"Level":16,"ID":203},{"Level":21,"ID":129},{"Level":31,"ID":281},{"Level":36,"ID":248},{"Level":46,"ID":133},{"Level":51,"ID":326},{"Level":61,"ID":175},{"Level":66,"ID":363},{"Level":76,"ID":262}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Uxie +Number|480 +ExperienceType|3 +BaseExperience|261 +Type1|Psychic +Type2| +CatchRate|3 +BaseFriendship|140 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|480 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,244,237,241,173,63,182,240,202,203,218,76,231,87,216,94,189,104,8,207,214,129,9,197,156,213,7,171,36,99,85,100,102,117,130,86,149,161,164,352,347,351,263,290,285,412,278,416,446,445,363,433,473,477,496,612,605,590,148 +BaseHP|75 +BaseAttack|75 +BaseDefense|130 +BaseSpAttack|75 +BaseSpDefense|130 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|According to some sources provided people with the intelligence necessary to solve various problems.\Knowledge Pokémon\0.3\0.3\0,148,0 +Scale|0.7 +Move|1,262 +Move|1,363 +Move|1,175 +Move|1,156 +Move|1,93 +Move|6,286 +Move|16,203 +Move|21,129 +Move|31,281 +Move|36,248 +Move|46,133 +Move|51,326 +Move|61,175 +Move|66,363 +Move|76,262 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/481.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/481.dat index 2171b1766..239dae032 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/481.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/481.dat @@ -1 +1,52 @@ -{"Name":"Mesprit","Number":481,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Psychic","Type2":"Blank","CatchRate":3,"BaseFriendship":140,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":481,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,244,237,241,173,59,63,182,240,203,218,231,87,216,94,189,104,8,207,214,129,9,197,156,213,7,171,36,58,99,85,100,102,117,130,86,149,161,164,352,347,351,263,290,285,412,278,416,446,445,363,433,473,477,496,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":105,"Def":105,"SpAtk":105,"SpDef":105,"Speed":80},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon is said to have endowed the human heart with emotions, such as sorrow and joy.","Species":"Emotion Pokémon","Height":0.3,"Weight":0.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":85,"Moves":[{"Level":1,"ID":361},{"Level":2,"ID":363},{"Level":3,"ID":1},{"Level":4,"ID":156},{"Level":5,"ID":93},{"Level":6,"ID":1},{"Level":16,"ID":182},{"Level":21,"ID":129},{"Level":31,"ID":1},{"Level":36,"ID":248},{"Level":46,"ID":204},{"Level":51,"ID":326},{"Level":61,"ID":1},{"Level":66,"ID":363},{"Level":76,"ID":361}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Mesprit +Number|481 +ExperienceType|3 +BaseExperience|261 +Type1|Psychic +Type2| +CatchRate|3 +BaseFriendship|140 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|481 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,244,237,241,173,59,63,182,240,203,218,231,87,216,94,189,104,8,207,214,129,9,197,156,213,7,171,36,58,99,85,100,102,117,130,86,149,161,164,352,347,351,263,290,285,412,278,416,446,445,363,433,473,477,496,612,605,590,148 +BaseHP|80 +BaseAttack|105 +BaseDefense|105 +BaseSpAttack|105 +BaseSpDefense|105 +BaseSpeed|80 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon is said to have endowed the human heart with emotions, such as sorrow and joy.\Emotion Pokémon\0.3\0.3\0,148,0 +Scale|0.7 +Move|1,361 +Move|1,363 +Move|1,383 +Move|1,156 +Move|1,93 +Move|6,286 +Move|16,182 +Move|21,129 +Move|31,381 +Move|36,248 +Move|46,204 +Move|51,326 +Move|61,383 +Move|66,363 +Move|76,361 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/482.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/482.dat index 7736448df..00e833360 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/482.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/482.dat @@ -1 +1,51 @@ -{"Name":"Azelf","Number":482,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Psychic","Type2":"Blank","CatchRate":3,"BaseFriendship":140,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":482,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,244,237,241,173,63,182,240,203,218,231,87,216,94,189,104,8,207,214,126,129,9,197,156,213,7,171,36,99,85,100,102,117,130,86,149,161,164,352,347,269,351,53,259,263,290,285,412,371,278,416,446,445,363,433,473,477,496,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":125,"Def":70,"SpAtk":125,"SpDef":70,"Speed":115},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon is said to have endowed humans with the determination needed to face any of life’s difficulties.","Species":"Willpower Pokémon","Height":0.3,"Weight":0.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":85,"Moves":[{"Level":1,"ID":363},{"Level":2,"ID":387},{"Level":3,"ID":156},{"Level":4,"ID":93},{"Level":6,"ID":1},{"Level":16,"ID":197},{"Level":21,"ID":129},{"Level":31,"ID":253},{"Level":36,"ID":248},{"Level":46,"ID":417},{"Level":51,"ID":326},{"Level":61,"ID":387},{"Level":66,"ID":363},{"Level":76,"ID":153}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Azelf +Number|482 +ExperienceType|3 +BaseExperience|261 +Type1|Psychic +Type2| +CatchRate|3 +BaseFriendship|140 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|482 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,244,237,241,173,63,182,240,203,218,231,87,216,94,189,104,8,207,214,126,129,9,197,156,213,7,171,36,99,85,100,102,117,130,86,149,161,164,352,347,269,351,53,259,263,290,285,412,371,278,416,446,445,363,433,473,477,496,612,605,590,148 +BaseHP|75 +BaseAttack|125 +BaseDefense|70 +BaseSpAttack|125 +BaseSpDefense|70 +BaseSpeed|115 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon is said to have endowed humans with the determination needed to face any of life’s difficulties.\Willpower Pokémon\0.3\0.3\0,148,0 +Scale|0.7 +Move|1,363 +Move|1,387 +Move|1,156 +Move|1,93 +Move|6,286 +Move|16,197 +Move|21,129 +Move|31,253 +Move|36,248 +Move|46,417 +Move|51,326 +Move|61,387 +Move|66,363 +Move|76,153 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/483.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/483.dat index 795f589d1..12627b22c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/483.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/483.dat @@ -1 +1,51 @@ -{"Name":"Dialga","Number":483,"ExperienceType":"Slow","BaseExperience":306,"Type1":"Steel","Type2":"Dragon","CatchRate":30,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":483,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":140,"EggMoves":[],"Machines":[174,46,92,192,249,244,237,241,173,59,63,182,240,203,218,231,225,87,89,216,189,104,207,214,201,126,129,197,156,213,210,25,32,34,36,38,58,99,82,85,90,102,117,130,86,157,161,164,337,339,280,351,53,317,332,263,290,315,406,421,416,444,446,445,363,430,433,468,496,497,510,523,525,590,15,70,148,560],"TutorMoves":[434],"BaseStats":{"HP":100,"Atk":120,"Def":120,"SpAtk":150,"SpDef":100,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon completely controls the flow of time. It uses its power to travel at will through the past and future.","Species":"Temporal Pokémon","Height":5.4,"Weight":683,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":225},{"Level":2,"ID":184},{"Level":6,"ID":232},{"Level":10,"ID":246},{"Level":15,"ID":163},{"Level":19,"ID":408},{"Level":24,"ID":368},{"Level":28,"ID":337},{"Level":33,"ID":414},{"Level":37,"ID":396},{"Level":42,"ID":231},{"Level":46,"ID":1},{"Level":50,"ID":430}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Dialga +Number|483 +ExperienceType|3 +BaseExperience|306 +Type1|Steel +Type2|Dragon +CatchRate|30 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|483 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|140 +Machines|174,46,92,192,249,244,237,241,173,59,63,182,240,203,218,231,225,87,89,216,189,104,207,214,201,126,129,197,156,213,210,25,32,34,36,38,58,99,82,85,90,102,117,130,86,157,161,164,337,339,280,351,53,317,332,263,290,315,406,421,416,444,446,445,363,430,433,468,496,497,510,523,525,590,15,70,148,560 +TutorMoves|434 +BaseHP|100 +BaseAttack|120 +BaseDefense|120 +BaseSpAttack|150 +BaseSpDefense|100 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon completely controls the flow of time. It uses its power to travel at will through the past and future.\Temporal Pokémon\683\5.4\0,148,0 +Scale|2 +Move|1,225 +Move|1,184 +Move|6,232 +Move|10,246 +Move|15,163 +Move|19,408 +Move|24,368 +Move|28,337 +Move|33,414 +Move|37,396 +Move|42,231 +Move|46,459 +Move|50,430 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/483_primal.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/483_primal.dat new file mode 100644 index 000000000..d975e4def --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/483_primal.dat @@ -0,0 +1,51 @@ +Name|Primal Dialga +Number|483 +ExperienceType|3 +BaseExperience|306 +Type1|Steel +Type2|Dragon +CatchRate|30 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|483 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|140 +Machines|174,46,92,192,249,244,237,241,173,59,63,182,240,203,218,231,225,87,89,216,189,104,207,214,201,126,129,197,156,213,210,25,32,34,36,38,58,99,82,85,90,102,117,130,86,157,161,164,337,339,280,351,53,317,332,263,290,315,406,421,416,444,446,445,363,430,433,468,496,497,510,523,525,590,15,70,148,560 +TutorMoves|434 +BaseHP|100 +BaseAttack|120 +BaseDefense|120 +BaseSpAttack|150 +BaseSpDefense|100 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon completely controls the flow of time. It uses its power to travel at will through the past and future.\Temporal Pokémon\683\5.4\0,148,0 +Scale|2 +Move|1,225 +Move|1,184 +Move|6,232 +Move|10,246 +Move|15,163 +Move|19,408 +Move|24,368 +Move|28,337 +Move|33,414 +Move|37,396 +Move|42,231 +Move|46,459 +Move|50,430 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/484.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/484.dat index 68a03f8c1..cf9397538 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/484.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/484.dat @@ -1 +1,51 @@ -{"Name":"Palkia","Number":484,"ExperienceType":"Slow","BaseExperience":306,"Type1":"Water","Type2":"Dragon","CatchRate":30,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":484,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":140,"EggMoves":[],"Machines":[223,174,46,92,192,249,244,237,241,173,59,63,182,240,203,218,225,87,89,216,189,104,207,214,201,126,129,197,156,213,210,5,25,34,36,38,61,55,58,66,68,69,99,82,85,90,102,117,130,86,157,161,164,264,337,352,258,339,280,351,53,317,332,263,290,411,362,374,406,421,416,444,419,445,363,433,468,496,497,510,523,525,590,15,57,70,250,560,291],"TutorMoves":[434],"BaseStats":{"HP":90,"Atk":120,"Def":100,"SpAtk":150,"SpDef":120,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its total control over the boundaries of space enable it to transport itself to faraway places or even other dimensions.","Species":"Spatial Pokémon","Height":4.2,"Weight":336,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":225},{"Level":2,"ID":184},{"Level":6,"ID":352},{"Level":10,"ID":246},{"Level":15,"ID":163},{"Level":19,"ID":408},{"Level":24,"ID":401},{"Level":28,"ID":337},{"Level":33,"ID":414},{"Level":37,"ID":396},{"Level":42,"ID":401},{"Level":46,"ID":1},{"Level":50,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Palkia +Number|484 +ExperienceType|3 +BaseExperience|306 +Type1|Water +Type2|Dragon +CatchRate|30 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|484 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|140 +Machines|223,174,46,92,192,249,244,237,241,173,59,63,182,240,203,218,225,87,89,216,189,104,207,214,201,126,129,197,156,213,210,5,25,34,36,38,61,55,58,66,68,69,99,82,85,90,102,117,130,86,157,161,164,264,337,352,258,339,280,351,53,317,332,263,290,411,362,374,406,421,416,444,419,445,363,433,468,496,497,510,523,525,590,15,57,70,250,560,291 +TutorMoves|434 +BaseHP|90 +BaseAttack|120 +BaseDefense|100 +BaseSpAttack|150 +BaseSpDefense|120 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its total control over the boundaries of space enable it to transport itself to faraway places or even other dimensions.\Spatial Pokémon\336\4.2\0,148,0 +Scale|2 +Move|1,225 +Move|1,184 +Move|6,352 +Move|10,246 +Move|15,163 +Move|19,408 +Move|24,401 +Move|28,337 +Move|33,414 +Move|37,396 +Move|42,401 +Move|46,460 +Move|50,56 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/485.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/485.dat index 71d4ff679..f8732ebe8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/485.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/485.dat @@ -1 +1,55 @@ -{"Name":"Heatran","Number":485,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Fire","Type2":"Steel","CatchRate":3,"BaseFriendship":100,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":485,"Devolution":0,"CanBreed":false,"IsGenderless":false,"IsMale":50,"Abilities":[18],"HiddenAbility":49,"EggMoves":[],"Machines":[174,46,92,249,237,241,173,63,182,203,218,76,89,216,189,104,207,214,126,197,156,213,25,34,36,38,99,82,102,117,120,130,164,53,263,290,315,406,416,446,445,399,363,488,496,510,267,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":91,"Atk":90,"Def":106,"SpAtk":130,"SpDef":106,"Speed":77},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Boiling blood through its body. It makes its dwelling place in volcanic caves.","Species":"Lava Dome Pokémon","Height":1.7,"Weight":430,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":95,"Moves":[{"Level":1,"ID":463},{"Level":2,"ID":257},{"Level":3,"ID":414},{"Level":4,"ID":442},{"Level":5,"ID":83},{"Level":6,"ID":246},{"Level":9,"ID":43},{"Level":17,"ID":424},{"Level":25,"ID":319},{"Level":33,"ID":242},{"Level":41,"ID":184},{"Level":49,"ID":436},{"Level":57,"ID":83},{"Level":65,"ID":442},{"Level":73,"ID":414},{"Level":81,"ID":257},{"Level":88,"ID":444},{"Level":96,"ID":463}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Heatran +Number|485 +ExperienceType|3 +BaseExperience|270 +Type1|Fire +Type2|Steel +CatchRate|3 +BaseFriendship|100 +EggGroup1|None +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|485 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|50 +Ability1|18 +Ability2|Nothing +HiddenAbility|49 +Machines|174,46,92,249,237,241,173,63,182,203,218,76,89,216,189,104,207,214,126,197,156,213,25,34,36,38,99,82,102,117,120,130,164,53,263,290,315,406,416,446,445,399,363,488,496,510,267,590,70,431,560 +BaseHP|91 +BaseAttack|90 +BaseDefense|106 +BaseSpAttack|130 +BaseSpDefense|106 +BaseSpeed|77 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Boiling blood through its body. It makes its dwelling place in volcanic caves.\Lava Dome Pokémon\430\1.7\0,148,0 +Scale|1.28 +Move|1,463 +Move|1,257 +Move|1,414 +Move|1,442 +Move|1,83 +Move|1,246 +Move|9,43 +Move|17,424 +Move|25,319 +Move|33,242 +Move|41,184 +Move|49,436 +Move|57,83 +Move|65,442 +Move|73,414 +Move|81,257 +Move|88,444 +Move|96,463 +TradeValue|95 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/486.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/486.dat index 983ffa0b6..4331b92dd 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/486.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/486.dat @@ -1 +1,53 @@ -{"Name":"Regigigas","Number":486,"ExperienceType":"Slow","BaseExperience":302,"Type1":"Normal","Type2":"Blank","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":486,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[112],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,192,249,244,237,241,173,63,196,182,203,218,87,89,216,189,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,85,90,102,117,120,130,161,164,264,351,263,290,411,409,416,419,445,363,479,496,267,612,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":110,"Atk":160,"Def":110,"SpAtk":80,"SpDef":110,"Speed":100},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is believed to have shaped REGIROCK, REGICE, and REGISTEEL out of clay, ice, and magma.","Species":"Colossal Pokémon","Height":3.7,"Weight":420,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":95,"Moves":[{"Level":1,"ID":484},{"Level":2,"ID":462},{"Level":3,"ID":7},{"Level":4,"ID":8},{"Level":5,"ID":9},{"Level":6,"ID":146},{"Level":7,"ID":282},{"Level":8,"ID":109},{"Level":9,"ID":193},{"Level":25,"ID":279},{"Level":40,"ID":1},{"Level":50,"ID":428},{"Level":65,"ID":371},{"Level":75,"ID":462},{"Level":90,"ID":484},{"Level":100,"ID":416}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Regigigas +Number|486 +ExperienceType|3 +BaseExperience|302 +Type1|Normal +Type2| +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|486 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|112 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,192,249,244,237,241,173,63,196,182,203,218,87,89,216,189,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,85,90,102,117,120,130,161,164,264,351,263,290,411,409,416,419,445,363,479,496,267,612,590,70,431,560 +BaseHP|110 +BaseAttack|160 +BaseDefense|110 +BaseSpAttack|80 +BaseSpDefense|110 +BaseSpeed|100 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is believed to have shaped REGIROCK, REGICE, and REGISTEEL out of clay, ice, and magma.\Colossal Pokémon\420\3.7\0,148,0 +Scale|2 +Move|1,484 +Move|1,462 +Move|1,7 +Move|1,8 +Move|1,9 +Move|1,146 +Move|1,282 +Move|1,109 +Move|1,193 +Move|25,279 +Move|40,469 +Move|50,428 +Move|65,371 +Move|75,462 +Move|90,484 +Move|100,416 +TradeValue|95 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/487.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/487.dat index dcb452cd5..7d1049c6f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/487.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/487.dat @@ -1 +1,51 @@ -{"Name":"Giratina","Number":487,"ExperienceType":"Slow","BaseExperience":306,"Type1":"Ghost","Type2":"Dragon","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":487,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":140,"EggMoves":[],"Machines":[174,46,92,192,249,244,237,241,173,63,196,182,240,203,218,231,225,87,89,216,94,247,189,104,207,214,129,138,197,156,213,211,210,36,38,99,82,85,102,117,130,86,149,164,337,347,351,332,263,290,412,451,406,261,318,421,371,416,432,444,445,399,363,468,477,496,497,523,525,590,15,19,70,431,560],"TutorMoves":[434],"BaseStats":{"HP":150,"Atk":100,"Def":120,"SpAtk":100,"SpDef":120,"Speed":90},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon is said to live in a world on the reverse side of ours, where common knowledge is distorted and strange.","Species":"Renegade Pokémon","Height":4.5,"Weight":750,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":225},{"Level":2,"ID":184},{"Level":6,"ID":466},{"Level":10,"ID":246},{"Level":15,"ID":163},{"Level":19,"ID":425},{"Level":24,"ID":194},{"Level":28,"ID":337},{"Level":33,"ID":414},{"Level":37,"ID":396},{"Level":42,"ID":421},{"Level":46,"ID":1},{"Level":50,"ID":506}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Giratina +Number|487 +ExperienceType|3 +BaseExperience|306 +Type1|Ghost +Type2|Dragon +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|487 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|140 +Machines|174,46,92,192,249,244,237,241,173,63,196,182,240,203,218,231,225,87,89,216,94,247,189,104,207,214,129,138,197,156,213,211,210,36,38,99,82,85,102,117,130,86,149,164,337,347,351,332,263,290,412,451,406,261,318,421,371,416,432,444,445,399,363,468,477,496,497,523,525,590,15,19,70,431,560 +TutorMoves|434 +BaseHP|150 +BaseAttack|100 +BaseDefense|120 +BaseSpAttack|100 +BaseSpDefense|120 +BaseSpeed|90 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon is said to live in a world on the reverse side of ours, where common knowledge is distorted and strange.\Renegade Pokémon\750\4.5\0,148,0 +Scale|2 +Move|1,225 +Move|1,184 +Move|6,466 +Move|10,246 +Move|15,163 +Move|19,425 +Move|24,194 +Move|28,337 +Move|33,414 +Move|37,396 +Move|42,421 +Move|46,467 +Move|50,506 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/487_origin.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/487_origin.dat index b4b64a898..5836c26c1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/487_origin.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/487_origin.dat @@ -1 +1,51 @@ -{"Name":"Giratina","Number":487,"ExperienceType":"Slow","BaseExperience":306,"Type1":"Ghost","Type2":"Dragon","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":487,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,46,92,192,249,244,237,241,173,63,196,182,240,203,218,231,225,87,89,216,94,247,189,104,207,214,129,138,197,156,213,211,210,36,38,99,82,85,102,117,130,86,149,164,337,347,351,332,263,290,412,451,406,261,318,421,371,416,432,444,445,399,363,468,477,496,497,523,525,590,15,19,70,431,560],"TutorMoves":[434],"BaseStats":{"HP":150,"Atk":120,"Def":100,"SpAtk":120,"SpDef":100,"Speed":90},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon is said to live in a world on the reverse side of ours, where common knowledge is distorted and strange.","Species":"Renegade Pokémon","Height":4.5,"Weight":750,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":225},{"Level":2,"ID":184},{"Level":6,"ID":466},{"Level":10,"ID":246},{"Level":15,"ID":163},{"Level":19,"ID":425},{"Level":24,"ID":194},{"Level":28,"ID":337},{"Level":33,"ID":414},{"Level":37,"ID":396},{"Level":42,"ID":421},{"Level":46,"ID":1},{"Level":50,"ID":506}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Giratina +Number|487 +ExperienceType|3 +BaseExperience|306 +Type1|Ghost +Type2|Dragon +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|487 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,192,249,244,237,241,173,63,196,182,240,203,218,231,225,87,89,216,94,247,189,104,207,214,129,138,197,156,213,211,210,36,38,99,82,85,102,117,130,86,149,164,337,347,351,332,263,290,412,451,406,261,318,421,371,416,432,444,445,399,363,468,477,496,497,523,525,590,15,19,70,431,560 +TutorMoves|434 +BaseHP|150 +BaseAttack|120 +BaseDefense|100 +BaseSpAttack|120 +BaseSpDefense|100 +BaseSpeed|90 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon is said to live in a world on the reverse side of ours, where common knowledge is distorted and strange.\Renegade Pokémon\750\4.5\0,148,0 +Scale|2 +Move|1,225 +Move|1,184 +Move|6,466 +Move|10,246 +Move|15,163 +Move|19,425 +Move|24,194 +Move|28,337 +Move|33,414 +Move|37,396 +Move|42,421 +Move|46,467 +Move|50,506 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/488.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/488.dat index 8db0b2d64..43304699b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/488.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/488.dat @@ -1 +1,54 @@ -{"Name":"Cresselia","Number":488,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Psychic","Type2":"Blank","CatchRate":3,"BaseFriendship":100,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":488,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,244,237,241,173,63,196,182,240,203,218,76,216,94,247,189,104,207,214,129,138,197,156,213,210,171,34,36,38,58,99,100,102,115,117,130,86,149,161,164,347,113,219,263,290,285,412,451,278,416,445,363,447,433,473,477,496,590,148,560],"TutorMoves":[],"BaseStats":{"HP":120,"Atk":70,"Def":120,"SpAtk":75,"SpDef":130,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Those who sleep holding CRESSELIA’s feather are assured of joyful dreams. It is said to represent the crescent moon.","Species":"Lunar Pokémon","Height":1.5,"Weight":85.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":95,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":375},{"Level":3,"ID":427},{"Level":4,"ID":236},{"Level":5,"ID":93},{"Level":6,"ID":104},{"Level":11,"ID":219},{"Level":20,"ID":54},{"Level":29,"ID":62},{"Level":38,"ID":248},{"Level":47,"ID":163},{"Level":57,"ID":236},{"Level":66,"ID":427},{"Level":75,"ID":375},{"Level":84,"ID":1},{"Level":93,"ID":94},{"Level":99,"ID":585}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Cresselia +Number|488 +ExperienceType|3 +BaseExperience|270 +Type1|Psychic +Type2| +CatchRate|3 +BaseFriendship|100 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|488 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,244,237,241,173,63,196,182,240,203,218,76,216,94,247,189,104,207,214,129,138,197,156,213,210,171,34,36,38,58,99,100,102,115,117,130,86,149,161,164,347,113,219,263,290,285,412,451,278,416,445,363,447,433,473,477,496,590,148,560 +BaseHP|120 +BaseAttack|70 +BaseDefense|120 +BaseSpAttack|75 +BaseSpDefense|130 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Those who sleep holding CRESSELIA’s feather are assured of joyful dreams. It is said to represent the crescent moon.\Lunar Pokémon\85.6\1.5\0,148,0 +Scale|1.2 +Move|1,461 +Move|1,375 +Move|1,427 +Move|1,236 +Move|1,93 +Move|1,104 +Move|11,219 +Move|20,54 +Move|29,62 +Move|38,248 +Move|47,163 +Move|57,236 +Move|66,427 +Move|75,375 +Move|84,461 +Move|93,94 +Move|99,585 +TradeValue|95 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/489.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/489.dat index 489449b6a..2ee404d1b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/489.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/489.dat @@ -1 +1,48 @@ -{"Name":"Phione","Number":489,"ExperienceType":"Slow","BaseExperience":216,"Type1":"Water","Type2":"Blank","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Fairy","BaseEggSteps":10455,"EggPokemon":489,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[93],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,244,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,61,55,58,99,100,102,117,164,352,263,290,362,374,416,445,363,496,503,605,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":80,"Def":80,"SpAtk":80,"SpDef":80,"Speed":80},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When the water warms flotation sac on their heads and drift languidly on the sea in packs.","Species":"Sea Drifter Pokémon","Height":0.4,"Weight":3.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":90,"Moves":[{"Level":1,"ID":145},{"Level":2,"ID":346},{"Level":9,"ID":204},{"Level":16,"ID":48},{"Level":24,"ID":61},{"Level":31,"ID":151},{"Level":39,"ID":250},{"Level":46,"ID":352},{"Level":54,"ID":392},{"Level":61,"ID":291},{"Level":69,"ID":240}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Phione +Number|489 +ExperienceType|3 +BaseExperience|216 +Type1|Water +Type2| +CatchRate|30 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Fairy +BaseEggSteps|10455 +EggPokemon|489 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|93 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,244,237,173,59,63,196,182,240,203,218,216,189,104,207,214,129,197,156,213,61,55,58,99,100,102,117,164,352,263,290,362,374,416,445,363,496,503,605,590,57,250,127,291 +BaseHP|80 +BaseAttack|80 +BaseDefense|80 +BaseSpAttack|80 +BaseSpDefense|80 +BaseSpeed|80 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When the water warms flotation sac on their heads and drift languidly on the sea in packs.\Sea Drifter Pokémon\3.1\0.4\0,148,0 +Scale|0.7 +Move|1,145 +Move|1,346 +Move|9,204 +Move|16,48 +Move|24,61 +Move|31,151 +Move|39,250 +Move|46,352 +Move|54,392 +Move|61,291 +Move|69,240 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/49.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/49.dat index bd4c9e5a8..13c5cd4c2 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/49.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/49.dat @@ -1 +1,58 @@ -{"Name":"Venomoth","Number":49,"ExperienceType":"MediumFast","BaseExperience":158,"Type1":"Bug","Type2":"Poison","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":48,"Devolution":48,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[19,110],"HiddenAbility":147,"EggMoves":[97,226,450,202,234,476,103,290,324,285,390],"Machines":[174,92,237,241,230,173,63,182,202,203,218,216,104,207,214,188,129,197,156,213,13,18,36,99,72,100,102,117,149,164,332,263,290,285,355,412,318,416,432,445,363,474,496,522,611,590,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":65,"Def":60,"SpAtk":90,"SpDef":75,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"When it attacks, it flaps its large wings violently to scatter its poisonous powder all around.","Species":"Poison Moth Pokémon","Height":1.5,"Weight":12.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":25,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":48},{"Level":3,"ID":1},{"Level":4,"ID":193},{"Level":5,"ID":318},{"Level":6,"ID":405},{"Level":7,"ID":483},{"Level":8,"ID":48},{"Level":11,"ID":93},{"Level":13,"ID":77},{"Level":17,"ID":141},{"Level":23,"ID":78},{"Level":25,"ID":60},{"Level":29,"ID":79},{"Level":31,"ID":16},{"Level":37,"ID":324},{"Level":41,"ID":428},{"Level":47,"ID":305},{"Level":55,"ID":94},{"Level":59,"ID":405},{"Level":63,"ID":483}],"EvolutionConditions":[],"Items":[{"Id":154,"Chance":5}]} \ No newline at end of file +Name|Venomoth +Number|49 +ExperienceType|1 +BaseExperience|158 +Type1|Bug +Type2|Poison +CatchRate|75 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|48 +IsGenderLess|0 +IsMale|50 +Ability1|19 +Ability2|110 +HiddenAbility|147 +EggMoves|97,226,450,202,234,476,103,290,324,285,390 +Machines|174,92,237,241,230,173,63,182,202,203,218,216,104,207,214,188,129,197,156,213,13,18,36,99,72,100,102,117,149,164,332,263,290,285,355,412,318,416,432,445,363,474,496,522,611,590,148 +BaseHP|70 +BaseAttack|65 +BaseDefense|60 +BaseSpAttack|90 +BaseSpDefense|75 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|1 +CanSwim|0 +Pokedex|When it attacks, it flaps its large wings violently to scatter its poisonous powder all around.\Poison Moth Pokémon\12.5\1.5\0,148,0 +Scale|1.2 +Move|1,33 +Move|1,48 +Move|1,50 +Move|1,193 +Move|1,318 +Move|1,405 +Move|1,483 +Move|5,48 +Move|11,93 +Move|13,77 +Move|17,141 +Move|23,78 +Move|25,60 +Move|29,79 +Move|31,16 +Move|37,324 +Move|41,428 +Move|47,305 +Move|55,94 +Move|59,405 +Move|63,483 +Item|5,154 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/490.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/490.dat index 7ce036592..f904ca618 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/490.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/490.dat @@ -1 +1,50 @@ -{"Name":"Manaphy","Number":490,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Water","Type2":"Blank","CatchRate":3,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Fairy","BaseEggSteps":2805,"EggPokemon":489,"Devolution":489,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[93],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,244,237,173,59,63,196,182,240,203,218,216,94,189,104,207,214,129,197,156,213,36,61,55,58,99,100,102,117,164,352,263,290,285,362,374,416,445,363,496,503,605,590,57,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":100,"Def":100,"SpAtk":100,"SpDef":100,"Speed":100},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It starts its life with a wondrous power that permits it to bond with any kind of Pokémon.","Species":"Seafaring Pokémon","Height":0.3,"Weight":1.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":110,"Moves":[{"Level":1,"ID":294},{"Level":2,"ID":145},{"Level":3,"ID":346},{"Level":9,"ID":204},{"Level":16,"ID":48},{"Level":24,"ID":61},{"Level":31,"ID":151},{"Level":39,"ID":250},{"Level":46,"ID":352},{"Level":54,"ID":392},{"Level":61,"ID":291},{"Level":69,"ID":240},{"Level":76,"ID":391}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Manaphy +Number|490 +ExperienceType|3 +BaseExperience|270 +Type1|Water +Type2| +CatchRate|3 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Fairy +BaseEggSteps|2805 +EggPokemon|489 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|93 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,244,237,173,59,63,196,182,240,203,218,216,94,189,104,207,214,129,197,156,213,36,61,55,58,99,100,102,117,164,352,263,290,285,362,374,416,445,363,496,503,605,590,57,148,250,127,291 +BaseHP|100 +BaseAttack|100 +BaseDefense|100 +BaseSpAttack|100 +BaseSpDefense|100 +BaseSpeed|100 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It starts its life with a wondrous power that permits it to bond with any kind of Pokémon.\Seafaring Pokémon\1.4\0.3\0,148,0 +Scale|0.7 +Move|1,294 +Move|1,145 +Move|1,346 +Move|9,204 +Move|16,48 +Move|24,61 +Move|31,151 +Move|39,250 +Move|46,352 +Move|54,392 +Move|61,291 +Move|69,240 +Move|76,391 +TradeValue|110 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/491.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/491.dat index 1dcf7ce9b..18299e4dd 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/491.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/491.dat @@ -1 +1,49 @@ -{"Name":"Darkrai","Number":491,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Dark","Type2":"Blank","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":491,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[123],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,249,244,237,241,173,59,63,196,182,203,218,225,87,216,94,247,189,104,207,214,129,197,156,213,168,171,5,36,38,58,66,68,69,99,85,100,102,117,120,164,264,351,263,290,289,411,374,409,373,416,445,399,363,496,555,612,590,70,148,431],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":90,"Def":90,"SpAtk":135,"SpDef":90,"Speed":125},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It chases people and Pokémon from its territory by causing them to experience deep, nightmarish slumbers.","Species":"Pitch-Black Pokémon","Height":1.5,"Weight":50.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":120,"Moves":[{"Level":1,"ID":466},{"Level":2,"ID":1},{"Level":11,"ID":98},{"Level":20,"ID":95},{"Level":29,"ID":185},{"Level":38,"ID":171},{"Level":47,"ID":104},{"Level":57,"ID":114},{"Level":66,"ID":1},{"Level":75,"ID":417},{"Level":84,"ID":138},{"Level":93,"ID":399}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Darkrai +Number|491 +ExperienceType|3 +BaseExperience|270 +Type1|Dark +Type2| +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|491 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|123 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,249,244,237,241,173,59,63,196,182,203,218,225,87,216,94,247,189,104,207,214,129,197,156,213,168,171,5,36,38,58,66,68,69,99,85,100,102,117,120,164,264,351,263,290,289,411,374,409,373,416,445,399,363,496,555,612,590,70,148,431 +BaseHP|70 +BaseAttack|90 +BaseDefense|90 +BaseSpAttack|135 +BaseSpDefense|90 +BaseSpeed|125 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It chases people and Pokémon from its territory by causing them to experience deep, nightmarish slumbers.\Pitch-Black Pokémon\50.5\1.5\0,148,0 +Scale|1.2 +Move|1,466 +Move|1,50 +Move|11,98 +Move|20,95 +Move|29,185 +Move|38,171 +Move|47,104 +Move|57,114 +Move|66,464 +Move|75,417 +Move|84,138 +Move|93,399 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/492.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/492.dat index 51ce29b63..118548685 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/492.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/492.dat @@ -1 +1,49 @@ -{"Name":"Shaymin","Number":492,"ExperienceType":"MediumSlow","BaseExperience":270,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":100,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":492,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[30],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,244,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,129,197,156,213,13,18,25,36,68,99,72,100,102,117,130,164,331,263,290,416,445,363,496,267,605,590,148],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":100,"Def":100,"SpAtk":100,"SpDef":100,"Speed":100},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The blooming of Gracidea flowers confers the power of flight upon it. Feelings of gratitude are the message it delivers.","Species":"Gratitude Pokémon","Height":0.2,"Weight":2.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":120,"Moves":[{"Level":1,"ID":74},{"Level":10,"ID":345},{"Level":19,"ID":73},{"Level":28,"ID":235},{"Level":37,"ID":230},{"Level":46,"ID":363},{"Level":55,"ID":1},{"Level":64,"ID":312},{"Level":73,"ID":412},{"Level":82,"ID":186},{"Level":91,"ID":361},{"Level":100,"ID":465}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Shaymin +Number|492 +ExperienceType|2 +BaseExperience|270 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|100 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|492 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|30 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,244,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,129,197,156,213,13,18,25,36,68,99,72,100,102,117,130,164,331,263,290,416,445,363,496,267,605,590,148 +BaseHP|100 +BaseAttack|100 +BaseDefense|100 +BaseSpAttack|100 +BaseSpDefense|100 +BaseSpeed|100 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The blooming of Gracidea flowers confers the power of flight upon it. Feelings of gratitude are the message it delivers.\Gratitude Pokémon\2.1\0.2\0,148,0 +Scale|0.7 +Move|1,74 +Move|10,345 +Move|19,73 +Move|28,235 +Move|37,230 +Move|46,363 +Move|55,388 +Move|64,312 +Move|73,412 +Move|82,186 +Move|91,361 +Move|100,465 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/492_sky.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/492_sky.dat index b30b9868c..269965999 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/492_sky.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/492_sky.dat @@ -1 +1,49 @@ -{"Name":"Shaymin","Number":492,"ExperienceType":"MediumSlow","BaseExperience":270,"Type1":"Grass","Type2":"Flying","CatchRate":45,"BaseFriendship":100,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":492,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[32],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,244,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,129,197,156,213,13,18,25,36,68,99,72,100,102,117,130,164,331,263,290,416,445,363,496,267,605,590,148],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":103,"Def":75,"SpAtk":120,"SpDef":75,"Speed":127},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The blooming of Gracidea flowers confers the power of flight upon it. Feelings of gratitude are the message it delivers.","Species":"Gratitude Pokémon","Height":0.2,"Weight":2.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":120,"Moves":[{"Level":1,"ID":74},{"Level":10,"ID":345},{"Level":19,"ID":73},{"Level":28,"ID":98},{"Level":37,"ID":230},{"Level":46,"ID":363},{"Level":55,"ID":1},{"Level":64,"ID":403},{"Level":73,"ID":412},{"Level":82,"ID":186},{"Level":91,"ID":437},{"Level":100,"ID":465}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Shaymin +Number|492 +ExperienceType|2 +BaseExperience|270 +Type1|Grass +Type2|Flying +CatchRate|45 +BaseFriendship|100 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|492 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|32 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,244,237,241,230,173,63,182,202,203,218,76,216,189,104,207,214,129,197,156,213,13,18,25,36,68,99,72,100,102,117,130,164,331,263,290,416,445,363,496,267,605,590,148 +BaseHP|100 +BaseAttack|103 +BaseDefense|75 +BaseSpAttack|120 +BaseSpDefense|75 +BaseSpeed|127 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The blooming of Gracidea flowers confers the power of flight upon it. Feelings of gratitude are the message it delivers.\Gratitude Pokémon\2.1\0.2\0,148,0 +Scale|0.7 +Move|1,74 +Move|10,345 +Move|19,73 +Move|28,98 +Move|37,230 +Move|46,363 +Move|55,388 +Move|64,403 +Move|73,412 +Move|82,186 +Move|91,437 +Move|100,465 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/493.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/493.dat index 47efcf987..b11eb5a8b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/493.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/493.dat @@ -1 +1,52 @@ -{"Name":"Arceus","Number":493,"ExperienceType":"Slow","BaseExperience":324,"Type1":"Normal","Type2":"Blank","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":493,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[121],"HiddenAbility":-1,"EggMoves":[],"Machines":[14,15,19,46,53,57,58,59,63,70,76,85,86,87,89,92,94,104,113,115,126,127,138,148,156,157,164,182,188,201,207,216,218,219,237,240,241,244,247,249,258,261,263,280,315,317,332,337,347,371,398,404,411,412,416,421,430,433,444,447,451,468,473,477,496,497,510,511,514,523,526,555],"TutorMoves":[434],"BaseStats":{"HP":120,"Atk":120,"Def":120,"SpAtk":120,"SpDef":120,"Speed":120},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"According to the legends of Sinnoh Pokémon emerged from an egg and shaped all there is in this world.","Species":"Alpha Pokémon","Height":3.2,"Weight":320,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":130,"Moves":[{"Level":1,"ID":69},{"Level":2,"ID":322},{"Level":3,"ID":363},{"Level":4,"ID":386},{"Level":10,"ID":356},{"Level":20,"ID":414},{"Level":30,"ID":304},{"Level":40,"ID":245},{"Level":50,"ID":287},{"Level":60,"ID":248},{"Level":70,"ID":105},{"Level":80,"ID":63},{"Level":90,"ID":195},{"Level":100,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Arceus +Number|493 +ExperienceType|3 +BaseExperience|324 +Type1|Normal +Type2| +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|493 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|121 +Ability2|Nothing +HiddenAbility|Nothing +Machines|14,15,19,46,53,57,58,59,63,70,76,85,86,87,89,92,94,104,113,115,126,127,138,148,156,157,164,182,188,201,207,216,218,219,237,240,241,244,247,249,258,261,263,280,315,317,332,337,347,371,398,404,411,412,416,421,430,433,444,447,451,468,473,477,496,497,510,511,514,523,526,555 +TutorMoves|434 +BaseHP|120 +BaseAttack|120 +BaseDefense|120 +BaseSpAttack|120 +BaseSpDefense|120 +BaseSpeed|120 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|According to the legends of Sinnoh Pokémon emerged from an egg and shaped all there is in this world.\Alpha Pokémon\320\3.2\0,148,0 +Scale|2 +Move|80,63 +Move|1,69 +Move|70,105 +Move|90,195 +Move|40,245 +Move|60,248 +Move|50,287 +Move|30,304 +Move|1,322 +Move|10,356 +Move|1,363 +Move|1,386 +Move|20,414 +Move|100,449 +TradeValue|130 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/494.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/494.dat index d3e2189c2..be20cb85b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/494.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/494.dat @@ -1 +1,54 @@ -{"Name":"Victini","Number":494,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Psychic","Type2":"Fire","CatchRate":3,"BaseFriendship":100,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":494,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[162],"HiddenAbility":-1,"EggMoves":[],"Machines":[29,174,92,249,244,237,241,173,63,182,203,218,76,87,216,94,104,207,214,126,129,9,197,156,213,7,171,36,66,68,69,99,85,100,102,117,118,130,149,161,164,280,351,53,263,290,285,315,411,412,374,373,416,445,363,433,473,477,488,496,510,526,528,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":100,"Def":100,"SpAtk":100,"SpDef":100,"Speed":100},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it shares the infinite energy it creates, that being's entire body will be overflowing with power.","Species":"Victory Pokémon","Height":0.4,"Weight":4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":120,"Moves":[{"Level":1,"ID":545},{"Level":2,"ID":116},{"Level":3,"ID":93},{"Level":4,"ID":1},{"Level":5,"ID":98},{"Level":9,"ID":203},{"Level":17,"ID":29},{"Level":25,"ID":488},{"Level":33,"ID":179},{"Level":41,"ID":481},{"Level":49,"ID":428},{"Level":57,"ID":517},{"Level":65,"ID":38},{"Level":73,"ID":394},{"Level":81,"ID":1},{"Level":89,"ID":500},{"Level":97,"ID":315}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Victini +Number|494 +ExperienceType|3 +BaseExperience|270 +Type1|Psychic +Type2|Fire +CatchRate|3 +BaseFriendship|100 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|494 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|162 +Ability2|Nothing +HiddenAbility|Nothing +Machines|29,174,92,249,244,237,241,173,63,182,203,218,76,87,216,94,104,207,214,126,129,9,197,156,213,7,171,36,66,68,69,99,85,100,102,117,118,130,149,161,164,280,351,53,263,290,285,315,411,412,374,373,416,445,363,433,473,477,488,496,510,526,528,612,605,590,148 +BaseHP|100 +BaseAttack|100 +BaseDefense|100 +BaseSpAttack|100 +BaseSpDefense|100 +BaseSpeed|100 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it shares the infinite energy it creates, that being's entire body will be overflowing with power.\Victory Pokémon\4\0.4\0,148,0 +Scale|0.7 +Move|1,545 +Move|1,116 +Move|1,93 +Move|1,510 +Move|1,98 +Move|9,203 +Move|17,29 +Move|25,488 +Move|33,179 +Move|41,481 +Move|49,428 +Move|57,517 +Move|65,38 +Move|73,394 +Move|81,515 +Move|89,500 +Move|97,315 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/495.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/495.dat index 98fc8bf50..f09bbc03f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/495.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/495.dat @@ -1 +1,54 @@ -{"Name":"Snivy","Number":495,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":495,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":126,"EggMoves":[445,137,580,231,345,212,243,363,228,230,239],"Machines":[174,92,237,241,173,63,182,202,203,218,76,231,216,91,104,207,214,197,156,213,34,36,68,99,72,102,117,164,331,263,290,289,412,416,445,363,496,267,590],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":45,"Def":55,"SpAtk":45,"SpDef":55,"Speed":63},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Being exposed to sunlight makes its movements swifter. It uses vines more adeptly than its hands.","Species":"Grass Snake Pokémon","Height":0.6,"Weight":8.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":4,"ID":43},{"Level":7,"ID":22},{"Level":10,"ID":35},{"Level":13,"ID":74},{"Level":16,"ID":536},{"Level":19,"ID":73},{"Level":22,"ID":72},{"Level":25,"ID":21},{"Level":28,"ID":348},{"Level":31,"ID":489},{"Level":34,"ID":202},{"Level":37,"ID":378},{"Level":40,"ID":1},{"Level":43,"ID":437}],"EvolutionConditions":[{"Condition":"17","ConditionType":"Level","Evolution":496,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Snivy +Number|495 +ExperienceType|2 +BaseExperience|62 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|495 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|126 +EggMoves|445,137,580,231,345,212,243,363,228,230,239 +Machines|174,92,237,241,173,63,182,202,203,218,76,231,216,91,104,207,214,197,156,213,34,36,68,99,72,102,117,164,331,263,290,289,412,416,445,363,496,267,590 +BaseHP|45 +BaseAttack|45 +BaseDefense|55 +BaseSpAttack|45 +BaseSpDefense|55 +BaseSpeed|63 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Being exposed to sunlight makes its movements swifter. It uses vines more adeptly than its hands.\Grass Snake Pokémon\8.1\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|4,43 +Move|7,22 +Move|10,35 +Move|13,74 +Move|16,536 +Move|19,73 +Move|22,72 +Move|25,21 +Move|28,348 +Move|31,489 +Move|34,202 +Move|37,378 +Move|40,380 +Move|43,437 +TradeValue|50 +EvolutionCondition|496,level,17,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/496.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/496.dat index ea4909220..75684b291 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/496.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/496.dat @@ -1 +1,55 @@ -{"Name":"Servine","Number":496,"ExperienceType":"MediumSlow","BaseExperience":145,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":495,"Devolution":495,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":126,"EggMoves":[445,137,580,231,345,212,243,363,228,230,239],"Machines":[174,92,237,241,173,63,182,202,203,218,76,231,216,91,104,207,214,197,156,213,34,36,68,99,72,82,102,117,164,331,263,290,289,412,416,445,363,496,267,590],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":60,"Def":75,"SpAtk":60,"SpDef":75,"Speed":83},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it gets dirty, its leaves can't be used in photosynthesis, so it always keeps itself clean.","Species":"Grass Snake Pokémon","Height":0.8,"Weight":16,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":43},{"Level":3,"ID":22},{"Level":4,"ID":43},{"Level":7,"ID":22},{"Level":13,"ID":74},{"Level":16,"ID":536},{"Level":20,"ID":73},{"Level":24,"ID":72},{"Level":28,"ID":21},{"Level":32,"ID":348},{"Level":36,"ID":489},{"Level":40,"ID":202},{"Level":44,"ID":378},{"Level":48,"ID":1},{"Level":52,"ID":437}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":497,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Servine +Number|496 +ExperienceType|2 +BaseExperience|145 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|495 +IsGenderLess|0 +CanBreed|1 +Devolution|495 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|126 +EggMoves|445,137,580,231,345,212,243,363,228,230,239 +Machines|174,92,237,241,173,63,182,202,203,218,76,231,216,91,104,207,214,197,156,213,34,36,68,99,72,82,102,117,164,331,263,290,289,412,416,445,363,496,267,590 +BaseHP|60 +BaseAttack|60 +BaseDefense|75 +BaseSpAttack|60 +BaseSpDefense|75 +BaseSpeed|83 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|When it gets dirty, its leaves can't be used in photosynthesis, so it always keeps itself clean.\Grass Snake Pokémon\16\0.8\0,148,0 +Scale|0.92 +Move|1,33 +Move|1,43 +Move|1,22 +Move|4,43 +Move|7,22 +Move|13,74 +Move|16,536 +Move|20,73 +Move|24,72 +Move|28,21 +Move|32,348 +Move|36,489 +Move|40,202 +Move|44,378 +Move|48,380 +Move|52,437 +TradeValue|60 +EvolutionCondition|497,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/497.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/497.dat index cb2576b0b..041e9cdea 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/497.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/497.dat @@ -1 +1,55 @@ -{"Name":"Serperior","Number":497,"ExperienceType":"MediumSlow","BaseExperience":238,"Type1":"Grass","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":495,"Devolution":496,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[65],"HiddenAbility":126,"EggMoves":[445,137,580,231,345,212,243,363,228,230,239],"Machines":[174,92,249,237,241,173,63,182,202,203,218,76,231,216,91,104,207,214,197,156,213,34,36,38,68,99,72,82,102,117,118,130,164,331,263,290,289,412,406,416,445,363,496,525,267,590,70,560],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":75,"Def":95,"SpAtk":75,"SpDef":95,"Speed":113},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":3},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It only gives its all fighting against strong opponents who are not fazed by the glare from Serperior's noble eyes.","Species":"Regal Pokémon","Height":3.3,"Weight":63,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":70,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":43},{"Level":3,"ID":22},{"Level":4,"ID":43},{"Level":7,"ID":22},{"Level":13,"ID":74},{"Level":16,"ID":536},{"Level":20,"ID":73},{"Level":24,"ID":72},{"Level":28,"ID":21},{"Level":32,"ID":348},{"Level":38,"ID":489},{"Level":44,"ID":202},{"Level":50,"ID":378},{"Level":56,"ID":1},{"Level":62,"ID":437}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Serperior +Number|497 +ExperienceType|2 +BaseExperience|238 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|495 +IsGenderLess|0 +CanBreed|1 +Devolution|496 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|126 +EggMoves|445,137,580,231,345,212,243,363,228,230,239 +Machines|174,92,249,237,241,173,63,182,202,203,218,76,231,216,91,104,207,214,197,156,213,34,36,38,68,99,72,82,102,117,118,130,164,331,263,290,289,412,406,416,445,363,496,525,267,590,70,560 +TutorMoves|338 +BaseHP|75 +BaseAttack|75 +BaseDefense|95 +BaseSpAttack|75 +BaseSpDefense|95 +BaseSpeed|113 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|0 +CanSwim|0 +Pokedex|It only gives its all fighting against strong opponents who are not fazed by the glare from Serperior's noble eyes.\Regal Pokémon\63\3.3\0,148,0 +Scale|2 +Move|1,33 +Move|1,43 +Move|1,22 +Move|4,43 +Move|7,22 +Move|13,74 +Move|16,536 +Move|20,73 +Move|24,72 +Move|28,21 +Move|32,348 +Move|38,489 +Move|44,202 +Move|50,378 +Move|56,380 +Move|62,437 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/498.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/498.dat index cbf7ef78a..48608cbf7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/498.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/498.dat @@ -1 +1,54 @@ -{"Name":"Tepig","Number":498,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":498,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":47,"EggMoves":[34,343,174,283,484,222,214,389,276,37,281],"Machines":[174,205,46,92,249,237,241,173,63,182,203,218,76,231,216,104,207,214,126,111,197,156,213,34,36,99,102,117,164,269,53,317,263,290,261,416,360,445,363,447,488,496,497,510,528,612,590,70],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":63,"Def":45,"SpAtk":45,"SpDef":45,"Speed":45},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It loves to eat roasted berries, but sometimes it gets too excited and burns them to a crisp.","Species":"Fire Pig Pokémon","Height":0.5,"Weight":9.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":3,"ID":39},{"Level":7,"ID":52},{"Level":9,"ID":316},{"Level":13,"ID":111},{"Level":15,"ID":488},{"Level":19,"ID":123},{"Level":21,"ID":205},{"Level":25,"ID":36},{"Level":27,"ID":535},{"Level":31,"ID":372},{"Level":33,"ID":53},{"Level":37,"ID":457},{"Level":39,"ID":46},{"Level":43,"ID":394}],"EvolutionConditions":[{"Condition":"17","ConditionType":"Level","Evolution":499,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Tepig +Number|498 +ExperienceType|2 +BaseExperience|62 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|498 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|47 +EggMoves|34,343,174,283,484,222,214,389,276,37,281 +Machines|174,205,46,92,249,237,241,173,63,182,203,218,76,231,216,104,207,214,126,111,197,156,213,34,36,99,102,117,164,269,53,317,263,290,261,416,360,445,363,447,488,496,497,510,528,612,590,70 +BaseHP|65 +BaseAttack|63 +BaseDefense|45 +BaseSpAttack|45 +BaseSpDefense|45 +BaseSpeed|45 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It loves to eat roasted berries, but sometimes it gets too excited and burns them to a crisp.\Fire Pig Pokémon\9.9\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|3,39 +Move|7,52 +Move|9,316 +Move|13,111 +Move|15,488 +Move|19,123 +Move|21,205 +Move|25,36 +Move|27,535 +Move|31,372 +Move|33,53 +Move|37,457 +Move|39,46 +Move|43,394 +TradeValue|50 +EvolutionCondition|499,level,17,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/499.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/499.dat index 05ba8357a..662704219 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/499.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/499.dat @@ -1 +1,58 @@ -{"Name":"Pignite","Number":499,"ExperienceType":"MediumSlow","BaseExperience":146,"Type1":"Fire","Type2":"Fighting","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":498,"Devolution":498,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":47,"EggMoves":[34,343,174,283,484,222,214,389,276,37,281],"Machines":[174,205,46,92,249,237,241,173,63,182,203,218,76,231,216,104,207,214,126,111,9,197,156,213,7,5,34,36,66,68,69,99,102,117,118,130,157,164,264,269,280,53,317,263,290,411,374,261,416,444,360,445,363,447,488,490,496,497,510,526,528,612,590,70],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":93,"Def":55,"SpAtk":70,"SpDef":55,"Speed":55},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The more it eats, the more fuel it has to make the fire in its stomach stronger. This fills it with even more power.","Species":"Fire Pig Pokémon","Height":1,"Weight":55.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":39},{"Level":3,"ID":52},{"Level":4,"ID":316},{"Level":5,"ID":39},{"Level":7,"ID":52},{"Level":9,"ID":316},{"Level":13,"ID":111},{"Level":15,"ID":488},{"Level":17,"ID":292},{"Level":20,"ID":123},{"Level":23,"ID":205},{"Level":28,"ID":36},{"Level":31,"ID":535},{"Level":36,"ID":372},{"Level":39,"ID":53},{"Level":44,"ID":457},{"Level":47,"ID":46},{"Level":52,"ID":394}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":500,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Pignite +Number|499 +ExperienceType|2 +BaseExperience|146 +Type1|Fire +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|498 +IsGenderLess|0 +CanBreed|1 +Devolution|498 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|47 +EggMoves|34,343,174,283,484,222,214,389,276,37,281 +Machines|174,205,46,92,249,237,241,173,63,182,203,218,76,231,216,104,207,214,126,111,9,197,156,213,7,5,34,36,66,68,69,99,102,117,118,130,157,164,264,269,280,53,317,263,290,411,374,261,416,444,360,445,363,447,488,490,496,497,510,526,528,612,590,70 +BaseHP|90 +BaseAttack|93 +BaseDefense|55 +BaseSpAttack|70 +BaseSpDefense|55 +BaseSpeed|55 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The more it eats, the more fuel it has to make the fire in its stomach stronger. This fills it with even more power.\Fire Pig Pokémon\55.5\1\0,148,0 +Scale|1 +Move|1,33 +Move|1,39 +Move|1,52 +Move|1,316 +Move|3,39 +Move|7,52 +Move|9,316 +Move|13,111 +Move|15,488 +Move|17,292 +Move|20,123 +Move|23,205 +Move|28,36 +Move|31,535 +Move|36,372 +Move|39,53 +Move|44,457 +Move|47,46 +Move|52,394 +TradeValue|60 +EvolutionCondition|500,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/5.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/5.dat index 96ba3616b..773e1b612 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/5.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/5.dat @@ -1 +1,50 @@ -{"Name":"Charmeleon","Number":5,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Fire","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":4,"Devolution":4,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":94,"EggMoves":[314,246,187,44,68,242,349,406,407,394,264,232,200,14,251,157],"Machines":[223,29,174,46,92,249,237,241,173,63,182,203,218,231,225,216,91,189,104,207,214,126,129,111,9,197,156,213,7,210,5,14,25,34,36,66,68,69,99,82,102,117,130,157,164,264,337,280,53,317,332,263,290,315,374,261,421,416,445,363,468,488,496,497,510,612,590,15,70],"TutorMoves":[],"BaseStats":{"HP":58,"Atk":64,"Def":58,"SpAtk":80,"SpDef":65,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is very hotheaded by nature so it constantly seeks opponents. It calms down only when it wins.","Species":"Flame Pokémon","Height":1.1,"Weight":19,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":60,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":52},{"Level":3,"ID":289},{"Level":7,"ID":52},{"Level":10,"ID":108},{"Level":17,"ID":82},{"Level":21,"ID":184},{"Level":28,"ID":424},{"Level":32,"ID":481},{"Level":39,"ID":163},{"Level":43,"ID":53},{"Level":50,"ID":83},{"Level":54,"ID":517}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":6,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Charmeleon +Number|5 +ExperienceType|2 +BaseExperience|142 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|4 +IsGenderLess|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|94 +EggMoves|314,246,187,44,68,242,349,406,407,394,264,232,200,14,251,157 +Machines|223,29,174,46,92,249,237,241,173,63,182,203,218,231,225,216,91,189,104,207,214,126,129,111,9,197,156,213,7,210,5,14,25,34,36,66,68,69,99,82,102,117,130,157,164,264,337,280,53,317,332,263,290,315,374,261,421,416,445,363,468,488,496,497,510,612,590,15,70 +BaseHP|58 +BaseAttack|64 +BaseDefense|58 +BaseSpAttack|80 +BaseSpDefense|65 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It is very hotheaded by nature so it constantly seeks opponents. It calms down only when it wins.\Flame Pokémon\19\1.1\0,148,0 +Scale|1.04 +Move|1,45 +Move|1,52 +Move|1,10 +Move|7,52 +Move|10,108 +Move|17,82 +Move|21,184 +Move|28,424 +Move|32,481 +Move|39,163 +Move|43,53 +Move|50,83 +Move|54,517 +EvolutionCondition|6,Level,36,Level +TradeValue|60 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/50.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/50.dat index 9b4a30aab..c0f22a1cd 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/50.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/50.dat @@ -1 +1,52 @@ -{"Name":"Diglett","Number":50,"ExperienceType":"MediumFast","BaseExperience":53,"Type1":"Ground","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":50,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[8,71],"HiddenAbility":159,"EggMoves":[246,310,251,203,185,515,29,262,426,228,179,103,253,157],"Machines":[174,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,188,201,197,156,213,168,34,36,99,90,102,117,157,164,317,332,263,290,421,416,446,445,363,468,496,497,523,590,15],"TutorMoves":[],"BaseStats":{"HP":10,"Atk":55,"Def":25,"SpAtk":35,"SpDef":45,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its skin is very thin. If it is exposed to light, its blood heats up, causing it to grow weak.","Species":"Mole Pokémon","Height":0.2,"Weight":0.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":28},{"Level":4,"ID":45},{"Level":7,"ID":310},{"Level":12,"ID":189},{"Level":15,"ID":222},{"Level":18,"ID":523},{"Level":23,"ID":389},{"Level":26,"ID":426},{"Level":29,"ID":414},{"Level":34,"ID":91},{"Level":37,"ID":163},{"Level":40,"ID":89},{"Level":45,"ID":90}],"EvolutionConditions":[{"Condition":"26","ConditionType":"Level","Evolution":51,"Trigger":"LevelUp"}],"Items":[{"Id":76,"Chance":5}]} \ No newline at end of file +Name|Diglett +Number|50 +ExperienceType|1 +BaseExperience|53 +Type1|Ground +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|50 +IsGenderLess|0 +IsMale|50 +Ability1|8 +Ability2|71 +HiddenAbility|159 +EggMoves|246,310,251,203,185,515,29,262,426,228,179,103,253,157 +Machines|174,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,188,201,197,156,213,168,34,36,99,90,102,117,157,164,317,332,263,290,421,416,446,445,363,468,496,497,523,590,15 +BaseHP|10 +BaseAttack|55 +BaseDefense|25 +BaseSpAttack|35 +BaseSpDefense|45 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Its skin is very thin. If it is exposed to light, its blood heats up, causing it to grow weak.\Mole Pokémon\0.8\0.2\0,148,0 +Scale|0.7 +Move|1,10 +Move|1,28 +Move|4,45 +Move|7,310 +Move|12,189 +Move|15,222 +Move|18,523 +Move|23,389 +Move|26,426 +Move|29,414 +Move|34,91 +Move|37,163 +Move|40,89 +Move|45,90 +EvolutionCondition|51,Level,26,Level +Item|5,76 +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/500.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/500.dat index 7137fbee8..53aa2f624 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/500.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/500.dat @@ -1 +1,59 @@ -{"Name":"Emboar","Number":500,"ExperienceType":"MediumSlow","BaseExperience":238,"Type1":"Fire","Type2":"Fighting","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":498,"Devolution":499,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":47,"EggMoves":[34,343,174,283,484,222,214,389,276,37,281],"Machines":[223,174,205,46,92,249,237,241,173,63,182,203,218,76,231,89,216,104,207,214,126,111,9,197,156,213,7,5,34,36,38,66,68,69,99,90,102,117,118,130,157,164,264,339,269,280,53,317,263,290,315,411,374,261,416,444,360,445,363,398,447,479,488,490,496,497,503,510,523,526,528,612,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":110,"Atk":123,"Def":65,"SpAtk":100,"SpDef":65,"Speed":65},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A flaring beard of fire is proof that it is fired up. It is adpet at using many different moves.","Species":"Mega Fire Pig Pokémon","Height":1.6,"Weight":150,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":70,"Moves":[{"Level":1,"ID":359},{"Level":2,"ID":33},{"Level":3,"ID":39},{"Level":4,"ID":52},{"Level":5,"ID":316},{"Level":6,"ID":39},{"Level":7,"ID":52},{"Level":9,"ID":316},{"Level":13,"ID":111},{"Level":15,"ID":488},{"Level":17,"ID":292},{"Level":20,"ID":123},{"Level":23,"ID":205},{"Level":28,"ID":36},{"Level":31,"ID":535},{"Level":38,"ID":372},{"Level":43,"ID":53},{"Level":50,"ID":457},{"Level":55,"ID":46},{"Level":62,"ID":394}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Emboar +Number|500 +ExperienceType|2 +BaseExperience|238 +Type1|Fire +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|498 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|47 +EggMoves|34,343,174,283,484,222,214,389,276,37,281 +Machines|223,174,205,46,92,249,237,241,173,63,182,203,218,76,231,89,216,104,207,214,126,111,9,197,156,213,7,5,34,36,38,66,68,69,99,90,102,117,118,130,157,164,264,339,269,280,53,317,263,290,315,411,374,261,416,444,360,445,363,398,447,479,488,490,496,497,503,510,523,526,528,612,590,70,431,560 +TutorMoves|307 +BaseHP|110 +BaseAttack|123 +BaseDefense|65 +BaseSpAttack|100 +BaseSpDefense|65 +BaseSpeed|65 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A flaring beard of fire is proof that it is fired up. It is adpet at using many different moves.\Mega Fire Pig Pokémon\150\1.6\0,148,0 +Scale|1.24 +Move|1,359 +Move|1,33 +Move|1,39 +Move|1,52 +Move|1,316 +Move|3,39 +Move|7,52 +Move|9,316 +Move|13,111 +Move|15,488 +Move|17,292 +Move|20,123 +Move|23,205 +Move|28,36 +Move|31,535 +Move|38,372 +Move|43,53 +Move|50,457 +Move|55,46 +Move|62,394 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/501.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/501.dat index b7da2a509..04c316fbf 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/501.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/501.dat @@ -1 +1,54 @@ -{"Name":"Oshawott","Number":501,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":501,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":75,"EggMoves":[403,372,362,383,197,400,103,376],"Machines":[174,92,249,237,173,59,63,196,182,240,203,218,231,216,91,104,207,214,197,156,213,34,36,61,55,58,68,99,102,117,164,352,280,263,290,362,416,445,363,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":55,"Def":45,"SpAtk":63,"SpDef":45,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The scalchop on its stomach isn't just used for battle--it can be used to break open hard berries as well.","Species":"Sea Otter Pokémon","Height":0.5,"Weight":5.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":5,"ID":39},{"Level":7,"ID":55},{"Level":11,"ID":346},{"Level":13,"ID":116},{"Level":17,"ID":534},{"Level":19,"ID":210},{"Level":23,"ID":352},{"Level":25,"ID":279},{"Level":29,"ID":453},{"Level":31,"ID":227},{"Level":35,"ID":401},{"Level":37,"ID":1},{"Level":41,"ID":14},{"Level":43,"ID":56}],"EvolutionConditions":[{"Condition":"17","ConditionType":"Level","Evolution":502,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Oshawott +Number|501 +ExperienceType|2 +BaseExperience|62 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|501 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|75 +EggMoves|403,372,362,383,197,400,103,376 +Machines|174,92,249,237,173,59,63,196,182,240,203,218,231,216,91,104,207,214,197,156,213,34,36,61,55,58,68,99,102,117,164,352,280,263,290,362,416,445,363,496,503,590,57,250,127,291 +BaseHP|55 +BaseAttack|55 +BaseDefense|45 +BaseSpAttack|63 +BaseSpDefense|45 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The scalchop on its stomach isn't just used for battle--it can be used to break open hard berries as well.\Sea Otter Pokémon\5.9\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|5,39 +Move|7,55 +Move|11,346 +Move|13,116 +Move|17,534 +Move|19,210 +Move|23,352 +Move|25,279 +Move|29,453 +Move|31,227 +Move|35,401 +Move|37,514 +Move|41,14 +Move|43,56 +TradeValue|50 +EvolutionCondition|502,level,17,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/502.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/502.dat index 131abb19d..3edbf67e6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/502.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/502.dat @@ -1 +1,57 @@ -{"Name":"Dewott","Number":502,"ExperienceType":"MediumSlow","BaseExperience":145,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":501,"Devolution":501,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":75,"EggMoves":[403,372,362,383,197,400,103,376],"Machines":[174,92,249,237,173,59,63,196,182,240,203,218,231,216,91,104,207,214,197,156,213,34,36,61,55,58,68,99,102,117,130,164,352,263,290,362,416,445,363,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":75,"Def":60,"SpAtk":83,"SpDef":60,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"As a result of strict training, each Dewott learns different forms for using the scalchops.","Species":"Discipline Pokémon","Height":0.8,"Weight":24.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":39},{"Level":3,"ID":55},{"Level":4,"ID":346},{"Level":5,"ID":39},{"Level":7,"ID":55},{"Level":11,"ID":346},{"Level":13,"ID":116},{"Level":17,"ID":534},{"Level":20,"ID":210},{"Level":25,"ID":352},{"Level":28,"ID":279},{"Level":33,"ID":453},{"Level":36,"ID":227},{"Level":41,"ID":401},{"Level":44,"ID":1},{"Level":49,"ID":14},{"Level":52,"ID":56}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":503,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Dewott +Number|502 +ExperienceType|2 +BaseExperience|145 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|501 +IsGenderLess|0 +CanBreed|1 +Devolution|501 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|75 +EggMoves|403,372,362,383,197,400,103,376 +Machines|174,92,249,237,173,59,63,196,182,240,203,218,231,216,91,104,207,214,197,156,213,34,36,61,55,58,68,99,102,117,130,164,352,263,290,362,416,445,363,496,503,590,57,250,127,291 +BaseHP|75 +BaseAttack|75 +BaseDefense|60 +BaseSpAttack|83 +BaseSpDefense|60 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|As a result of strict training, each Dewott learns different forms for using the scalchops.\Discipline Pokémon\24.5\0.8\0,148,0 +Scale|0.92 +Move|1,33 +Move|1,39 +Move|1,55 +Move|1,346 +Move|5,39 +Move|7,55 +Move|11,346 +Move|13,116 +Move|17,534 +Move|20,210 +Move|25,352 +Move|28,279 +Move|33,453 +Move|36,227 +Move|41,401 +Move|44,514 +Move|49,14 +Move|52,56 +TradeValue|60 +EvolutionCondition|503,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/503.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/503.dat index 6533ac69e..c58d9c29b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/503.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/503.dat @@ -1 +1,59 @@ -{"Name":"Samurott","Number":503,"ExperienceType":"MediumSlow","BaseExperience":238,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":501,"Devolution":502,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":75,"EggMoves":[403,372,362,383,197,400,103,376],"Machines":[174,92,249,237,173,59,63,196,182,240,203,218,231,216,91,104,207,214,197,156,213,32,34,36,38,61,55,58,68,99,102,117,130,164,337,352,263,290,362,416,445,363,496,503,525,590,57,70,250,127,431,560,291],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":100,"Def":85,"SpAtk":108,"SpDef":70,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"In the time it takes a foe to blink, it can draw and sheathe the seamitars attached to its front legs.","Species":"Formidable Pokémon","Height":1.5,"Weight":94.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":70,"Moves":[{"Level":1,"ID":224},{"Level":2,"ID":33},{"Level":3,"ID":39},{"Level":4,"ID":55},{"Level":5,"ID":346},{"Level":6,"ID":39},{"Level":7,"ID":55},{"Level":11,"ID":346},{"Level":13,"ID":116},{"Level":17,"ID":534},{"Level":20,"ID":210},{"Level":25,"ID":352},{"Level":28,"ID":279},{"Level":33,"ID":453},{"Level":36,"ID":163},{"Level":38,"ID":227},{"Level":45,"ID":401},{"Level":50,"ID":1},{"Level":57,"ID":14},{"Level":62,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Samurott +Number|503 +ExperienceType|2 +BaseExperience|238 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|501 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|75 +EggMoves|403,372,362,383,197,400,103,376 +Machines|174,92,249,237,173,59,63,196,182,240,203,218,231,216,91,104,207,214,197,156,213,32,34,36,38,61,55,58,68,99,102,117,130,164,337,352,263,290,362,416,445,363,496,503,525,590,57,70,250,127,431,560,291 +TutorMoves|308 +BaseHP|95 +BaseAttack|100 +BaseDefense|85 +BaseSpAttack|108 +BaseSpDefense|70 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|In the time it takes a foe to blink, it can draw and sheathe the seamitars attached to its front legs.\Formidable Pokémon\94.6\1.5\0,148,0 +Scale|1.2 +Move|1,224 +Move|1,33 +Move|1,39 +Move|1,55 +Move|1,346 +Move|5,39 +Move|7,55 +Move|11,346 +Move|13,116 +Move|17,534 +Move|20,210 +Move|25,352 +Move|28,279 +Move|33,453 +Move|36,163 +Move|38,227 +Move|45,401 +Move|50,514 +Move|57,14 +Move|62,56 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/504.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/504.dat index 2ca0b7a5e..3d414ebd6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/504.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/504.dat @@ -1 +1,53 @@ -{"Name":"Patrat","Number":504,"ExperienceType":"MediumFast","BaseExperience":51,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":504,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,51],"HiddenAbility":148,"EggMoves":[372,193,175,231,228,279,103],"Machines":[174,205,92,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,129,111,197,156,213,210,5,14,36,6,66,68,69,99,85,102,117,118,130,164,264,263,290,374,416,445,363,447,496,514,526,590,15],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":55,"Def":39,"SpAtk":35,"SpDef":39,"Speed":42},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Extremely cautious, one of them will always be on the lookout, but it won't notice a foe coming from behind.","Species":"Scout Pokémon","Height":0.5,"Weight":11.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":5,"Moves":[{"Level":1,"ID":33},{"Level":3,"ID":43},{"Level":6,"ID":44},{"Level":8,"ID":117},{"Level":11,"ID":197},{"Level":16,"ID":242},{"Level":18,"ID":95},{"Level":21,"ID":162},{"Level":23,"ID":1},{"Level":26,"ID":526},{"Level":28,"ID":158},{"Level":31,"ID":212},{"Level":33,"ID":226},{"Level":36,"ID":21}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":505,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Patrat +Number|504 +ExperienceType|1 +BaseExperience|51 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|504 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|50 +Ability2|51 +HiddenAbility|148 +EggMoves|372,193,175,231,228,279,103 +Machines|174,205,92,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,129,111,197,156,213,210,5,14,36,6,66,68,69,99,85,102,117,118,130,164,264,263,290,374,416,445,363,447,496,514,526,590,15 +BaseHP|45 +BaseAttack|55 +BaseDefense|39 +BaseSpAttack|35 +BaseSpDefense|39 +BaseSpeed|42 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Extremely cautious, one of them will always be on the lookout, but it won't notice a foe coming from behind.\Scout Pokémon\11.6\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|3,43 +Move|6,44 +Move|8,117 +Move|11,197 +Move|16,242 +Move|18,95 +Move|21,162 +Move|23,495 +Move|26,526 +Move|28,158 +Move|31,212 +Move|33,226 +Move|36,21 +TradeValue|5 +EvolutionCondition|505,Level,20,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/505.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/505.dat index ded4c9e77..43d225f6d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/505.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/505.dat @@ -1 +1,57 @@ -{"Name":"Watchog","Number":505,"ExperienceType":"MediumFast","BaseExperience":147,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":504,"Devolution":504,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[35,51],"HiddenAbility":148,"EggMoves":[372,193,175,231,228,279,103],"Machines":[223,174,205,92,249,244,237,241,173,63,182,240,203,218,231,87,216,91,247,189,104,8,207,214,129,111,138,197,156,213,7,210,171,5,14,34,36,38,6,66,68,69,99,85,102,117,118,130,86,164,264,352,113,351,53,263,290,411,374,416,445,363,447,496,514,526,612,590,15,70,148,431],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":85,"Def":69,"SpAtk":60,"SpDef":69,"Speed":77},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Using luminescent matter, it makes its eyes and body glow and stuns attacking opponents.","Species":"Lookout Pokémon","Height":1.1,"Weight":27,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":15,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":33},{"Level":3,"ID":43},{"Level":4,"ID":44},{"Level":5,"ID":67},{"Level":6,"ID":43},{"Level":7,"ID":44},{"Level":8,"ID":117},{"Level":11,"ID":197},{"Level":16,"ID":242},{"Level":18,"ID":95},{"Level":20,"ID":109},{"Level":22,"ID":162},{"Level":25,"ID":1},{"Level":29,"ID":244},{"Level":32,"ID":158},{"Level":36,"ID":212},{"Level":39,"ID":226},{"Level":43,"ID":21}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Watchog +Number|505 +ExperienceType|1 +BaseExperience|147 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|504 +IsGenderLess|0 +CanBreed|1 +Devolution|504 +IsMale|50 +Ability1|35 +Ability2|51 +HiddenAbility|148 +EggMoves|372,193,175,231,228,279,103 +Machines|223,174,205,92,249,244,237,241,173,63,182,240,203,218,231,87,216,91,247,189,104,8,207,214,129,111,138,197,156,213,7,210,171,5,14,34,36,38,6,66,68,69,99,85,102,117,118,130,86,164,264,352,113,351,53,263,290,411,374,416,445,363,447,496,514,526,612,590,15,70,148,431 +BaseHP|60 +BaseAttack|85 +BaseDefense|69 +BaseSpAttack|60 +BaseSpDefense|69 +BaseSpeed|77 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Using luminescent matter, it makes its eyes and body glow and stuns attacking opponents.\Lookout Pokémon\27\1.1\0,148,0 +Scale|1.04 +Move|1,563 +Move|1,33 +Move|1,43 +Move|1,44 +Move|1,67 +Move|3,43 +Move|6,44 +Move|8,117 +Move|11,197 +Move|16,242 +Move|18,95 +Move|20,109 +Move|22,162 +Move|25,495 +Move|29,244 +Move|32,158 +Move|36,212 +Move|39,226 +Move|43,21 +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/506.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/506.dat index 9e7696e9e..b71068010 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/506.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/506.dat @@ -1 +1,54 @@ -{"Name":"Lillipup","Number":506,"ExperienceType":"MediumSlow","BaseExperience":55,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":506,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[72,53],"HiddenAbility":50,"EggMoves":[495,204,203,424,336,423,122,189,228,28,422,281],"Machines":[174,205,46,92,237,241,173,63,182,203,218,216,189,104,207,214,129,111,197,156,213,210,36,6,99,102,117,130,164,263,290,416,445,363,496,526,528,555,590],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":60,"Def":45,"SpAtk":25,"SpDef":45,"Speed":55},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Though it is a very brave Pokémon, it's also smart enough to check its foe's strength and avoid battle.","Species":"Puppy Pokémon","Height":0.4,"Weight":4.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":33},{"Level":5,"ID":316},{"Level":8,"ID":44},{"Level":10,"ID":608},{"Level":12,"ID":1},{"Level":15,"ID":36},{"Level":19,"ID":526},{"Level":22,"ID":242},{"Level":26,"ID":46},{"Level":29,"ID":1},{"Level":33,"ID":179},{"Level":36,"ID":387},{"Level":40,"ID":416},{"Level":45,"ID":583}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":507,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Lillipup +Number|506 +ExperienceType|2 +BaseExperience|55 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|506 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|72 +Ability2|53 +HiddenAbility|50 +EggMoves|495,204,203,424,336,423,122,189,228,28,422,281 +Machines|174,205,46,92,237,241,173,63,182,203,218,216,189,104,207,214,129,111,197,156,213,210,36,6,99,102,117,130,164,263,290,416,445,363,496,526,528,555,590 +BaseHP|45 +BaseAttack|60 +BaseDefense|45 +BaseSpAttack|25 +BaseSpDefense|45 +BaseSpeed|55 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Though it is a very brave Pokémon, it's also smart enough to check its foe's strength and avoid battle.\Puppy Pokémon\4.1\0.4\0,148,0 +Scale|0.7 +Move|1,43 +Move|1,33 +Move|5,316 +Move|8,44 +Move|10,608 +Move|12,270 +Move|15,36 +Move|19,526 +Move|22,242 +Move|26,46 +Move|29,514 +Move|33,179 +Move|36,387 +Move|40,416 +Move|45,583 +TradeValue|10 +EvolutionCondition|507,Level,16,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/507.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/507.dat index e26a5e40c..137d419af 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/507.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/507.dat @@ -1 +1,53 @@ -{"Name":"Herdier","Number":507,"ExperienceType":"MediumSlow","BaseExperience":130,"Type1":"Normal","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":506,"Devolution":506,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22,146],"HiddenAbility":113,"EggMoves":[495,204,203,424,336,423,122,189,228,28,422,281],"Machines":[174,205,46,92,249,237,241,173,63,182,203,218,216,189,104,207,214,129,111,197,156,213,210,25,34,36,6,99,102,117,130,164,352,351,263,290,416,445,363,496,526,528,555,590,57,70],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":80,"Def":65,"SpAtk":35,"SpDef":65,"Speed":60},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This very loyal Pokémo helps trainers, and it also takes care of other Pokémon.","Species":"Loyal Dog Pokémon","Height":0.9,"Weight":14.7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":25,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":33},{"Level":5,"ID":316},{"Level":8,"ID":44},{"Level":12,"ID":1},{"Level":15,"ID":36},{"Level":20,"ID":526},{"Level":24,"ID":242},{"Level":29,"ID":46},{"Level":33,"ID":1},{"Level":38,"ID":179},{"Level":42,"ID":387},{"Level":47,"ID":416},{"Level":52,"ID":583}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":508,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Herdier +Number|507 +ExperienceType|2 +BaseExperience|130 +Type1|Normal +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|506 +IsGenderLess|0 +CanBreed|1 +Devolution|506 +IsMale|50 +Ability1|22 +Ability2|146 +HiddenAbility|113 +EggMoves|495,204,203,424,336,423,122,189,228,28,422,281 +Machines|174,205,46,92,249,237,241,173,63,182,203,218,216,189,104,207,214,129,111,197,156,213,210,25,34,36,6,99,102,117,130,164,352,351,263,290,416,445,363,496,526,528,555,590,57,70 +BaseHP|65 +BaseAttack|80 +BaseDefense|65 +BaseSpAttack|35 +BaseSpDefense|65 +BaseSpeed|60 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This very loyal Pokémo helps trainers, and it also takes care of other Pokémon.\Loyal Dog Pokémon\14.7\0.9\0,148,0 +Scale|0.96 +Move|1,43 +Move|1,33 +Move|5,316 +Move|8,44 +Move|12,270 +Move|15,36 +Move|20,526 +Move|24,242 +Move|29,46 +Move|33,514 +Move|38,179 +Move|42,387 +Move|47,416 +Move|52,583 +TradeValue|25 +EvolutionCondition|508,Level,32,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/508.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/508.dat index 41c60932c..7fd031a91 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/508.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/508.dat @@ -1 +1,55 @@ -{"Name":"Stoutland","Number":508,"ExperienceType":"MediumSlow","BaseExperience":221,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":506,"Devolution":507,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22,146],"HiddenAbility":113,"EggMoves":[495,204,203,424,336,423,122,189,228,28,422,281],"Machines":[174,205,46,92,192,249,237,241,173,63,182,240,203,218,87,216,91,247,189,104,207,214,129,111,197,156,213,210,171,25,34,36,38,6,68,99,85,102,117,130,86,164,352,351,317,332,263,290,371,416,445,363,496,514,526,528,555,590,57,70,431,560],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":110,"Def":90,"SpAtk":45,"SpDef":90,"Speed":80},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Being wrapped in its long fur is so comfortable that a person would be fine even overnight on a wintry mountain.","Species":"Big-Hearted Pokémon","Height":1.2,"Weight":61,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":50,"Moves":[{"Level":1,"ID":423},{"Level":2,"ID":424},{"Level":3,"ID":422},{"Level":4,"ID":43},{"Level":5,"ID":33},{"Level":6,"ID":316},{"Level":8,"ID":44},{"Level":12,"ID":1},{"Level":15,"ID":36},{"Level":20,"ID":526},{"Level":24,"ID":242},{"Level":29,"ID":46},{"Level":36,"ID":1},{"Level":42,"ID":179},{"Level":51,"ID":387},{"Level":59,"ID":416},{"Level":63,"ID":583}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Stoutland +Number|508 +ExperienceType|2 +BaseExperience|221 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|506 +IsGenderLess|0 +CanBreed|1 +Devolution|507 +IsMale|50 +Ability1|22 +Ability2|146 +HiddenAbility|113 +EggMoves|495,204,203,424,336,423,122,189,228,28,422,281 +Machines|174,205,46,92,192,249,237,241,173,63,182,240,203,218,87,216,91,247,189,104,207,214,129,111,197,156,213,210,171,25,34,36,38,6,68,99,85,102,117,130,86,164,352,351,317,332,263,290,371,416,445,363,496,514,526,528,555,590,57,70,431,560 +BaseHP|85 +BaseAttack|110 +BaseDefense|90 +BaseSpAttack|45 +BaseSpDefense|90 +BaseSpeed|80 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Being wrapped in its long fur is so comfortable that a person would be fine even overnight on a wintry mountain.\Big-Hearted Pokémon\61\1.2\0,148,0 +Scale|1.08 +Move|1,423 +Move|1,424 +Move|1,422 +Move|1,43 +Move|1,33 +Move|5,316 +Move|8,44 +Move|12,270 +Move|15,36 +Move|20,526 +Move|24,242 +Move|29,46 +Move|36,514 +Move|42,179 +Move|51,387 +Move|59,416 +Move|63,583 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/509.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/509.dat index 98738272c..0b5df3412 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/509.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/509.dat @@ -1 +1,56 @@ -{"Name":"Purrloin","Number":509,"ExperienceType":"MediumFast","BaseExperience":56,"Type1":"Dark","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":509,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[7,84],"HiddenAbility":158,"EggMoves":[204,383,343,227,313,185,492,6,281],"Machines":[174,205,92,244,237,241,173,63,182,240,203,218,231,216,247,189,104,207,214,129,111,138,197,156,213,168,210,36,6,99,102,117,86,164,269,259,263,290,289,373,421,371,416,445,399,363,447,369,468,496,497,555,590],"TutorMoves":[],"BaseStats":{"HP":41,"Atk":50,"Def":37,"SpAtk":50,"SpDef":37,"Speed":66},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Their cute act is a ruse. They trick people and steal their valuables just to see the looks on their faces.","Species":"Devious Pokémon","Height":0.4,"Weight":10.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":10},{"Level":3,"ID":45},{"Level":6,"ID":274},{"Level":10,"ID":28},{"Level":12,"ID":154},{"Level":15,"ID":228},{"Level":19,"ID":259},{"Level":21,"ID":252},{"Level":24,"ID":468},{"Level":28,"ID":372},{"Level":30,"ID":163},{"Level":33,"ID":445},{"Level":37,"ID":400},{"Level":39,"ID":289},{"Level":42,"ID":417},{"Level":46,"ID":389},{"Level":49,"ID":583}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":510,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Purrloin +Number|509 +ExperienceType|1 +BaseExperience|56 +Type1|Dark +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|509 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|7 +Ability2|84 +HiddenAbility|158 +EggMoves|204,383,343,227,313,185,492,6,281 +Machines|174,205,92,244,237,241,173,63,182,240,203,218,231,216,247,189,104,207,214,129,111,138,197,156,213,168,210,36,6,99,102,117,86,164,269,259,263,290,289,373,421,371,416,445,399,363,447,369,468,496,497,555,590 +BaseHP|41 +BaseAttack|50 +BaseDefense|37 +BaseSpAttack|50 +BaseSpDefense|37 +BaseSpeed|66 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Their cute act is a ruse. They trick people and steal their valuables just to see the looks on their faces.\Devious Pokémon\10.1\0.4\0,148,0 +Scale|0.7 +Move|1,10 +Move|3,45 +Move|6,274 +Move|10,28 +Move|12,154 +Move|15,228 +Move|19,259 +Move|21,252 +Move|24,468 +Move|28,372 +Move|30,163 +Move|33,445 +Move|37,400 +Move|39,289 +Move|42,417 +Move|46,389 +Move|49,583 +TradeValue|10 +EvolutionCondition|510,Level,20,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/51.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/51.dat index 1e7993847..c3adac841 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/51.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/51.dat @@ -1 +1,56 @@ -{"Name":"Dugtrio","Number":51,"ExperienceType":"MediumFast","BaseExperience":142,"Type1":"Ground","Type2":"Blank","CatchRate":50,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":50,"Devolution":50,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[8,71],"HiddenAbility":159,"EggMoves":[246,310,251,203,185,515,29,262,426,228,179,103,253,157],"Machines":[174,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,188,201,197,156,213,168,34,36,99,90,102,117,157,164,317,332,263,290,421,416,444,446,445,363,468,482,496,497,523,590,15],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":80,"Def":50,"SpAtk":50,"SpDef":70,"Speed":120},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its three heads bob separately up and down to loosen the soil nearby, making it easier for it to burrow.","Species":"Mole Pokémon","Height":0.7,"Weight":33.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":25,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":28},{"Level":3,"ID":45},{"Level":4,"ID":161},{"Level":5,"ID":400},{"Level":6,"ID":1},{"Level":7,"ID":45},{"Level":8,"ID":310},{"Level":12,"ID":189},{"Level":15,"ID":222},{"Level":18,"ID":523},{"Level":23,"ID":389},{"Level":26,"ID":328},{"Level":28,"ID":426},{"Level":33,"ID":414},{"Level":40,"ID":91},{"Level":45,"ID":163},{"Level":50,"ID":89},{"Level":57,"ID":90}],"EvolutionConditions":[],"Items":[{"Id":76,"Chance":5}]} \ No newline at end of file +Name|Dugtrio +Number|51 +ExperienceType|1 +BaseExperience|142 +Type1|Ground +Type2| +CatchRate|50 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|50 +IsGenderLess|0 +IsMale|50 +Ability1|8 +Ability2|71 +HiddenAbility|159 +EggMoves|246,310,251,203,185,515,29,262,426,228,179,103,253,157 +Machines|174,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,188,201,197,156,213,168,34,36,99,90,102,117,157,164,317,332,263,290,421,416,444,446,445,363,468,482,496,497,523,590,15 +BaseHP|35 +BaseAttack|80 +BaseDefense|50 +BaseSpAttack|50 +BaseSpDefense|70 +BaseSpeed|120 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Its three heads bob separately up and down to loosen the soil nearby, making it easier for it to burrow.\Mole Pokémon\33.3\0.7\0,148,0 +Scale|0.88 +Move|1,10 +Move|1,28 +Move|1,45 +Move|1,161 +Move|1,400 +Move|1,563 +Move|4,45 +Move|7,310 +Move|12,189 +Move|15,222 +Move|18,523 +Move|23,389 +Move|26,328 +Move|28,426 +Move|33,414 +Move|40,91 +Move|45,163 +Move|50,89 +Move|57,90 +Item|5,76 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/510.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/510.dat index d838f6d6d..53500fdca 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/510.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/510.dat @@ -1 +1,58 @@ -{"Name":"Liepard","Number":510,"ExperienceType":"MediumFast","BaseExperience":156,"Type1":"Dark","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":509,"Devolution":509,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[7,84],"HiddenAbility":158,"EggMoves":[204,383,343,227,313,185,492,6,281],"Machines":[174,205,92,244,237,241,173,63,182,240,203,218,231,216,247,189,104,207,214,129,111,138,197,156,213,168,210,171,25,34,36,38,6,68,99,102,117,130,86,164,269,351,332,259,263,290,289,373,421,371,416,445,399,363,447,369,468,496,497,555,590,560],"TutorMoves":[],"BaseStats":{"HP":64,"Atk":88,"Def":50,"SpAtk":88,"SpDef":50,"Speed":106},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Their beautiful form comes from the muscles they have developed. They run silently in the night.","Species":"Cruel Pokémon","Height":1.1,"Weight":37.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":20,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":45},{"Level":3,"ID":274},{"Level":4,"ID":28},{"Level":5,"ID":45},{"Level":6,"ID":274},{"Level":10,"ID":28},{"Level":12,"ID":154},{"Level":15,"ID":228},{"Level":19,"ID":259},{"Level":22,"ID":252},{"Level":26,"ID":468},{"Level":31,"ID":372},{"Level":34,"ID":163},{"Level":38,"ID":269},{"Level":43,"ID":400},{"Level":47,"ID":289},{"Level":50,"ID":417},{"Level":55,"ID":389},{"Level":58,"ID":583}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Liepard +Number|510 +ExperienceType|1 +BaseExperience|156 +Type1|Dark +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|509 +IsGenderLess|0 +CanBreed|1 +Devolution|509 +IsMale|50 +Ability1|7 +Ability2|84 +HiddenAbility|158 +EggMoves|204,383,343,227,313,185,492,6,281 +Machines|174,205,92,244,237,241,173,63,182,240,203,218,231,216,247,189,104,207,214,129,111,138,197,156,213,168,210,171,25,34,36,38,6,68,99,102,117,130,86,164,269,351,332,259,263,290,289,373,421,371,416,445,399,363,447,369,468,496,497,555,590,560 +BaseHP|64 +BaseAttack|88 +BaseDefense|50 +BaseSpAttack|88 +BaseSpDefense|50 +BaseSpeed|106 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Their beautiful form comes from the muscles they have developed. They run silently in the night.\Cruel Pokémon\37.5\1.1\0,148,0 +Scale|1.04 +Move|1,10 +Move|1,45 +Move|1,274 +Move|1,28 +Move|3,45 +Move|6,274 +Move|10,28 +Move|12,154 +Move|15,228 +Move|19,259 +Move|22,252 +Move|26,468 +Move|31,372 +Move|34,163 +Move|38,269 +Move|43,400 +Move|47,289 +Move|50,417 +Move|55,389 +Move|58,583 +TradeValue|20 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/511.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/511.dat index 245894985..4d30fce20 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/511.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/511.dat @@ -1 +1,57 @@ -{"Name":"Pansage","Number":511,"ExperienceType":"MediumFast","BaseExperience":63,"Type1":"Grass","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":511,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[82],"HiddenAbility":65,"EggMoves":[310,331,343,574,320,437,67,345,417,272,321],"Machines":[174,205,92,249,237,241,230,173,63,182,202,203,218,76,231,216,91,189,104,207,214,111,197,156,213,168,36,6,99,72,102,117,118,164,331,269,317,259,263,290,412,374,421,371,278,416,445,363,447,468,490,496,512,526,267,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":53,"Def":48,"SpAtk":53,"SpDef":48,"Speed":64},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It's good at finding berries and gathers them from all over. It's kind enough to share them with friends.","Species":"Grass Monkey Pokémon","Height":0.6,"Weight":10.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":589},{"Level":4,"ID":43},{"Level":7,"ID":122},{"Level":10,"ID":22},{"Level":13,"ID":154},{"Level":16,"ID":73},{"Level":19,"ID":44},{"Level":22,"ID":402},{"Level":25,"ID":259},{"Level":28,"ID":374},{"Level":31,"ID":512},{"Level":34,"ID":447},{"Level":37,"ID":278},{"Level":40,"ID":363},{"Level":43,"ID":242}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Item","Evolution":512,"Trigger":"ItemUse"}],"Items":[{"Id":20035,"Chance":5},{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Pansage +Number|511 +ExperienceType|1 +BaseExperience|63 +Type1|Grass +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|511 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|82 +Ability2|Nothing +HiddenAbility|65 +EggMoves|310,331,343,574,320,437,67,345,417,272,321 +Machines|174,205,92,249,237,241,230,173,63,182,202,203,218,76,231,216,91,189,104,207,214,111,197,156,213,168,36,6,99,72,102,117,118,164,331,269,317,259,263,290,412,374,421,371,278,416,445,363,447,468,490,496,512,526,267,590,148 +BaseHP|50 +BaseAttack|53 +BaseDefense|48 +BaseSpAttack|53 +BaseSpDefense|48 +BaseSpeed|64 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It's good at finding berries and gathers them from all over. It's kind enough to share them with friends.\Grass Monkey Pokémon\10.5\0.6\0,148,0 +Scale|0.84 +Move|1,10 +Move|1,589 +Move|4,43 +Move|7,122 +Move|10,22 +Move|13,154 +Move|16,73 +Move|19,44 +Move|22,402 +Move|25,259 +Move|28,374 +Move|31,512 +Move|34,447 +Move|37,278 +Move|40,363 +Move|43,242 +TradeValue|15 +Item|5,20035 +Item|50,2006 +EvolutionCondition|512,item,34,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/512.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/512.dat index 66feabb7b..2aaa1d2b2 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/512.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/512.dat @@ -1 +1,44 @@ -{"Name":"Simisage","Number":512,"ExperienceType":"MediumFast","BaseExperience":174,"Type1":"Grass","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":511,"Devolution":511,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[82],"HiddenAbility":65,"EggMoves":[310,331,343,574,320,437,67,345,417,272,321],"Machines":[223,174,205,92,249,237,241,230,173,63,182,202,203,218,76,231,216,91,189,104,207,214,111,197,156,213,168,171,5,25,34,36,38,6,66,68,69,99,72,102,117,118,130,157,164,264,331,269,280,317,259,263,290,411,412,374,421,371,278,416,445,363,447,468,490,496,512,526,267,612,590,148,431],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":98,"Def":63,"SpAtk":98,"SpDef":63,"Speed":101},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It strikes its enemies with a thorn-covered tail. The leaf on its head is bitter.","Species":"Thorn Monkey Pokémon","Height":1.1,"Weight":30.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":40,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":122},{"Level":3,"ID":154},{"Level":4,"ID":402}],"EvolutionConditions":[],"Items":[{"Id":2035,"Chance":5},{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Simisage +Number|512 +ExperienceType|1 +BaseExperience|174 +Type1|Grass +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|511 +IsGenderLess|0 +CanBreed|1 +Devolution|511 +IsMale|87.5 +Ability1|82 +Ability2|Nothing +HiddenAbility|65 +EggMoves|310,331,343,574,320,437,67,345,417,272,321 +Machines|223,174,205,92,249,237,241,230,173,63,182,202,203,218,76,231,216,91,189,104,207,214,111,197,156,213,168,171,5,25,34,36,38,6,66,68,69,99,72,102,117,118,130,157,164,264,331,269,280,317,259,263,290,411,412,374,421,371,278,416,445,363,447,468,490,496,512,526,267,612,590,148,431 +BaseHP|75 +BaseAttack|98 +BaseDefense|63 +BaseSpAttack|98 +BaseSpDefense|63 +BaseSpeed|101 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It strikes its enemies with a thorn-covered tail. The leaf on its head is bitter.\Thorn Monkey Pokémon\30.5\1.1\0,148,0 +Scale|1.04 +Move|1,43 +Move|1,122 +Move|1,154 +Move|1,402 +TradeValue|40 +Item|5,2035 +Item|50,2006 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/513.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/513.dat index 67166be56..5490f039d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/513.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/513.dat @@ -1 +1,57 @@ -{"Name":"Pansear","Number":513,"ExperienceType":"MediumFast","BaseExperience":63,"Type1":"Fire","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":513,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[82],"HiddenAbility":66,"EggMoves":[310,343,574,7,83,257,67,417,272,214,321],"Machines":[174,205,92,249,237,241,173,63,182,203,218,76,231,216,91,189,104,207,214,126,111,197,156,213,168,7,36,6,68,99,102,117,118,164,269,53,317,259,263,290,315,374,261,421,371,278,416,445,363,447,468,488,490,496,510,512,526,590],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":53,"Def":48,"SpAtk":53,"SpDef":48,"Speed":64},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Very intelligent, it roasts berries before eating them. It likes to help people.","Species":"High Temp Pokémon","Height":0.6,"Weight":11,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":589},{"Level":4,"ID":43},{"Level":7,"ID":122},{"Level":10,"ID":1},{"Level":13,"ID":154},{"Level":16,"ID":281},{"Level":19,"ID":44},{"Level":22,"ID":481},{"Level":25,"ID":133},{"Level":28,"ID":374},{"Level":31,"ID":512},{"Level":34,"ID":126},{"Level":37,"ID":278},{"Level":40,"ID":363},{"Level":43,"ID":242}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Item","Evolution":514,"Trigger":"ItemUse"}],"Items":[{"Id":2036,"Chance":5},{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Pansear +Number|513 +ExperienceType|1 +BaseExperience|63 +Type1|Fire +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|513 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|82 +Ability2|Nothing +HiddenAbility|66 +EggMoves|310,343,574,7,83,257,67,417,272,214,321 +Machines|174,205,92,249,237,241,173,63,182,203,218,76,231,216,91,189,104,207,214,126,111,197,156,213,168,7,36,6,68,99,102,117,118,164,269,53,317,259,263,290,315,374,261,421,371,278,416,445,363,447,468,488,490,496,510,512,526,590 +BaseHP|50 +BaseAttack|53 +BaseDefense|48 +BaseSpAttack|53 +BaseSpDefense|48 +BaseSpeed|64 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Very intelligent, it roasts berries before eating them. It likes to help people.\High Temp Pokémon\11\0.6\0,148,0 +Scale|0.84 +Move|1,10 +Move|1,589 +Move|4,43 +Move|7,122 +Move|10,510 +Move|13,154 +Move|16,281 +Move|19,44 +Move|22,481 +Move|25,133 +Move|28,374 +Move|31,512 +Move|34,126 +Move|37,278 +Move|40,363 +Move|43,242 +TradeValue|15 +Item|5,2036 +Item|50,2006 +EvolutionCondition|514,item,22,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/514.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/514.dat index 57c635544..9c770a506 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/514.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/514.dat @@ -1 +1,44 @@ -{"Name":"Simisear","Number":514,"ExperienceType":"MediumFast","BaseExperience":174,"Type1":"Fire","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":513,"Devolution":513,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[82],"HiddenAbility":66,"EggMoves":[310,343,574,7,83,257,67,417,272,214,321],"Machines":[223,174,205,92,249,237,241,173,63,182,203,218,76,231,216,91,189,104,207,214,126,111,197,156,213,168,7,171,5,25,34,36,38,6,66,68,69,99,102,117,118,130,157,164,264,269,280,53,317,259,263,290,315,411,374,261,421,371,278,416,445,363,447,468,488,490,496,510,512,526,612,590,431],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":98,"Def":63,"SpAtk":98,"SpDef":63,"Speed":101},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it gets excited, embers rise from its head and tail and it gets hot. For some reason, it loves sweets.","Species":"Ember Pokémon","Height":1,"Weight":28,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":40,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":122},{"Level":3,"ID":154},{"Level":4,"ID":481}],"EvolutionConditions":[],"Items":[{"Id":2036,"Chance":5},{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Simisear +Number|514 +ExperienceType|1 +BaseExperience|174 +Type1|Fire +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|513 +IsGenderLess|0 +CanBreed|1 +Devolution|513 +IsMale|87.5 +Ability1|82 +Ability2|Nothing +HiddenAbility|66 +EggMoves|310,343,574,7,83,257,67,417,272,214,321 +Machines|223,174,205,92,249,237,241,173,63,182,203,218,76,231,216,91,189,104,207,214,126,111,197,156,213,168,7,171,5,25,34,36,38,6,66,68,69,99,102,117,118,130,157,164,264,269,280,53,317,259,263,290,315,411,374,261,421,371,278,416,445,363,447,468,488,490,496,510,512,526,612,590,431 +BaseHP|75 +BaseAttack|98 +BaseDefense|63 +BaseSpAttack|98 +BaseSpDefense|63 +BaseSpeed|101 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|When it gets excited, embers rise from its head and tail and it gets hot. For some reason, it loves sweets.\Ember Pokémon\28\1\0,148,0 +Scale|1 +Move|1,43 +Move|1,122 +Move|1,154 +Move|1,481 +TradeValue|40 +Item|5,2036 +Item|50,2006 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/515.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/515.dat index be0f98a50..73f4d699e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/515.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/515.dat @@ -1 +1,57 @@ -{"Name":"Panpour","Number":515,"ExperienceType":"MediumFast","BaseExperience":63,"Type1":"Water","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":515,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[82],"HiddenAbility":67,"EggMoves":[392,401,310,343,574,56,67,300,417,272,321],"Machines":[174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,111,197,156,213,168,36,61,55,58,6,68,99,102,117,118,164,352,258,269,317,259,263,290,362,374,421,371,278,416,445,363,447,468,490,496,503,512,526,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":53,"Def":48,"SpAtk":53,"SpDef":48,"Speed":64},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The water stored inside the tuft on its head is full of nutrients. It waters plants with it using its tail.","Species":"Spray Pokémon","Height":0.6,"Weight":13.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":15,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":589},{"Level":4,"ID":43},{"Level":7,"ID":122},{"Level":10,"ID":55},{"Level":13,"ID":154},{"Level":16,"ID":346},{"Level":19,"ID":44},{"Level":22,"ID":503},{"Level":25,"ID":269},{"Level":28,"ID":374},{"Level":31,"ID":512},{"Level":34,"ID":362},{"Level":37,"ID":278},{"Level":40,"ID":363},{"Level":43,"ID":242}],"EvolutionConditions":[{"Condition":"24","ConditionType":"Item","Evolution":516,"Trigger":"ItemUse"}],"Items":[{"Id":2038,"Chance":5},{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Panpour +Number|515 +ExperienceType|1 +BaseExperience|63 +Type1|Water +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|515 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|82 +Ability2|Nothing +HiddenAbility|67 +EggMoves|392,401,310,343,574,56,67,300,417,272,321 +Machines|174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,111,197,156,213,168,36,61,55,58,6,68,99,102,117,118,164,352,258,269,317,259,263,290,362,374,421,371,278,416,445,363,447,468,490,496,503,512,526,590,57,250,127,291 +BaseHP|50 +BaseAttack|53 +BaseDefense|48 +BaseSpAttack|53 +BaseSpDefense|48 +BaseSpeed|64 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|The water stored inside the tuft on its head is full of nutrients. It waters plants with it using its tail.\Spray Pokémon\13.5\0.6\0,148,0 +Scale|0.84 +Move|1,10 +Move|1,589 +Move|4,43 +Move|7,122 +Move|10,55 +Move|13,154 +Move|16,346 +Move|19,44 +Move|22,503 +Move|25,269 +Move|28,374 +Move|31,512 +Move|34,362 +Move|37,278 +Move|40,363 +Move|43,242 +TradeValue|15 +Item|5,2038 +Item|50,2006 +EvolutionCondition|516,item,24,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/516.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/516.dat index 4a5c457f6..68b03f28e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/516.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/516.dat @@ -1 +1,44 @@ -{"Name":"Simipour","Number":516,"ExperienceType":"MediumFast","BaseExperience":174,"Type1":"Water","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":515,"Devolution":515,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[82],"HiddenAbility":67,"EggMoves":[392,401,310,343,574,56,67,300,417,272,321],"Machines":[223,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,111,197,156,213,168,171,5,25,34,36,38,61,55,58,6,66,68,69,99,102,117,118,130,157,164,264,352,258,269,280,317,259,263,290,411,362,374,421,371,278,416,445,363,447,468,490,496,503,512,526,612,590,57,250,127,431,291],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":98,"Def":63,"SpAtk":98,"SpDef":63,"Speed":101},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It prefers places with clean water. When its tuft runs low, it replenishes it by siphoning up water with its tail.","Species":"Geyser Pokémon","Height":1,"Weight":29,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":40,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":122},{"Level":3,"ID":154},{"Level":4,"ID":503}],"EvolutionConditions":[],"Items":[{"Id":2038,"Chance":5},{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Simipour +Number|516 +ExperienceType|1 +BaseExperience|174 +Type1|Water +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|515 +IsGenderLess|0 +CanBreed|1 +Devolution|515 +IsMale|87.5 +Ability1|82 +Ability2|Nothing +HiddenAbility|67 +EggMoves|392,401,310,343,574,56,67,300,417,272,321 +Machines|223,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,111,197,156,213,168,171,5,25,34,36,38,61,55,58,6,66,68,69,99,102,117,118,130,157,164,264,352,258,269,280,317,259,263,290,411,362,374,421,371,278,416,445,363,447,468,490,496,503,512,526,612,590,57,250,127,431,291 +BaseHP|75 +BaseAttack|98 +BaseDefense|63 +BaseSpAttack|98 +BaseSpDefense|63 +BaseSpeed|101 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It prefers places with clean water. When its tuft runs low, it replenishes it by siphoning up water with its tail.\Geyser Pokémon\29\1\0,148,0 +Scale|1 +Move|1,43 +Move|1,122 +Move|1,154 +Move|1,503 +TradeValue|40 +Item|5,2038 +Item|50,2006 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/517.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/517.dat index ea27d01b5..bff27deae 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/517.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/517.dat @@ -1 +1,56 @@ -{"Name":"Munna","Number":517,"ExperienceType":"Fast","BaseExperience":58,"Type1":"Psychic","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":517,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[108,28],"HiddenAbility":140,"EggMoves":[112,226,174,361,270,277,290,214,49,129],"Machines":[174,205,92,244,237,173,63,182,203,218,216,94,247,104,207,214,111,138,197,156,213,171,99,100,102,117,118,120,149,161,164,347,259,263,290,285,412,416,445,363,433,473,477,496,605,590,148],"TutorMoves":[],"BaseStats":{"HP":76,"Atk":25,"Def":45,"SpAtk":67,"SpDef":55,"Speed":24},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon appears before people and Pokémon who are having nightmares and eats those dreams.","Species":"Dream Eater Pokémon","Height":0.6,"Weight":23.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":149},{"Level":2,"ID":111},{"Level":5,"ID":1},{"Level":7,"ID":281},{"Level":11,"ID":60},{"Level":13,"ID":1},{"Level":17,"ID":236},{"Level":19,"ID":95},{"Level":23,"ID":428},{"Level":25,"ID":1},{"Level":29,"ID":171},{"Level":31,"ID":248},{"Level":35,"ID":347},{"Level":37,"ID":94},{"Level":41,"ID":138},{"Level":43,"ID":1},{"Level":47,"ID":500}],"EvolutionConditions":[{"Condition":"8","ConditionType":"Item","Evolution":518,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Munna +Number|517 +ExperienceType|0 +BaseExperience|58 +Type1|Psychic +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|517 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|108 +Ability2|28 +HiddenAbility|140 +EggMoves|112,226,174,361,270,277,290,214,49,129 +Machines|174,205,92,244,237,173,63,182,203,218,216,94,247,104,207,214,111,138,197,156,213,171,99,100,102,117,118,120,149,161,164,347,259,263,290,285,412,416,445,363,433,473,477,496,605,590,148 +BaseHP|76 +BaseAttack|25 +BaseDefense|45 +BaseSpAttack|67 +BaseSpDefense|55 +BaseSpeed|24 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon appears before people and Pokémon who are having nightmares and eats those dreams.\Dream Eater Pokémon\23.3\0.6\0,148,0 +Scale|0.84 +Move|1,149 +Move|1,111 +Move|5,381 +Move|7,281 +Move|11,60 +Move|13,286 +Move|17,236 +Move|19,95 +Move|23,428 +Move|25,485 +Move|29,171 +Move|31,248 +Move|35,347 +Move|37,94 +Move|41,138 +Move|43,477 +Move|47,500 +TradeValue|25 +EvolutionCondition|518,item,8,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/518.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/518.dat index e368163c8..197094eaa 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/518.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/518.dat @@ -1 +1,42 @@ -{"Name":"Musharna","Number":518,"ExperienceType":"Fast","BaseExperience":170,"Type1":"Psychic","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":2805,"EggPokemon":517,"Devolution":517,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[108,28],"HiddenAbility":140,"EggMoves":[112,226,174,361,270,277,290,214,49,129],"Machines":[174,205,92,244,237,173,63,182,203,218,216,94,247,104,207,214,111,138,197,156,213,171,99,100,102,117,118,120,149,161,164,347,259,263,290,285,412,416,445,363,433,473,477,496,605,590,148],"TutorMoves":[],"BaseStats":{"HP":116,"Atk":55,"Def":85,"SpAtk":107,"SpDef":95,"Speed":29},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The dream mist coming from its forehead changes into many different colors depending on the dream that was eaten.","Species":"Drowsing Pokémon","Height":1.1,"Weight":60.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":50,"Moves":[{"Level":1,"ID":111},{"Level":2,"ID":1},{"Level":3,"ID":60},{"Level":4,"ID":95}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Musharna +Number|518 +ExperienceType|0 +BaseExperience|170 +Type1|Psychic +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|2805 +EggPokemon|517 +IsGenderLess|0 +CanBreed|1 +Devolution|517 +IsMale|50 +Ability1|108 +Ability2|28 +HiddenAbility|140 +EggMoves|112,226,174,361,270,277,290,214,49,129 +Machines|174,205,92,244,237,173,63,182,203,218,216,94,247,104,207,214,111,138,197,156,213,171,99,100,102,117,118,120,149,161,164,347,259,263,290,285,412,416,445,363,433,473,477,496,605,590,148 +BaseHP|116 +BaseAttack|55 +BaseDefense|85 +BaseSpAttack|107 +BaseSpDefense|95 +BaseSpeed|29 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The dream mist coming from its forehead changes into many different colors depending on the dream that was eaten.\Drowsing Pokémon\60.5\1.1\0,148,0 +Scale|1.04 +Move|1,111 +Move|1,381 +Move|1,60 +Move|1,95 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/519.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/519.dat index 8d526340f..7b1b6dbbe 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/519.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/519.dat @@ -1 +1,54 @@ -{"Name":"Pidove","Number":519,"ExperienceType":"MediumSlow","BaseExperience":53,"Type1":"Normal","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":519,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[145,105],"HiddenAbility":79,"EggMoves":[516,95,381,234,400,253,273,211],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,197,156,213,211,13,18,36,99,102,117,143,164,263,290,355,416,432,445,363,365,496,526,590,19],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":55,"Def":50,"SpAtk":36,"SpDef":30,"Speed":43},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This very forgetful Pokémon will wait for a new order from its Trainer even though it already has one.","Species":"Tiny Pigeon Pokémon","Height":0.3,"Weight":2.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":16},{"Level":4,"ID":45},{"Level":8,"ID":43},{"Level":11,"ID":98},{"Level":15,"ID":314},{"Level":18,"ID":355},{"Level":22,"ID":197},{"Level":25,"ID":269},{"Level":29,"ID":403},{"Level":32,"ID":13},{"Level":36,"ID":297},{"Level":39,"ID":207},{"Level":43,"ID":263},{"Level":46,"ID":366},{"Level":50,"ID":143}],"EvolutionConditions":[{"Condition":"21","ConditionType":"Level","Evolution":520,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Pidove +Number|519 +ExperienceType|2 +BaseExperience|53 +Type1|Normal +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|519 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|145 +Ability2|105 +HiddenAbility|79 +EggMoves|516,95,381,234,400,253,273,211 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,197,156,213,211,13,18,36,99,102,117,143,164,263,290,355,416,432,445,363,365,496,526,590,19 +BaseHP|50 +BaseAttack|55 +BaseDefense|50 +BaseSpAttack|36 +BaseSpDefense|30 +BaseSpeed|43 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This very forgetful Pokémon will wait for a new order from its Trainer even though it already has one.\Tiny Pigeon Pokémon\2.1\0.3\0,148,0 +Scale|0.7 +Move|1,16 +Move|4,45 +Move|8,43 +Move|11,98 +Move|15,314 +Move|18,355 +Move|22,197 +Move|25,269 +Move|29,403 +Move|32,13 +Move|36,297 +Move|39,207 +Move|43,263 +Move|46,366 +Move|50,143 +TradeValue|10 +EvolutionCondition|520,Level,21,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/52.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/52.dat index ad425c1df..c513ca506 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/52.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/52.dat @@ -1 +1,53 @@ -{"Name":"Meowth","Number":52,"ExperienceType":"MediumFast","BaseExperience":58,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":52,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[53,101],"HiddenAbility":127,"EggMoves":[133,274,175,204,492,95,231,387,386,289,180,39,316,244],"Machines":[29,174,46,92,192,244,237,241,173,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,138,197,156,213,168,171,25,34,36,38,61,55,6,99,85,102,117,130,164,352,269,351,332,259,263,290,289,421,371,416,445,399,363,369,468,496,497,514,526,590,15,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":45,"Def":35,"SpAtk":40,"SpDef":40,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is fascinated by round objects. It can't stop playing with them until it tires and falls asleep.","Species":"Scratch Cat Pokémon","Height":0.4,"Weight":4.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":45},{"Level":6,"ID":44},{"Level":9,"ID":252},{"Level":14,"ID":154},{"Level":17,"ID":103},{"Level":22,"ID":185},{"Level":25,"ID":269},{"Level":30,"ID":6},{"Level":33,"ID":163},{"Level":38,"ID":417},{"Level":41,"ID":372},{"Level":46,"ID":445},{"Level":49,"ID":400},{"Level":50,"ID":364}],"EvolutionConditions":[{"Condition":"28","ConditionType":"Level","Evolution":53,"Trigger":"LevelUp"}],"Items":[{"Id":73,"Chance":5}]} \ No newline at end of file +Name|Meowth +Number|52 +ExperienceType|1 +BaseExperience|58 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|52 +IsGenderLess|0 +IsMale|50 +Ability1|53 +Ability2|101 +HiddenAbility|127 +Eggmoves|133,274,175,204,492,95,231,387,386,289,180,39,316,244 +Machines|29,174,46,92,192,244,237,241,173,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,138,197,156,213,168,171,25,34,36,38,61,55,6,99,85,102,117,130,164,352,269,351,332,259,263,290,289,421,371,416,445,399,363,369,468,496,497,514,526,590,15,148 +BaseHP|40 +BaseAttack|45 +BaseDefense|35 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It is fascinated by round objects. It can't stop playing with them until it tires and falls asleep.\Scratch Cat Pokémon\4.2\0.4\0,148,0 +Scale|0.7 +Move|1,10 +Move|1,45 +Move|6,44 +Move|9,252 +Move|14,154 +Move|17,103 +Move|22,185 +Move|25,269 +Move|30,6 +Move|33,163 +Move|38,417 +Move|41,372 +Move|46,445 +Move|49,400 +Move|50,364 +EvolutionCondition|53,Level,28,Level +Item|5,73 +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/520.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/520.dat index 75290cb54..6f9874ebf 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/520.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/520.dat @@ -1 +1,57 @@ -{"Name":"Tranquill","Number":520,"ExperienceType":"MediumSlow","BaseExperience":125,"Type1":"Normal","Type2":"Flying","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":519,"Devolution":519,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[145,105],"HiddenAbility":79,"EggMoves":[516,95,381,234,400,253,273,211],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,197,156,213,211,13,18,36,99,102,117,143,164,263,290,355,416,432,445,363,365,496,526,590,19],"TutorMoves":[],"BaseStats":{"HP":62,"Atk":77,"Def":62,"SpAtk":50,"SpDef":42,"Speed":65},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"No matter where in the world it goes, it knows where its nest is, so it never gets seperated from its Trainer.","Species":"Wild Pigeon Pokémon","Height":0.6,"Weight":15,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":20,"Moves":[{"Level":1,"ID":16},{"Level":2,"ID":45},{"Level":3,"ID":43},{"Level":4,"ID":98},{"Level":5,"ID":45},{"Level":8,"ID":43},{"Level":11,"ID":98},{"Level":15,"ID":314},{"Level":18,"ID":355},{"Level":23,"ID":197},{"Level":27,"ID":269},{"Level":32,"ID":403},{"Level":36,"ID":13},{"Level":41,"ID":297},{"Level":45,"ID":207},{"Level":50,"ID":263},{"Level":54,"ID":366},{"Level":59,"ID":143}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":521,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Tranquill +Number|520 +ExperienceType|2 +BaseExperience|125 +Type1|Normal +Type2|Flying +CatchRate|120 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|519 +IsGenderLess|0 +CanBreed|1 +Devolution|519 +IsMale|50 +Ability1|145 +Ability2|105 +HiddenAbility|79 +EggMoves|516,95,381,234,400,253,273,211 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,197,156,213,211,13,18,36,99,102,117,143,164,263,290,355,416,432,445,363,365,496,526,590,19 +BaseHP|62 +BaseAttack|77 +BaseDefense|62 +BaseSpAttack|50 +BaseSpDefense|42 +BaseSpeed|65 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|No matter where in the world it goes, it knows where its nest is, so it never gets seperated from its Trainer.\Wild Pigeon Pokémon\15\0.6\0,148,0 +Scale|0.84 +Move|1,16 +Move|1,45 +Move|1,43 +Move|1,98 +Move|4,45 +Move|8,43 +Move|11,98 +Move|15,314 +Move|18,355 +Move|23,197 +Move|27,269 +Move|32,403 +Move|36,13 +Move|41,297 +Move|45,207 +Move|50,263 +Move|54,366 +Move|59,143 +TradeValue|20 +EvolutionCondition|521,Level,32,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/521.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/521.dat index c0b620805..16e6558e3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/521.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/521.dat @@ -1 +1,56 @@ -{"Name":"Unfezant","Number":521,"ExperienceType":"MediumSlow","BaseExperience":215,"Type1":"Normal","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":519,"Devolution":520,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[145,105],"HiddenAbility":79,"EggMoves":[516,95,381,234,400,253,273,211],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,197,156,213,211,13,18,36,99,102,117,143,164,263,290,355,416,432,445,363,365,496,526,590,19],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":115,"Def":80,"SpAtk":65,"SpDef":55,"Speed":93},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Males swing the plumage on their heads to threaten others, but females are better at flying.","Species":"Proud Pokémon","Height":1.2,"Weight":29,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":35,"Moves":[{"Level":1,"ID":16},{"Level":2,"ID":45},{"Level":3,"ID":43},{"Level":4,"ID":98},{"Level":5,"ID":45},{"Level":8,"ID":43},{"Level":11,"ID":98},{"Level":15,"ID":314},{"Level":18,"ID":355},{"Level":23,"ID":197},{"Level":27,"ID":269},{"Level":33,"ID":403},{"Level":38,"ID":13},{"Level":44,"ID":297},{"Level":49,"ID":207},{"Level":55,"ID":263},{"Level":60,"ID":366},{"Level":66,"ID":143}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Unfezant +Number|521 +ExperienceType|2 +BaseExperience|215 +Type1|Normal +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|519 +IsGenderLess|0 +CanBreed|1 +Devolution|520 +IsMale|50 +Ability1|145 +Ability2|105 +HiddenAbility|79 +EggMoves|516,95,381,234,400,253,273,211 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,197,156,213,211,13,18,36,99,102,117,143,164,263,290,355,416,432,445,363,365,496,526,590,19 +BaseHP|80 +BaseAttack|115 +BaseDefense|80 +BaseSpAttack|65 +BaseSpDefense|55 +BaseSpeed|93 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Males swing the plumage on their heads to threaten others, but females are better at flying.\Proud Pokémon\29\1.2\0,148,0 +Scale|1.08 +Move|1,16 +Move|1,45 +Move|1,43 +Move|1,98 +Move|4,45 +Move|8,43 +Move|11,98 +Move|15,314 +Move|18,355 +Move|23,197 +Move|27,269 +Move|33,403 +Move|38,13 +Move|44,297 +Move|49,207 +Move|55,263 +Move|60,366 +Move|66,143 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/522.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/522.dat index 405bbc879..3466a5914 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/522.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/522.dat @@ -1 +1,53 @@ -{"Name":"Blitzle","Number":522,"ExperienceType":"MediumFast","BaseExperience":59,"Type1":"Electric","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":522,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[31,78],"HiddenAbility":157,"EggMoves":[38,24,203,382,99,28,103,351,289,36],"Machines":[174,92,192,237,173,63,182,240,203,218,87,216,189,104,207,214,129,197,156,213,25,34,36,99,102,117,130,164,351,263,290,416,445,363,488,496,521,528,590,148,560],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":60,"Def":32,"SpAtk":50,"SpDef":32,"Speed":76},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its mane shines when it discharges electricty. They use the frequency and rhythm of these flashes to communicate.","Species":"Electrified Pokémon","Height":0.8,"Weight":29.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":30,"Moves":[{"Level":1,"ID":98},{"Level":4,"ID":39},{"Level":8,"ID":268},{"Level":11,"ID":351},{"Level":15,"ID":86},{"Level":18,"ID":488},{"Level":22,"ID":228},{"Level":25,"ID":209},{"Level":29,"ID":23},{"Level":32,"ID":435},{"Level":36,"ID":97},{"Level":39,"ID":528},{"Level":43,"ID":37}],"EvolutionConditions":[{"Condition":"27","ConditionType":"Level","Evolution":523,"Trigger":"LevelUp"}],"Items":[{"Id":2000,"Chance":50}]} \ No newline at end of file +Name|Blitzle +Number|522 +ExperienceType|1 +BaseExperience|59 +Type1|Electric +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|522 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|31 +Ability2|78 +HiddenAbility|157 +EggMoves|38,24,203,382,99,28,103,351,289,36 +Machines|174,92,192,237,173,63,182,240,203,218,87,216,189,104,207,214,129,197,156,213,25,34,36,99,102,117,130,164,351,263,290,416,445,363,488,496,521,528,590,148,560 +BaseHP|45 +BaseAttack|60 +BaseDefense|32 +BaseSpAttack|50 +BaseSpDefense|32 +BaseSpeed|76 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Its mane shines when it discharges electricty. They use the frequency and rhythm of these flashes to communicate.\Electrified Pokémon\29.8\0.8\0,148,0 +Scale|0.92 +Move|1,98 +Move|4,39 +Move|8,268 +Move|11,351 +Move|15,86 +Move|18,488 +Move|22,228 +Move|25,209 +Move|29,23 +Move|32,435 +Move|36,97 +Move|39,528 +Move|43,37 +TradeValue|30 +Item|50,2000 +EvolutionCondition|523,level,27,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/523.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/523.dat index 3363adf2a..3eaec31f8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/523.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/523.dat @@ -1 +1,57 @@ -{"Name":"Zebstrika","Number":523,"ExperienceType":"MediumFast","BaseExperience":174,"Type1":"Electric","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":522,"Devolution":522,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[31,78],"HiddenAbility":157,"EggMoves":[38,24,203,382,99,28,103,351,289,36],"Machines":[174,92,192,249,237,173,63,182,240,203,218,87,216,189,104,207,214,129,197,156,213,25,34,36,38,68,99,102,117,130,164,351,263,290,416,445,363,488,496,521,528,590,148,431,560],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":100,"Def":63,"SpAtk":80,"SpDef":63,"Speed":116},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When this ill-tempered Pokémon runs wild, it shoots lightning from its mane in all directions.","Species":"Thunderbolt Pokémon","Height":1.6,"Weight":79.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":45,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":98},{"Level":3,"ID":39},{"Level":4,"ID":268},{"Level":5,"ID":86},{"Level":6,"ID":39},{"Level":8,"ID":268},{"Level":11,"ID":351},{"Level":15,"ID":86},{"Level":18,"ID":488},{"Level":22,"ID":228},{"Level":25,"ID":209},{"Level":31,"ID":23},{"Level":36,"ID":435},{"Level":42,"ID":97},{"Level":47,"ID":528},{"Level":53,"ID":37},{"Level":58,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":2000,"Chance":50}]} \ No newline at end of file +Name|Zebstrika +Number|523 +ExperienceType|1 +BaseExperience|174 +Type1|Electric +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|522 +IsGenderLess|0 +CanBreed|1 +Devolution|522 +IsMale|50 +Ability1|31 +Ability2|78 +HiddenAbility|157 +EggMoves|38,24,203,382,99,28,103,351,289,36 +Machines|174,92,192,249,237,173,63,182,240,203,218,87,216,189,104,207,214,129,197,156,213,25,34,36,38,68,99,102,117,130,164,351,263,290,416,445,363,488,496,521,528,590,148,431,560 +BaseHP|75 +BaseAttack|100 +BaseDefense|63 +BaseSpAttack|80 +BaseSpDefense|63 +BaseSpeed|116 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|When this ill-tempered Pokémon runs wild, it shoots lightning from its mane in all directions.\Thunderbolt Pokémon\79.5\1.6\0,148,0 +Scale|1.24 +Move|1,569 +Move|1,98 +Move|1,39 +Move|1,268 +Move|1,86 +Move|4,39 +Move|8,268 +Move|11,351 +Move|15,86 +Move|18,488 +Move|22,228 +Move|25,209 +Move|31,23 +Move|36,435 +Move|42,97 +Move|47,528 +Move|53,37 +Move|58,569 +TradeValue|45 +Item|50,2000 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/524.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/524.dat index 49e9ffeba..3fc500d44 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/524.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/524.dat @@ -1 +1,53 @@ -{"Name":"Roggenrola","Number":524,"ExperienceType":"MediumSlow","BaseExperience":56,"Type1":"Rock","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":524,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5],"HiddenAbility":159,"EggMoves":[484,475,174,356,199,222,36,469],"Machines":[29,174,205,92,249,237,173,63,182,203,218,89,216,189,104,207,214,201,111,197,156,213,36,99,102,117,120,153,157,164,317,263,290,416,397,444,446,445,363,430,479,496,523,267,590,70],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":75,"Def":85,"SpAtk":25,"SpDef":25,"Speed":15},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The hexagonal-shaped hole is its ear. It has a tendency to walk in the direction the sound is coming from.","Species":"Mantle Pokémon","Height":0.4,"Weight":18,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":4,"ID":106},{"Level":7,"ID":28},{"Level":10,"ID":29},{"Level":14,"ID":350},{"Level":17,"ID":189},{"Level":20,"ID":334},{"Level":23,"ID":479},{"Level":27,"ID":157},{"Level":30,"ID":446},{"Level":33,"ID":201},{"Level":36,"ID":444},{"Level":40,"ID":153}],"EvolutionConditions":[{"Condition":"25","ConditionType":"Level","Evolution":525,"Trigger":"LevelUp"}],"Items":[{"Id":112,"Chance":50},{"Id":125,"Chance":5}]} \ No newline at end of file +Name|Roggenrola +Number|524 +ExperienceType|2 +BaseExperience|56 +Type1|Rock +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|524 +Devolution|0 +IsGenderLess|0 +IsMale|50 +Ability1|5 +Ability2|Nothing +HiddenAbility|159 +EggMoves|484,475,174,356,199,222,36,469 +Machines|29,174,205,92,249,237,173,63,182,203,218,89,216,189,104,207,214,201,111,197,156,213,36,99,102,117,120,153,157,164,317,263,290,416,397,444,446,445,363,430,479,496,523,267,590,70 +BaseHP|55 +BaseAttack|75 +BaseDefense|85 +BaseSpAttack|25 +BaseSpDefense|25 +BaseSpeed|15 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The hexagonal-shaped hole is its ear. It has a tendency to walk in the direction the sound is coming from.\Mantle Pokémon\18\0.4\0,148,0 +Scale|0.7 +Move|1,33 +Move|4,106 +Move|7,28 +Move|10,29 +Move|14,350 +Move|17,189 +Move|20,334 +Move|23,479 +Move|27,157 +Move|30,446 +Move|33,201 +Move|36,444 +Move|40,153 +EvolutionCondition|525,Level,25,Level +Item|50,112 +Item|5,125 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/525.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/525.dat index 5607f1b59..5c82b0a0e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/525.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/525.dat @@ -1 +1,56 @@ -{"Name":"Boldore","Number":525,"ExperienceType":"MediumSlow","BaseExperience":137,"Type1":"Rock","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":524,"Devolution":524,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5],"HiddenAbility":159,"EggMoves":[],"Machines":[29,174,205,92,249,237,173,63,182,203,218,89,216,189,104,207,214,201,111,197,156,213,25,34,36,38,99,102,117,120,130,153,157,164,317,263,290,416,397,444,446,445,363,430,479,496,523,267,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":105,"Def":105,"SpAtk":50,"SpDef":40,"Speed":20},"RewardEV":{"HP":0,"Atk":1,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it is healthy, its core sticks out. Always facing the same way, it swifly moves front to back and left to right.","Species":"Ore Pokémon","Height":0.9,"Weight":102,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":50,"Moves":[{"Level":1,"ID":28},{"Level":2,"ID":29},{"Level":3,"ID":33},{"Level":4,"ID":106},{"Level":5,"ID":106},{"Level":7,"ID":28},{"Level":10,"ID":29},{"Level":14,"ID":350},{"Level":17,"ID":189},{"Level":20,"ID":334},{"Level":23,"ID":479},{"Level":25,"ID":408},{"Level":30,"ID":157},{"Level":36,"ID":446},{"Level":42,"ID":201},{"Level":48,"ID":444},{"Level":55,"ID":153}],"EvolutionConditions":[{"Condition":"0","ConditionType":"Trade","Evolution":526,"Trigger":"Trading"}],"Items":[{"Id":112,"Chance":50},{"Id":125,"Chance":5}]} \ No newline at end of file +Name|Boldore +Number|525 +ExperienceType|2 +BaseExperience|137 +Type1|Rock +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|524 +Devolution|524 +IsGenderLess|0 +IsMale|50 +Ability1|5 +Ability2|Nothing +HiddenAbility|159 +Machines|29,174,205,92,249,237,173,63,182,203,218,89,216,189,104,207,214,201,111,197,156,213,25,34,36,38,99,102,117,120,130,153,157,164,317,263,290,416,397,444,446,445,363,430,479,496,523,267,590,70,431,560 +BaseHP|70 +BaseAttack|105 +BaseDefense|105 +BaseSpAttack|50 +BaseSpDefense|40 +BaseSpeed|20 +FPHP|0 +FPAttack|1 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it is healthy, its core sticks out. Always facing the same way, it swifly moves front to back and left to right.\Ore Pokémon\102\0.9\0,148,0 +Scale|0.96 +Move|1,28 +Move|1,29 +Move|1,33 +Move|1,106 +Move|4,106 +Move|7,28 +Move|10,29 +Move|14,350 +Move|17,189 +Move|20,334 +Move|23,479 +Move|25,408 +Move|30,157 +Move|36,446 +Move|42,201 +Move|48,444 +Move|55,153 +EvolutionCondition|526,trade,0,trade +Item|50,112 +Item|5,125 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/526.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/526.dat index c74442d0d..c66857fd6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/526.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/526.dat @@ -1 +1,55 @@ -{"Name":"Gigalith","Number":526,"ExperienceType":"MediumSlow","BaseExperience":227,"Type1":"Rock","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":524,"Devolution":525,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5],"HiddenAbility":159,"EggMoves":[],"Machines":[29,174,205,92,249,237,173,63,182,203,218,76,89,216,189,104,207,214,201,111,197,156,213,25,34,36,38,99,82,90,102,117,120,130,153,157,164,317,263,290,416,397,444,446,445,363,430,479,496,523,267,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":135,"Def":130,"SpAtk":60,"SpDef":80,"Speed":25},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The solar rays it absorbs are processed in its energy core and fired as a ball of light.","Species":"Compressed Pokémon","Height":1.7,"Weight":260,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":50,"Moves":[{"Level":1,"ID":28},{"Level":2,"ID":29},{"Level":3,"ID":33},{"Level":4,"ID":106},{"Level":5,"ID":106},{"Level":7,"ID":28},{"Level":10,"ID":29},{"Level":14,"ID":350},{"Level":17,"ID":189},{"Level":20,"ID":334},{"Level":23,"ID":479},{"Level":25,"ID":408},{"Level":30,"ID":157},{"Level":36,"ID":446},{"Level":42,"ID":201},{"Level":48,"ID":444},{"Level":55,"ID":153}],"EvolutionConditions":[],"Items":[{"Id":112,"Chance":50},{"Id":125,"Chance":5}]} \ No newline at end of file +Name|Gigalith +Number|526 +ExperienceType|2 +BaseExperience|227 +Type1|Rock +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|524 +Devolution|525 +IsGenderLess|0 +IsMale|50 +Ability1|5 +Ability2|Nothing +HiddenAbility|159 +Machines|29,174,205,92,249,237,173,63,182,203,218,76,89,216,189,104,207,214,201,111,197,156,213,25,34,36,38,99,82,90,102,117,120,130,153,157,164,317,263,290,416,397,444,446,445,363,430,479,496,523,267,590,70,431,560 +BaseHP|85 +BaseAttack|135 +BaseDefense|130 +BaseSpAttack|60 +BaseSpDefense|80 +BaseSpeed|25 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The solar rays it absorbs are processed in its energy core and fired as a ball of light.\Compressed Pokémon\260\1.7\0,148,0 +Scale|1.28 +Move|1,28 +Move|1,29 +Move|1,33 +Move|1,106 +Move|4,106 +Move|7,28 +Move|10,29 +Move|14,350 +Move|17,189 +Move|20,334 +Move|23,479 +Move|25,408 +Move|30,157 +Move|36,446 +Move|42,201 +Move|48,444 +Move|55,153 +Item|50,112 +Item|5,125 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/527.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/527.dat index aaab2598f..d6107726e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/527.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/527.dat @@ -1 +1,53 @@ -{"Name":"Woobat","Number":527,"ExperienceType":"MediumFast","BaseExperience":63,"Type1":"Psychic","Type2":"Flying","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"Field","BaseEggSteps":4080,"EggPokemon":527,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[109,103],"HiddenAbility":86,"EggMoves":[445,204,313,260,270,355,500,48,485,375,599,282,94],"Machines":[174,92,244,237,173,63,182,202,203,218,216,94,247,104,207,214,138,197,156,213,168,211,13,18,36,99,100,102,115,117,143,86,149,164,347,269,113,219,332,259,263,290,285,355,412,451,373,416,432,360,445,363,365,369,433,473,477,496,512,590,19,148],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":45,"Def":43,"SpAtk":55,"SpDef":43,"Speed":72},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The heart-shaped mark left on a body after a woobat has been attached to it is said to bring good fortune.","Species":"Bat Pokémon","Height":0.4,"Weight":2.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":93},{"Level":4,"ID":316},{"Level":8,"ID":16},{"Level":12,"ID":372},{"Level":15,"ID":531},{"Level":19,"ID":1},{"Level":21,"ID":314},{"Level":25,"ID":213},{"Level":29,"ID":133},{"Level":30,"ID":347},{"Level":32,"ID":403},{"Level":36,"ID":248},{"Level":41,"ID":94},{"Level":47,"ID":283}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":527,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Woobat +Number|527 +ExperienceType|1 +BaseExperience|63 +Type1|Psychic +Type2|Flying +CatchRate|190 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|Field +BaseEggSteps|4080 +EggPokemon|527 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|109 +Ability2|103 +HiddenAbility|86 +EggMoves|445,204,313,260,270,355,500,48,485,375,599,282,94 +Machines|174,92,244,237,173,63,182,202,203,218,216,94,247,104,207,214,138,197,156,213,168,211,13,18,36,99,100,102,115,117,143,86,149,164,347,269,113,219,332,259,263,290,285,355,412,451,373,416,432,360,445,363,365,369,433,473,477,496,512,590,19,148 +BaseHP|55 +BaseAttack|45 +BaseDefense|43 +BaseSpAttack|55 +BaseSpDefense|43 +BaseSpeed|72 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|The heart-shaped mark left on a body after a woobat has been attached to it is said to bring good fortune.\Bat Pokémon\2.1\0.4\0,148,0 +Scale|0.7 +Move|1,93 +Move|4,316 +Move|8,16 +Move|12,372 +Move|15,531 +Move|19,286 +Move|21,314 +Move|25,213 +Move|29,133 +Move|29,347 +Move|32,403 +Move|36,248 +Move|41,94 +Move|47,283 +TradeValue|25 +EvolutionCondition|527,friendship,220,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/528.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/528.dat index 5949e4cac..ac9481fd7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/528.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/528.dat @@ -1 +1,55 @@ -{"Name":"Swoobat","Number":528,"ExperienceType":"MediumFast","BaseExperience":149,"Type1":"Psychic","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"Field","BaseEggSteps":4080,"EggPokemon":527,"Devolution":527,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[109,103],"HiddenAbility":86,"EggMoves":[445,204,313,260,270,282,355,500,48,485,375,599,94],"Machines":[174,92,244,237,173,63,182,202,203,218,216,94,247,104,207,214,138,197,156,213,168,211,13,18,36,99,100,102,115,117,143,86,149,164,347,269,113,219,332,259,263,290,285,355,412,451,373,416,432,360,445,363,365,369,433,473,477,496,512,590,19,148],"TutorMoves":[],"BaseStats":{"HP":67,"Atk":57,"Def":55,"SpAtk":77,"SpDef":55,"Speed":114},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It shakes its tail vigorously when it emits ultrasonic waves strong enough to reduce concrete to rubble.","Species":"Courting Pokémon","Height":0.9,"Weight":10.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":45,"Moves":[{"Level":1,"ID":93},{"Level":2,"ID":316},{"Level":3,"ID":16},{"Level":4,"ID":372},{"Level":5,"ID":316},{"Level":8,"ID":16},{"Level":12,"ID":372},{"Level":15,"ID":531},{"Level":19,"ID":1},{"Level":21,"ID":314},{"Level":25,"ID":213},{"Level":29,"ID":133},{"Level":30,"ID":347},{"Level":32,"ID":403},{"Level":36,"ID":248},{"Level":41,"ID":94},{"Level":47,"ID":283}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Swoobat +Number|528 +ExperienceType|1 +BaseExperience|149 +Type1|Psychic +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|Field +BaseEggSteps|4080 +EggPokemon|527 +IsGenderLess|0 +CanBreed|1 +Devolution|527 +IsMale|50 +Ability1|109 +Ability2|103 +HiddenAbility|86 +EggMoves|445,204,313,260,270,282,355,500,48,485,375,599,94 +Machines|174,92,244,237,173,63,182,202,203,218,216,94,247,104,207,214,138,197,156,213,168,211,13,18,36,99,100,102,115,117,143,86,149,164,347,269,113,219,332,259,263,290,285,355,412,451,373,416,432,360,445,363,365,369,433,473,477,496,512,590,19,148 +BaseHP|67 +BaseAttack|57 +BaseDefense|55 +BaseSpAttack|77 +BaseSpDefense|55 +BaseSpeed|114 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It shakes its tail vigorously when it emits ultrasonic waves strong enough to reduce concrete to rubble.\Courting Pokémon\10.5\0.9\0,148,0 +Scale|0.96 +Move|1,93 +Move|1,316 +Move|1,16 +Move|1,372 +Move|4,316 +Move|8,16 +Move|12,372 +Move|15,531 +Move|19,286 +Move|21,314 +Move|25,213 +Move|29,133 +Move|29,347 +Move|32,403 +Move|36,248 +Move|41,94 +Move|47,283 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/529.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/529.dat index 4cf3cac71..6e846ce77 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/529.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/529.dat @@ -1 +1,54 @@ -{"Name":"Drilbur","Number":529,"ExperienceType":"MediumFast","BaseExperience":66,"Type1":"Ground","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":529,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[146,159],"HiddenAbility":104,"EggMoves":[306,414,334,319,229,431,130,66],"Machines":[223,174,205,92,249,237,173,63,182,203,218,89,216,91,189,104,207,214,188,111,197,156,213,210,36,66,69,99,90,102,117,130,157,164,280,317,332,263,290,374,421,416,446,445,404,363,468,496,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":85,"Def":40,"SpAtk":30,"SpDef":45,"Speed":68},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"By spinning its body, it can dig straight through the ground at a speed of 30mph.","Species":"Mole Pokémon","Height":0.3,"Weight":8.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":30,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":300},{"Level":5,"ID":229},{"Level":8,"ID":189},{"Level":12,"ID":154},{"Level":15,"ID":232},{"Level":19,"ID":91},{"Level":22,"ID":468},{"Level":26,"ID":163},{"Level":29,"ID":157},{"Level":33,"ID":89},{"Level":36,"ID":14},{"Level":40,"ID":201},{"Level":43,"ID":529},{"Level":47,"ID":90}],"EvolutionConditions":[{"Condition":"31","ConditionType":"Level","Evolution":530,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Drilbur +Number|529 +ExperienceType|1 +BaseExperience|66 +Type1|Ground +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|529 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|146 +Ability2|159 +HiddenAbility|104 +EggMoves|306,414,334,319,229,431,130,66 +Machines|223,174,205,92,249,237,173,63,182,203,218,89,216,91,189,104,207,214,188,111,197,156,213,210,36,66,69,99,90,102,117,130,157,164,280,317,332,263,290,374,421,416,446,445,404,363,468,496,590,15,70,431 +BaseHP|60 +BaseAttack|85 +BaseDefense|40 +BaseSpAttack|30 +BaseSpDefense|45 +BaseSpeed|68 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|By spinning its body, it can dig straight through the ground at a speed of 30mph.\Mole Pokémon\8.5\0.3\0,148,0 +Scale|0.7 +Move|1,10 +Move|1,300 +Move|5,229 +Move|8,189 +Move|12,154 +Move|15,232 +Move|19,91 +Move|22,468 +Move|26,163 +Move|29,157 +Move|33,89 +Move|36,14 +Move|40,201 +Move|43,529 +Move|47,90 +TradeValue|30 +EvolutionCondition|530,level,31,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/53.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/53.dat index b1c8f268e..84df1ea39 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/53.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/53.dat @@ -1 +1,57 @@ -{"Name":"Persian","Number":53,"ExperienceType":"MediumFast","BaseExperience":154,"Type1":"Normal","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":52,"Devolution":52,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[7,101],"HiddenAbility":127,"EggMoves":[133,274,175,204,492,95,231,387,386,289,180,39,316,244],"Machines":[29,174,46,92,192,244,237,241,173,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,138,197,156,213,168,171,25,34,36,38,61,55,6,99,85,102,117,130,164,337,352,269,351,332,259,263,290,289,373,421,371,416,445,399,363,369,468,496,497,514,526,590,15,148,560],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":70,"Def":60,"SpAtk":65,"SpDef":65,"Speed":115},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Many adore it for its sophisticated air. However, it will lash out and scratch for little reason.","Species":"Classy Cat Pokémon","Height":1,"Weight":32,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":25,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":44},{"Level":3,"ID":45},{"Level":4,"ID":252},{"Level":5,"ID":1},{"Level":6,"ID":583},{"Level":7,"ID":44},{"Level":9,"ID":252},{"Level":14,"ID":154},{"Level":17,"ID":103},{"Level":22,"ID":185},{"Level":25,"ID":269},{"Level":28,"ID":129},{"Level":32,"ID":408},{"Level":37,"ID":163},{"Level":44,"ID":417},{"Level":49,"ID":372},{"Level":56,"ID":445},{"Level":61,"ID":400},{"Level":65,"ID":364}],"EvolutionConditions":[],"Items":[{"Id":73,"Chance":5}]} \ No newline at end of file +Name|Persian +Number|53 +ExperienceType|1 +BaseExperience|154 +Type1|Normal +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|52 +IsGenderLess|0 +IsMale|50 +Ability1|7 +Ability2|101 +HiddenAbility|127 +Eggmoves|133,274,175,204,492,95,231,387,386,289,180,39,316,244 +Machines|29,174,46,92,192,244,237,241,173,63,196,182,240,203,218,231,87,216,91,247,189,104,207,214,129,111,138,197,156,213,168,171,25,34,36,38,61,55,6,99,85,102,117,130,164,337,352,269,351,332,259,263,290,289,373,421,371,416,445,399,363,369,468,496,497,514,526,590,15,148,560 +BaseHP|65 +BaseAttack|70 +BaseDefense|60 +BaseSpAttack|65 +BaseSpDefense|65 +BaseSpeed|115 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Many adore it for its sophisticated air. However, it will lash out and scratch for little reason.\Classy Cat Pokémon\32\1\0,148,0 +Scale|1 +Move|1,10 +Move|1,44 +Move|1,45 +Move|1,252 +Move|1,415 +Move|1,583 +Move|6,44 +Move|9,252 +Move|14,154 +Move|17,103 +Move|22,185 +Move|25,269 +Move|28,129 +Move|32,408 +Move|37,163 +Move|44,417 +Move|49,372 +Move|56,445 +Move|61,400 +Move|65,364 +Item|5,73 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/530.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/530.dat index bad037c75..608faa94c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/530.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/530.dat @@ -1 +1,57 @@ -{"Name":"Excadrill","Number":530,"ExperienceType":"MediumFast","BaseExperience":178,"Type1":"Ground","Type2":"Steel","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":529,"Devolution":529,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[146,159],"HiddenAbility":104,"EggMoves":[306,414,334,319,229,431,130,66],"Machines":[223,174,205,92,249,237,173,63,182,203,218,89,216,91,189,104,207,214,188,201,111,197,156,213,210,5,14,25,32,34,36,38,66,69,99,90,102,117,130,157,164,264,280,317,332,263,290,411,374,421,416,446,445,404,363,398,468,496,523,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":110,"Atk":135,"Def":60,"SpAtk":50,"SpDef":65,"Speed":88},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Forming a drill with its steel claws and head, it can bore through a steel plate, no matter how thick it is.","Species":"Subterrene Pokémon","Height":0.7,"Weight":40.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":10},{"Level":3,"ID":300},{"Level":4,"ID":229},{"Level":5,"ID":189},{"Level":6,"ID":229},{"Level":8,"ID":189},{"Level":12,"ID":154},{"Level":15,"ID":232},{"Level":19,"ID":91},{"Level":22,"ID":468},{"Level":26,"ID":163},{"Level":29,"ID":157},{"Level":31,"ID":32},{"Level":36,"ID":89},{"Level":42,"ID":14},{"Level":49,"ID":201},{"Level":55,"ID":529},{"Level":62,"ID":90}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Excadrill +Number|530 +ExperienceType|1 +BaseExperience|178 +Type1|Ground +Type2|Steel +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|529 +IsGenderLess|0 +CanBreed|1 +Devolution|529 +IsMale|50 +Ability1|146 +Ability2|159 +HiddenAbility|104 +EggMoves|306,414,334,319,229,431,130,66 +Machines|223,174,205,92,249,237,173,63,182,203,218,89,216,91,189,104,207,214,188,201,111,197,156,213,210,5,14,25,32,34,36,38,66,69,99,90,102,117,130,157,164,264,280,317,332,263,290,411,374,421,416,446,445,404,363,398,468,496,523,590,15,70,431 +BaseHP|110 +BaseAttack|135 +BaseDefense|60 +BaseSpAttack|50 +BaseSpDefense|65 +BaseSpeed|88 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Forming a drill with its steel claws and head, it can bore through a steel plate, no matter how thick it is.\Subterrene Pokémon\40.4\0.7\0,148,0 +Scale|0.88 +Move|1,563 +Move|1,10 +Move|1,300 +Move|1,229 +Move|1,189 +Move|5,229 +Move|8,189 +Move|12,154 +Move|15,232 +Move|19,91 +Move|22,468 +Move|26,163 +Move|29,157 +Move|31,32 +Move|36,89 +Move|42,14 +Move|49,201 +Move|55,529 +Move|62,90 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/531.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/531.dat index 6f3910432..c57f92fc8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/531.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/531.dat @@ -1 +1,56 @@ -{"Name":"Audino","Number":531,"ExperienceType":"Fast","BaseExperience":390,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":531,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[131,144],"HiddenAbility":103,"EggMoves":[133,516,577,227,215,361,381,214,186,273,281],"Machines":[223,174,205,92,244,237,241,230,173,59,63,196,182,240,203,218,76,231,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,38,61,55,58,6,66,68,69,99,85,102,115,117,118,130,86,149,164,264,347,113,219,351,53,263,290,285,289,374,451,409,416,445,363,433,473,477,496,497,510,514,526,528,612,605,590,57,148],"TutorMoves":[],"BaseStats":{"HP":103,"Atk":60,"Def":86,"SpAtk":60,"SpDef":86,"Speed":50},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Forming a drill with its steel claws and head, it can bore through a steel plate, no matter how thick it is.","Species":"Hearing Pokémon","Height":1.1,"Weight":31,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":35,"Moves":[{"Level":1,"ID":387},{"Level":2,"ID":589},{"Level":3,"ID":1},{"Level":4,"ID":45},{"Level":5,"ID":1},{"Level":6,"ID":287},{"Level":10,"ID":3},{"Level":15,"ID":213},{"Level":20,"ID":1},{"Level":25,"ID":1},{"Level":30,"ID":36},{"Level":35,"ID":505},{"Level":40,"ID":1},{"Level":45,"ID":1},{"Level":50,"ID":38},{"Level":55,"ID":387}],"EvolutionConditions":[],"Items":[{"Id":2009,"Chance":5},{"Id":2006,"Chance":50}]} \ No newline at end of file +Name|Audino +Number|531 +ExperienceType|0 +BaseExperience|390 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|531 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|131 +Ability2|144 +HiddenAbility|103 +EggMoves|133,516,577,227,215,361,381,214,186,273,281 +Machines|223,174,205,92,244,237,241,230,173,59,63,196,182,240,203,218,76,231,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,38,61,55,58,6,66,68,69,99,85,102,115,117,118,130,86,149,164,264,347,113,219,351,53,263,290,285,289,374,451,409,416,445,363,433,473,477,496,497,510,514,526,528,612,605,590,57,148 +BaseHP|103 +BaseAttack|60 +BaseDefense|86 +BaseSpAttack|60 +BaseSpDefense|86 +BaseSpeed|50 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Forming a drill with its steel claws and head, it can bore through a steel plate, no matter how thick it is.\Hearing Pokémon\31\1.1\0,148,0 +Scale|1.04 +Move|1,387 +Move|1,589 +Move|1,1 +Move|1,45 +Move|1,270 +Move|5,287 +Move|10,3 +Move|15,213 +Move|20,290 +Move|25,494 +Move|30,36 +Move|35,505 +Move|40,495 +Move|45,493 +Move|50,38 +Move|55,387 +TradeValue|35 +Item|5,2009 +Item|50,2006 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/531_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/531_mega.dat new file mode 100644 index 000000000..40b675203 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/531_mega.dat @@ -0,0 +1,56 @@ +Name|Mega Audino +Number|531 +ExperienceType|0 +BaseExperience|390 +Type1|Normal +Type2|Fairy +CatchRate|255 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|531 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|131 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|133,516,577,227,215,361,381,214,186,273,281 +Machines|223,174,205,92,244,237,241,230,173,59,63,196,182,240,203,218,76,231,87,216,91,94,247,189,104,8,207,214,126,111,9,138,197,156,213,7,171,5,34,36,38,61,55,58,6,66,68,69,99,85,102,115,117,118,130,86,149,164,264,347,113,219,351,53,263,290,285,289,374,451,409,416,445,363,433,473,477,496,497,510,514,526,528,612,605,590,57,148 +BaseHP|103 +BaseAttack|60 +BaseDefense|126 +BaseSpAttack|80 +BaseSpDefense|126 +BaseSpeed|50 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Forming a drill with its steel claws and head, it can bore through a steel plate, no matter how thick it is.\Hearing Pokémon\32\1.5\0,148,0 +Scale|1.04 +Move|1,387 +Move|1,589 +Move|1,1 +Move|1,45 +Move|1,270 +Move|5,287 +Move|10,3 +Move|15,213 +Move|20,290 +Move|25,494 +Move|30,36 +Move|35,505 +Move|40,495 +Move|45,493 +Move|50,38 +Move|55,387 +TradeValue|35 +Item|5,2009 +Item|50,2006 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/532.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/532.dat index 866aa1531..0c51be2f1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/532.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/532.dat @@ -1 +1,55 @@ -{"Name":"Timburr","Number":532,"ExperienceType":"MediumSlow","BaseExperience":61,"Type1":"Fighting","Type2":"Blank","CatchRate":180,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":532,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[62,125],"HiddenAbility":89,"EggMoves":[4,68,197,409,203,395,193,183,179,469],"Machines":[223,174,92,249,237,241,173,63,182,240,203,218,216,91,104,8,207,214,9,197,156,213,7,5,34,36,66,68,69,99,102,117,130,157,164,264,339,269,280,317,263,290,411,374,409,371,416,444,445,363,398,447,479,490,496,514,526,612,590,15,70],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":80,"Def":55,"SpAtk":25,"SpDef":35,"Speed":35},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Always carrying squared logs, they help out with construction. As they grow, they carry bigger logs.","Species":"Muscular Pokémon","Height":0.6,"Weight":12.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":20,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":43},{"Level":4,"ID":116},{"Level":8,"ID":117},{"Level":12,"ID":67},{"Level":16,"ID":88},{"Level":20,"ID":358},{"Level":24,"ID":498},{"Level":28,"ID":339},{"Level":31,"ID":157},{"Level":34,"ID":223},{"Level":37,"ID":184},{"Level":40,"ID":359},{"Level":43,"ID":444},{"Level":46,"ID":264},{"Level":49,"ID":276}],"EvolutionConditions":[{"Condition":"26","ConditionType":"Level","Evolution":533,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Timburr +Number|532 +ExperienceType|2 +BaseExperience|61 +Type1|Fighting +Type2| +CatchRate|180 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|532 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|75 +Ability1|62 +Ability2|125 +HiddenAbility|89 +EggMoves|4,68,197,409,203,395,193,183,179,469 +Machines|223,174,92,249,237,241,173,63,182,240,203,218,216,91,104,8,207,214,9,197,156,213,7,5,34,36,66,68,69,99,102,117,130,157,164,264,339,269,280,317,263,290,411,374,409,371,416,444,445,363,398,447,479,490,496,514,526,612,590,15,70 +BaseHP|75 +BaseAttack|80 +BaseDefense|55 +BaseSpAttack|25 +BaseSpDefense|35 +BaseSpeed|35 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Always carrying squared logs, they help out with construction. As they grow, they carry bigger logs.\Muscular Pokémon\12.5\0.6\0,148,0 +Scale|0.84 +Move|1,1 +Move|1,43 +Move|4,116 +Move|8,117 +Move|12,67 +Move|16,88 +Move|20,358 +Move|24,498 +Move|28,339 +Move|31,157 +Move|34,223 +Move|37,184 +Move|40,359 +Move|43,444 +Move|46,264 +Move|49,276 +TradeValue|20 +EvolutionCondition|533,level,26,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/533.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/533.dat index 08a06d7e5..43a3cbea0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/533.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/533.dat @@ -1 +1,57 @@ -{"Name":"Gurdurr","Number":533,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Fighting","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":532,"Devolution":532,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[62,125],"HiddenAbility":89,"EggMoves":[4,68,197,409,203,395,193,183,179,469],"Machines":[223,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,130,157,164,264,339,269,280,317,263,290,411,374,409,371,416,444,445,363,398,447,479,490,496,514,526,612,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":105,"Def":85,"SpAtk":40,"SpDef":50,"Speed":40},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"With strengthened bodies, they skillfully wield steel beams to take down buildings.","Species":"Muscular Pokémon","Height":1.2,"Weight":40,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":40,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":43},{"Level":3,"ID":116},{"Level":4,"ID":117},{"Level":5,"ID":116},{"Level":8,"ID":117},{"Level":12,"ID":67},{"Level":16,"ID":88},{"Level":20,"ID":358},{"Level":24,"ID":498},{"Level":29,"ID":339},{"Level":33,"ID":157},{"Level":37,"ID":223},{"Level":41,"ID":184},{"Level":45,"ID":359},{"Level":49,"ID":444},{"Level":53,"ID":264},{"Level":57,"ID":276}],"EvolutionConditions":[{"Condition":"0","ConditionType":"Trade","Evolution":534,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Gurdurr +Number|533 +ExperienceType|2 +BaseExperience|142 +Type1|Fighting +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|532 +IsGenderLess|0 +CanBreed|1 +Devolution|532 +IsMale|75 +Ability1|62 +Ability2|125 +HiddenAbility|89 +EggMoves|4,68,197,409,203,395,193,183,179,469 +Machines|223,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,130,157,164,264,339,269,280,317,263,290,411,374,409,371,416,444,445,363,398,447,479,490,496,514,526,612,590,15,70,431 +BaseHP|85 +BaseAttack|105 +BaseDefense|85 +BaseSpAttack|40 +BaseSpDefense|50 +BaseSpeed|40 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|With strengthened bodies, they skillfully wield steel beams to take down buildings.\Muscular Pokémon\40\1.2\0,148,0 +Scale|1.08 +Move|1,1 +Move|1,43 +Move|1,116 +Move|1,117 +Move|4,116 +Move|8,117 +Move|12,67 +Move|16,88 +Move|20,358 +Move|24,498 +Move|29,339 +Move|33,157 +Move|37,223 +Move|41,184 +Move|45,359 +Move|49,444 +Move|53,264 +Move|57,276 +TradeValue|40 +EvolutionCondition|534,trade,0,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/534.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/534.dat index 77acdbf18..6557410ca 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/534.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/534.dat @@ -1 +1,56 @@ -{"Name":"Conkeldurr","Number":534,"ExperienceType":"MediumSlow","BaseExperience":227,"Type1":"Fighting","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":532,"Devolution":533,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[62,125],"HiddenAbility":89,"EggMoves":[4,68,197,409,203,395,193,183,179,469],"Machines":[63,70,89,91,92,104,156,157,164,182,207,213,216,218,237,240,241,249,263,269,280,317,339,371,374,398,411,416,444,447,479,490,496,514,523,526],"TutorMoves":[],"BaseStats":{"HP":105,"Atk":140,"Def":95,"SpAtk":55,"SpDef":65,"Speed":45},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Rather than rely on force, they master moves that utilize the centrifugal force of spinning concrete.","Species":"Muscular Pokémon","Height":1.4,"Weight":87,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":60,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":43},{"Level":3,"ID":116},{"Level":4,"ID":117},{"Level":5,"ID":116},{"Level":8,"ID":117},{"Level":12,"ID":67},{"Level":16,"ID":88},{"Level":20,"ID":358},{"Level":24,"ID":498},{"Level":29,"ID":339},{"Level":33,"ID":157},{"Level":37,"ID":223},{"Level":41,"ID":184},{"Level":45,"ID":359},{"Level":49,"ID":444},{"Level":53,"ID":264},{"Level":57,"ID":276}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Conkeldurr +Number|534 +ExperienceType|2 +BaseExperience|227 +Type1|Fighting +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|532 +IsGenderLess|0 +CanBreed|1 +Devolution|533 +IsMale|75 +Ability1|62 +Ability2|125 +HiddenAbility|89 +EggMoves|4,68,197,409,203,395,193,183,179,469 +Machines|63,70,89,91,92,104,156,157,164,182,207,213,216,218,237,240,241,249,263,269,280,317,339,371,374,398,411,416,444,447,479,490,496,514,523,526 +BaseHP|105 +BaseAttack|140 +BaseDefense|95 +BaseSpAttack|55 +BaseSpDefense|65 +BaseSpeed|45 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Rather than rely on force, they master moves that utilize the centrifugal force of spinning concrete.\Muscular Pokémon\87\1.4\0,148,0 +Scale|1.16 +Move|1,1 +Move|1,43 +Move|1,116 +Move|1,117 +Move|4,116 +Move|8,117 +Move|12,67 +Move|16,88 +Move|20,358 +Move|24,498 +Move|29,339 +Move|33,157 +Move|37,223 +Move|41,184 +Move|45,359 +Move|49,444 +Move|53,264 +Move|57,276 +TradeValue|60 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/535.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/535.dat index 2b6dc523d..f2d85919d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/535.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/535.dat @@ -1 +1,54 @@ -{"Name":"Tympole","Number":535,"ExperienceType":"MediumSlow","BaseExperience":59,"Type1":"Water","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":535,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,93],"HiddenAbility":11,"EggMoves":[495,414,54,426,300,287,173,352,214],"Machines":[174,205,92,237,173,63,196,182,240,203,218,216,104,207,214,111,197,156,213,61,55,58,99,102,117,164,352,263,290,362,416,445,363,482,496,503,611,590,57,250],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":50,"Def":40,"SpAtk":50,"SpDef":40,"Speed":64},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"By vibrating its cheeks, it emits sound waves imperceptible to humans and warns others of danger.","Species":"Tadpole Pokémon","Height":0.5,"Weight":4.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":145},{"Level":2,"ID":45},{"Level":5,"ID":48},{"Level":9,"ID":1},{"Level":12,"ID":61},{"Level":16,"ID":341},{"Level":20,"ID":392},{"Level":23,"ID":253},{"Level":27,"ID":330},{"Level":31,"ID":240},{"Level":34,"ID":175},{"Level":38,"ID":1},{"Level":42,"ID":56},{"Level":45,"ID":304}],"EvolutionConditions":[{"Condition":"25","ConditionType":"Level","Evolution":536,"Trigger":"LevelUp"}],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Tympole +Number|535 +ExperienceType|2 +BaseExperience|59 +Type1|Water +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|535 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|33 +Ability2|93 +HiddenAbility|11 +EggMoves|495,414,54,426,300,287,173,352,214 +Machines|174,205,92,237,173,63,196,182,240,203,218,216,104,207,214,111,197,156,213,61,55,58,99,102,117,164,352,263,290,362,416,445,363,482,496,503,611,590,57,250 +BaseHP|50 +BaseAttack|50 +BaseDefense|40 +BaseSpAttack|50 +BaseSpDefense|40 +BaseSpeed|64 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|By vibrating its cheeks, it emits sound waves imperceptible to humans and warns others of danger.\Tadpole Pokémon\4.5\0.5\0,148,0 +Scale|0.7 +Move|1,145 +Move|1,45 +Move|5,48 +Move|9,496 +Move|12,61 +Move|16,341 +Move|20,392 +Move|23,253 +Move|27,330 +Move|31,240 +Move|34,175 +Move|38,497 +Move|42,56 +Move|45,304 +TradeValue|25 +Item|50,2007 +EvolutionCondition|536,Level,25,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/536.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/536.dat index 69a9540d9..458bc733a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/536.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/536.dat @@ -1 +1,53 @@ -{"Name":"Palpitoad","Number":536,"ExperienceType":"MediumSlow","BaseExperience":134,"Type1":"Water","Type2":"Ground","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":535,"Devolution":535,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,93],"HiddenAbility":11,"EggMoves":[],"Machines":[57,92,104,156,164,182,188,207,213,216,218,237,240,249,258,263,362,482,496,497,523],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":65,"Def":55,"SpAtk":65,"SpDef":55,"Speed":69},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lives in the water and on land. It uses its long, stick tongue to immobilize its opponents.","Species":"Vibration Pokémon","Height":0.8,"Weight":17,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":40,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":48},{"Level":3,"ID":145},{"Level":4,"ID":1},{"Level":5,"ID":48},{"Level":9,"ID":1},{"Level":12,"ID":61},{"Level":16,"ID":341},{"Level":20,"ID":392},{"Level":23,"ID":253},{"Level":28,"ID":330},{"Level":33,"ID":240},{"Level":37,"ID":175},{"Level":42,"ID":1},{"Level":47,"ID":56},{"Level":51,"ID":304}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":537,"Trigger":"LevelUp"}],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Palpitoad +Number|536 +ExperienceType|2 +BaseExperience|134 +Type1|Water +Type2|Ground +CatchRate|120 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +IsGenderLess|0 +EggPokemon|535 +IsMale|50 +Ability1|33 +Ability2|93 +HiddenAbility|11 +Machines|57,92,104,156,164,182,188,207,213,216,218,237,240,249,258,263,362,482,496,497,523 +BaseHP|75 +BaseAttack|65 +BaseDefense|55 +BaseSpAttack|65 +BaseSpDefense|55 +BaseSpeed|69 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lives in the water and on land. It uses its long, stick tongue to immobilize its opponents.\Vibration Pokémon\17\0.8\0,148,0 +Scale|0.92 +Move|1,45 +Move|1,48 +Move|5,48 +Move|47,56 +Move|12,61 +Move|1,145 +Move|37,175 +Move|33,240 +Move|23,253 +Move|51,304 +Move|28,330 +Move|16,341 +Move|20,392 +Move|1,496 +Move|9,496 +Move|42,497 +EvolutionCondition|537,Level,36,Level +Item|50,2007 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/537.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/537.dat index 1512b5d23..d17743d3b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/537.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/537.dat @@ -1 +1,57 @@ -{"Name":"Seismitoad","Number":537,"ExperienceType":"MediumSlow","BaseExperience":225,"Type1":"Water","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":535,"Devolution":536,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[33,93],"HiddenAbility":11,"EggMoves":[495,414,54,426,300,287,173,352,214],"Machines":[223,174,205,92,249,237,173,63,196,182,240,203,218,89,216,91,104,8,207,214,188,111,197,156,213,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,130,164,264,352,263,290,411,362,409,416,446,445,363,482,496,503,611,612,590,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":105,"Atk":95,"Def":75,"SpAtk":85,"SpDef":75,"Speed":74},"RewardEV":{"HP":3,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"By putting power into its bumps, it creates vibrations and increase the power of its punches.","Species":"Vibration Pokémon","Height":1.5,"Weight":62,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":50,"Moves":[{"Level":1,"ID":145},{"Level":2,"ID":45},{"Level":3,"ID":48},{"Level":4,"ID":1},{"Level":5,"ID":48},{"Level":9,"ID":1},{"Level":12,"ID":61},{"Level":16,"ID":341},{"Level":20,"ID":392},{"Level":23,"ID":253},{"Level":28,"ID":330},{"Level":33,"ID":240},{"Level":36,"ID":51},{"Level":39,"ID":175},{"Level":44,"ID":409},{"Level":49,"ID":1},{"Level":53,"ID":56},{"Level":59,"ID":304}],"EvolutionConditions":[],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Seismitoad +Number|537 +ExperienceType|2 +BaseExperience|225 +Type1|Water +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|535 +IsGenderLess|0 +CanBreed|1 +Devolution|536 +IsMale|50 +Ability1|33 +Ability2|93 +HiddenAbility|11 +EggMoves|495,414,54,426,300,287,173,352,214 +Machines|223,174,205,92,249,237,173,63,196,182,240,203,218,89,216,91,104,8,207,214,188,111,197,156,213,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,130,164,264,352,263,290,411,362,409,416,446,445,363,482,496,503,611,612,590,57,70,250,431,560 +BaseHP|105 +BaseAttack|95 +BaseDefense|75 +BaseSpAttack|85 +BaseSpDefense|75 +BaseSpeed|74 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|By putting power into its bumps, it creates vibrations and increase the power of its punches.\Vibration Pokémon\62\1.5\0,148,0 +Scale|1.2 +Move|1,145 +Move|1,45 +Move|1,48 +Move|1,496 +Move|5,48 +Move|9,496 +Move|12,61 +Move|16,341 +Move|20,392 +Move|23,253 +Move|28,330 +Move|33,240 +Move|36,51 +Move|39,175 +Move|44,409 +Move|49,497 +Move|53,56 +Move|59,304 +TradeValue|50 +Item|50,2007 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/538.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/538.dat index d971ce0d2..5e2423916 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/538.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/538.dat @@ -1 +1,53 @@ -{"Name":"Throh","Number":538,"ExperienceType":"MediumFast","BaseExperience":163,"Type1":"Fighting","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":538,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[62,39],"HiddenAbility":104,"EggMoves":[],"Machines":[223,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,130,157,164,264,339,269,280,317,263,290,411,374,371,416,444,445,363,398,447,490,496,514,523,526,612,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":120,"Atk":100,"Def":85,"SpAtk":30,"SpDef":85,"Speed":45},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it encounters a foe bigger than itself, it wants to throw it. It changes belts as it gets stronger.","Species":"Judo Pokémon","Height":1.3,"Weight":55.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":35,"Moves":[{"Level":1,"ID":20},{"Level":2,"ID":43},{"Level":5,"ID":117},{"Level":9,"ID":116},{"Level":13,"ID":69},{"Level":17,"ID":233},{"Level":21,"ID":279},{"Level":25,"ID":1},{"Level":29,"ID":34},{"Level":33,"ID":339},{"Level":37,"ID":1},{"Level":41,"ID":203},{"Level":45,"ID":1},{"Level":48,"ID":276},{"Level":50,"ID":179}],"EvolutionConditions":[],"Items":[{"Id":98,"Chance":5}]} \ No newline at end of file +Name|Throh +Number|538 +ExperienceType|1 +BaseExperience|163 +Type1|Fighting +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|538 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|100 +Ability1|62 +Ability2|39 +HiddenAbility|104 +Machines|223,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,130,157,164,264,339,269,280,317,263,290,411,374,371,416,444,445,363,398,447,490,496,514,523,526,612,590,15,70,431 +BaseHP|120 +BaseAttack|100 +BaseDefense|85 +BaseSpAttack|30 +BaseSpDefense|85 +BaseSpeed|45 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it encounters a foe bigger than itself, it wants to throw it. It changes belts as it gets stronger.\Judo Pokémon\55.5\1.3\0,148,0 +Scale|1.12 +Move|1,20 +Move|1,43 +Move|5,117 +Move|9,116 +Move|13,69 +Move|17,233 +Move|21,279 +Move|25,480 +Move|29,34 +Move|33,339 +Move|37,509 +Move|41,203 +Move|45,469 +Move|48,276 +Move|50,179 +TradeValue|35 +Item|5,98 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/539.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/539.dat index b32a96bed..fea44bf50 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/539.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/539.dat @@ -1 +1,53 @@ -{"Name":"Sawk","Number":539,"ExperienceType":"MediumFast","BaseExperience":163,"Type1":"Fighting","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":539,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[5,39],"HiddenAbility":104,"EggMoves":[],"Machines":[223,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,130,157,164,264,339,269,280,317,263,290,411,374,371,416,444,445,363,398,447,490,496,514,523,526,612,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":125,"Def":75,"SpAtk":30,"SpDef":75,"Speed":85},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Desiring the strongest karate chop, they seclude themselves in mountains and train without sleeping.","Species":"Karate Pokémon","Height":1.4,"Weight":51,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":35,"Moves":[{"Level":1,"ID":249},{"Level":2,"ID":43},{"Level":5,"ID":117},{"Level":9,"ID":116},{"Level":13,"ID":24},{"Level":17,"ID":490},{"Level":21,"ID":68},{"Level":25,"ID":2},{"Level":29,"ID":280},{"Level":33,"ID":339},{"Level":37,"ID":1},{"Level":41,"ID":203},{"Level":45,"ID":1},{"Level":48,"ID":370},{"Level":50,"ID":179}],"EvolutionConditions":[],"Items":[{"Id":98,"Chance":5}]} \ No newline at end of file +Name|Sawk +Number|539 +ExperienceType|1 +BaseExperience|163 +Type1|Fighting +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|539 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|100 +Ability1|5 +Ability2|39 +HiddenAbility|104 +Machines|223,174,92,249,237,241,173,63,182,240,203,218,89,216,91,104,8,207,214,9,197,156,213,7,5,25,34,36,38,66,68,69,99,102,117,130,157,164,264,339,269,280,317,263,290,411,374,371,416,444,445,363,398,447,490,496,514,523,526,612,590,15,70,431 +BaseHP|75 +BaseAttack|125 +BaseDefense|75 +BaseSpAttack|30 +BaseSpDefense|75 +BaseSpeed|85 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Desiring the strongest karate chop, they seclude themselves in mountains and train without sleeping.\Karate Pokémon\51\1.4\0,148,0 +Scale|1.16 +Move|1,249 +Move|1,43 +Move|5,117 +Move|9,116 +Move|13,24 +Move|17,490 +Move|21,68 +Move|25,2 +Move|29,280 +Move|33,339 +Move|37,514 +Move|41,203 +Move|45,501 +Move|48,370 +Move|50,179 +TradeValue|35 +Item|5,98 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/54.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/54.dat index 8b03e5611..c41ce5b36 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/54.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/54.dat @@ -1 +1,53 @@ -{"Name":"Psyduck","Number":54,"ExperienceType":"MediumFast","BaseExperience":64,"Type1":"Water","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":54,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[6,13],"HiddenAbility":33,"EggMoves":[499,109,238,227,193,248,95,426,60,287,290,493,485,281,214,113,58,94],"Machines":[223,29,174,92,249,244,237,173,59,63,196,182,240,203,218,231,216,91,94,189,104,8,207,214,129,197,156,213,5,34,36,61,55,58,6,66,68,69,99,102,117,130,164,264,352,347,258,113,280,332,263,290,362,374,421,416,445,363,468,473,477,496,503,612,590,57,70,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":52,"Def":48,"SpAtk":65,"SpDef":50,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has mystical powers but doesn't recall that it has used them. That is why it always looks puzzled.","Species":"Duck Pokémon","Height":0.8,"Weight":19.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":25,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":346},{"Level":4,"ID":39},{"Level":8,"ID":55},{"Level":11,"ID":1},{"Level":15,"ID":93},{"Level":18,"ID":352},{"Level":22,"ID":154},{"Level":25,"ID":103},{"Level":29,"ID":428},{"Level":32,"ID":401},{"Level":36,"ID":1},{"Level":39,"ID":244},{"Level":43,"ID":133},{"Level":46,"ID":56},{"Level":50,"ID":1}],"EvolutionConditions":[{"Condition":"33","ConditionType":"Level","Evolution":55,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Psyduck +Number|54 +ExperienceType|1 +BaseExperience|64 +Type1|Water +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|54 +IsGenderLess|0 +IsMale|50 +Ability1|6 +Ability2|13 +HiddenAbility|33 +EggMoves|499,109,238,227,193,248,95,426,60,287,290,493,485,281,214,113,58,94 +Machines|223,29,174,92,249,244,237,173,59,63,196,182,240,203,218,231,216,91,94,189,104,8,207,214,129,197,156,213,5,34,36,61,55,58,6,66,68,69,99,102,117,130,164,264,352,347,258,113,280,332,263,290,362,374,421,416,445,363,468,473,477,496,503,612,590,57,70,148,250,127,291 +BaseHP|50 +BaseAttack|52 +BaseDefense|48 +BaseSpAttack|65 +BaseSpDefense|50 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has mystical powers but doesn't recall that it has used them. That is why it always looks puzzled.\Duck Pokémon\19.6\0.8\0,148,0 +Scale|0.92 +Move|1,10 +Move|1,346 +Move|4,39 +Move|8,55 +Move|11,50 +Move|15,93 +Move|18,352 +Move|22,154 +Move|25,103 +Move|29,428 +Move|32,401 +Move|36,487 +Move|39,244 +Move|43,133 +Move|46,56 +Move|50,472 +EvolutionCondition|55,Level,33,Level +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/540.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/540.dat index 3fba0d0bc..49d1a7244 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/540.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/540.dat @@ -1 +1,48 @@ -{"Name":"Sewaddle","Number":540,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Bug","Type2":"Grass","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":540,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,34],"HiddenAbility":142,"EggMoves":[97,403,226,293,382,170,13,103,318],"Machines":[174,92,237,241,173,63,182,202,203,218,216,104,207,214,197,156,213,99,72,102,117,164,263,290,412,416,445,363,496,522,267,590,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":53,"Def":70,"SpAtk":40,"SpDef":60,"Speed":42},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Since this Pokémon makes its own clothers out of leaves, it is a popular mascot for fashion designers.","Species":"Sewing Pokémon","Height":0.3,"Weight":2.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":81},{"Level":8,"ID":450},{"Level":15,"ID":75},{"Level":22,"ID":522},{"Level":29,"ID":203},{"Level":31,"ID":1},{"Level":36,"ID":405},{"Level":43,"ID":175}],"EvolutionConditions":[{"Condition":"20","ConditionType":"Level","Evolution":541,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Sewaddle +Number|540 +ExperienceType|2 +BaseExperience|62 +Type1|Bug +Type2|Grass +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|540 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|68 +Ability2|34 +HiddenAbility|142 +EggMoves|97,403,226,293,382,170,13,103,318 +Machines|174,92,237,241,173,63,182,202,203,218,216,104,207,214,197,156,213,99,72,102,117,164,263,290,412,416,445,363,496,522,267,590,148 +BaseHP|45 +BaseAttack|53 +BaseDefense|70 +BaseSpAttack|40 +BaseSpDefense|60 +BaseSpeed|42 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Since this Pokémon makes its own clothers out of leaves, it is a popular mascot for fashion designers.\Sewing Pokémon\2.5\0.3\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,81 +Move|8,450 +Move|15,75 +Move|22,522 +Move|29,203 +Move|31,564 +Move|36,405 +Move|43,175 +TradeValue|15 +EvolutionCondition|541,Level,20,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/541.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/541.dat index 516d07cfb..d63d684c9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/541.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/541.dat @@ -1 +1,45 @@ -{"Name":"Swadloon","Number":541,"ExperienceType":"MediumSlow","BaseExperience":133,"Type1":"Bug","Type2":"Grass","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":540,"Devolution":540,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[102,34],"HiddenAbility":142,"EggMoves":[97,403,226,293,382,170,13,103,318],"Machines":[174,92,237,241,173,63,182,202,203,218,216,104,207,214,197,156,213,99,72,102,117,164,263,290,412,416,445,363,496,522,267,590,148],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":63,"Def":90,"SpAtk":50,"SpDef":80,"Speed":42},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Preferring dark, damp places, it spends the entire day eating fallen leaves that lie around it.","Species":"Leaf-Wrapped Pokémon","Height":0.5,"Weight":7.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":320},{"Level":2,"ID":33},{"Level":3,"ID":81},{"Level":4,"ID":450},{"Level":5,"ID":75},{"Level":20,"ID":182}],"EvolutionConditions":[{"Condition":"220","ConditionType":"Friendship","Evolution":542,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Swadloon +Number|541 +ExperienceType|2 +BaseExperience|133 +Type1|Bug +Type2|Grass +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|540 +IsGenderLess|0 +CanBreed|1 +Devolution|540 +IsMale|50 +Ability1|102 +Ability2|34 +HiddenAbility|142 +EggMoves|97,403,226,293,382,170,13,103,318 +Machines|174,92,237,241,173,63,182,202,203,218,216,104,207,214,197,156,213,99,72,102,117,164,263,290,412,416,445,363,496,522,267,590,148 +BaseHP|55 +BaseAttack|63 +BaseDefense|90 +BaseSpAttack|50 +BaseSpDefense|80 +BaseSpeed|42 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Preferring dark, damp places, it spends the entire day eating fallen leaves that lie around it.\Leaf-Wrapped Pokémon\7.3\0.5\0,148,0 +Scale|0.7 +Move|1,320 +Move|1,33 +Move|1,81 +Move|1,450 +Move|1,75 +Move|20,182 +TradeValue|25 +EvolutionCondition|542,friendship,220,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/542.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/542.dat index 1834e2c5b..6bd97fd15 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/542.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/542.dat @@ -1 +1,54 @@ -{"Name":"Leavanny","Number":542,"ExperienceType":"MediumSlow","BaseExperience":221,"Type1":"Bug","Type2":"Grass","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":540,"Devolution":541,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[102,34],"HiddenAbility":142,"EggMoves":[97,403,226,293,382,170,13,103,318],"Machines":[174,92,237,241,173,63,182,202,203,218,76,216,104,207,214,197,156,213,211,210,36,66,69,99,72,102,115,117,164,347,331,113,219,332,263,290,412,206,421,371,416,445,363,398,447,468,496,522,267,590,148],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":103,"Def":80,"SpAtk":70,"SpDef":80,"Speed":92},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Upon finding a small Pokémon, it weaves clothing for it from leaves by using the sticky silk secreted from its mouth.","Species":"Nurturing Pokémon","Height":1.2,"Weight":20.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":40,"Moves":[{"Level":1,"ID":206},{"Level":2,"ID":33},{"Level":3,"ID":81},{"Level":4,"ID":450},{"Level":5,"ID":75},{"Level":8,"ID":450},{"Level":15,"ID":75},{"Level":22,"ID":522},{"Level":29,"ID":163},{"Level":32,"ID":1},{"Level":34,"ID":1},{"Level":36,"ID":348},{"Level":39,"ID":404},{"Level":43,"ID":1},{"Level":46,"ID":14},{"Level":50,"ID":437}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Leavanny +Number|542 +ExperienceType|2 +BaseExperience|221 +Type1|Bug +Type2|Grass +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|540 +IsGenderLess|0 +CanBreed|1 +Devolution|541 +IsMale|50 +Ability1|102 +Ability2|34 +HiddenAbility|142 +EggMoves|97,403,226,293,382,170,13,103,318 +Machines|174,92,237,241,173,63,182,202,203,218,76,216,104,207,214,197,156,213,211,210,36,66,69,99,72,102,115,117,164,347,331,113,219,332,263,290,412,206,421,371,416,445,363,398,447,468,496,522,267,590,148 +BaseHP|75 +BaseAttack|103 +BaseDefense|80 +BaseSpAttack|70 +BaseSpDefense|80 +BaseSpeed|92 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Upon finding a small Pokémon, it weaves clothing for it from leaves by using the sticky silk secreted from its mouth.\Nurturing Pokémon\20.5\1.2\0,148,0 +Scale|1.08 +Move|1,206 +Move|1,33 +Move|1,81 +Move|1,450 +Move|1,75 +Move|8,450 +Move|15,75 +Move|22,522 +Move|29,163 +Move|32,270 +Move|34,565 +Move|36,348 +Move|39,404 +Move|43,494 +Move|46,14 +Move|50,437 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/543.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/543.dat index 805ca0ada..a5c24be30 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/543.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/543.dat @@ -1 +1,55 @@ -{"Name":"Venipede","Number":543,"ExperienceType":"MediumSlow","BaseExperience":52,"Type1":"Bug","Type2":"Poison","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":543,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[38,68],"HiddenAbility":3,"EggMoves":[42,431,191,36,390,41],"Machines":[174,92,237,241,173,63,182,203,218,76,216,104,207,214,188,197,156,213,99,72,102,117,164,263,290,371,416,360,445,363,398,474,496,522,611,590],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":45,"Def":59,"SpAtk":30,"SpDef":39,"Speed":57},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Using the feelers on its head and tail, it picks up vibrations in the air to determine its prey's location and state.","Species":"Centipede Pokémon","Height":0.4,"Weight":5.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":111},{"Level":2,"ID":205},{"Level":5,"ID":40},{"Level":8,"ID":103},{"Level":12,"ID":228},{"Level":15,"ID":182},{"Level":19,"ID":342},{"Level":22,"ID":450},{"Level":26,"ID":474},{"Level":29,"ID":97},{"Level":33,"ID":537},{"Level":36,"ID":92},{"Level":38,"ID":474},{"Level":40,"ID":431},{"Level":43,"ID":38}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Level","Evolution":544,"Trigger":"LevelUp"}],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Venipede +Number|543 +ExperienceType|2 +BaseExperience|52 +Type1|Bug +Type2|Poison +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|543 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|38 +Ability2|68 +HiddenAbility|3 +EggMoves|42,431,191,36,390,41 +Machines|174,92,237,241,173,63,182,203,218,76,216,104,207,214,188,197,156,213,99,72,102,117,164,263,290,371,416,360,445,363,398,474,496,522,611,590 +BaseHP|30 +BaseAttack|45 +BaseDefense|59 +BaseSpAttack|30 +BaseSpDefense|39 +BaseSpeed|57 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Using the feelers on its head and tail, it picks up vibrations in the air to determine its prey's location and state.\Centipede Pokémon\5.3\0.4\0,148,0 +Scale|0.7 +Move|1,111 +Move|1,205 +Move|5,40 +Move|8,103 +Move|12,228 +Move|15,182 +Move|19,342 +Move|22,450 +Move|26,474 +Move|29,97 +Move|33,537 +Move|36,92 +Move|38,474 +Move|40,431 +Move|43,38 +TradeValue|15 +Item|5,81 +EvolutionCondition|544,level,22,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/544.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/544.dat index 1ce5cfea3..1177ff28c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/544.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/544.dat @@ -1 +1,58 @@ -{"Name":"Whirlipede","Number":544,"ExperienceType":"MediumSlow","BaseExperience":126,"Type1":"Bug","Type2":"Poison","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":543,"Devolution":543,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[38,68],"HiddenAbility":3,"EggMoves":[42,431,191,36,390,41],"Machines":[174,92,249,237,241,173,63,182,203,218,76,216,104,207,214,188,197,156,213,99,72,102,117,164,263,290,371,416,360,445,363,398,474,496,522,611,590],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":55,"Def":99,"SpAtk":40,"SpDef":79,"Speed":47},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Storing energy for evolution, it sits. But, when predators approach, it moves to stab them with poison spikes.","Species":"Curlipede Pokémon","Height":1.2,"Weight":58.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":35,"Moves":[{"Level":1,"ID":111},{"Level":2,"ID":205},{"Level":3,"ID":40},{"Level":4,"ID":103},{"Level":5,"ID":40},{"Level":8,"ID":103},{"Level":12,"ID":228},{"Level":15,"ID":182},{"Level":19,"ID":342},{"Level":22,"ID":334},{"Level":23,"ID":450},{"Level":28,"ID":474},{"Level":32,"ID":97},{"Level":37,"ID":537},{"Level":41,"ID":92},{"Level":43,"ID":1},{"Level":46,"ID":431},{"Level":50,"ID":38}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":545,"Trigger":"LevelUp"}],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Whirlipede +Number|544 +ExperienceType|2 +BaseExperience|126 +Type1|Bug +Type2|Poison +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|543 +IsGenderLess|0 +CanBreed|1 +Devolution|543 +IsMale|50 +Ability1|38 +Ability2|68 +HiddenAbility|3 +EggMoves|42,431,191,36,390,41 +Machines|174,92,249,237,241,173,63,182,203,218,76,216,104,207,214,188,197,156,213,99,72,102,117,164,263,290,371,416,360,445,363,398,474,496,522,611,590 +BaseHP|40 +BaseAttack|55 +BaseDefense|99 +BaseSpAttack|40 +BaseSpDefense|79 +BaseSpeed|47 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Storing energy for evolution, it sits. But, when predators approach, it moves to stab them with poison spikes.\Curlipede Pokémon\58.5\1.2\0,148,0 +Scale|1.08 +Move|1,111 +Move|1,205 +Move|1,40 +Move|1,103 +Move|5,40 +Move|8,103 +Move|12,228 +Move|15,182 +Move|19,342 +Move|22,334 +Move|23,450 +Move|28,474 +Move|32,97 +Move|37,537 +Move|41,92 +Move|43,599 +Move|46,431 +Move|50,38 +TradeValue|35 +Item|5,81 +EvolutionCondition|545,level,30,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/545.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/545.dat index fc5dee88e..40ea41379 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/545.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/545.dat @@ -1 +1,59 @@ -{"Name":"Scolipede","Number":545,"ExperienceType":"MediumSlow","BaseExperience":214,"Type1":"Bug","Type2":"Poison","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":543,"Devolution":544,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[38,68],"HiddenAbility":3,"EggMoves":[42,431,191,36,390,41],"Machines":[174,92,249,237,241,173,63,182,203,218,76,231,89,216,91,104,207,214,188,197,156,213,210,14,36,99,72,102,117,164,317,263,290,289,371,416,360,445,404,363,398,474,496,522,523,611,590,70,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":100,"Def":89,"SpAtk":55,"SpDef":69,"Speed":112},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":3},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It clasps its prey with the claws on its neck until it stops moving. Then it finishes it off with deadly poison.","Species":"Megapede Pokémon","Height":2.5,"Weight":200.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.6,"Y":1.6,"Z":1.6},"TradeValue":50,"Moves":[{"Level":1,"ID":224},{"Level":2,"ID":111},{"Level":3,"ID":205},{"Level":4,"ID":40},{"Level":5,"ID":103},{"Level":6,"ID":40},{"Level":8,"ID":103},{"Level":12,"ID":228},{"Level":15,"ID":182},{"Level":19,"ID":342},{"Level":23,"ID":450},{"Level":28,"ID":474},{"Level":30,"ID":226},{"Level":33,"ID":97},{"Level":39,"ID":537},{"Level":44,"ID":92},{"Level":47,"ID":1},{"Level":50,"ID":431},{"Level":55,"ID":38},{"Level":65,"ID":224}],"EvolutionConditions":[],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Scolipede +Number|545 +ExperienceType|2 +BaseExperience|214 +Type1|Bug +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|543 +IsGenderLess|0 +CanBreed|1 +Devolution|544 +IsMale|50 +Ability1|38 +Ability2|68 +HiddenAbility|3 +EggMoves|42,431,191,36,390,41 +Machines|174,92,249,237,241,173,63,182,203,218,76,231,89,216,91,104,207,214,188,197,156,213,210,14,36,99,72,102,117,164,317,263,290,289,371,416,360,445,404,363,398,474,496,522,523,611,590,70,560 +BaseHP|60 +BaseAttack|100 +BaseDefense|89 +BaseSpAttack|55 +BaseSpDefense|69 +BaseSpeed|112 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|0 +CanSwim|0 +Pokedex|It clasps its prey with the claws on its neck until it stops moving. Then it finishes it off with deadly poison.\Megapede Pokémon\200.5\2.5\0,148,0 +Scale|1.6 +Move|1,224 +Move|1,111 +Move|1,205 +Move|1,40 +Move|1,103 +Move|5,40 +Move|8,103 +Move|12,228 +Move|15,182 +Move|19,342 +Move|23,450 +Move|28,474 +Move|30,226 +Move|33,97 +Move|39,537 +Move|44,92 +Move|47,599 +Move|50,431 +Move|55,38 +Move|65,224 +TradeValue|50 +Item|5,81 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/546.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/546.dat index ce3f94f3a..60921214c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/546.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/546.dat @@ -1 +1,56 @@ -{"Name":"Cottonee","Number":546,"ExperienceType":"MediumFast","BaseExperience":56,"Type1":"Grass","Type2":"Fairy","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":546,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[158,151],"HiddenAbility":34,"EggMoves":[251,445,227,313,320,262,363,415,321,388],"Machines":[174,92,237,241,173,63,182,202,203,218,76,216,104,207,214,111,138,197,156,213,99,72,102,117,164,331,269,219,263,290,412,416,445,363,447,496,605,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":27,"Def":60,"SpAtk":37,"SpDef":50,"Speed":66},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Perhaps because they feel more at ease in a group, they stick to others they find. They end up looking like a cloud.","Species":"Cotton Puff Pokémon","Height":0.3,"Weight":0.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":71},{"Level":2,"ID":584},{"Level":4,"ID":74},{"Level":8,"ID":73},{"Level":10,"ID":78},{"Level":13,"ID":72},{"Level":17,"ID":178},{"Level":19,"ID":75},{"Level":22,"ID":77},{"Level":26,"ID":202},{"Level":28,"ID":204},{"Level":31,"ID":1},{"Level":35,"ID":412},{"Level":37,"ID":538},{"Level":40,"ID":241},{"Level":44,"ID":283},{"Level":46,"ID":76}],"EvolutionConditions":[{"Condition":"169","ConditionType":"Item","Evolution":547,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Cottonee +Number|546 +ExperienceType|1 +BaseExperience|56 +Type1|Grass +Type2|Fairy +CatchRate|190 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|546 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|158 +Ability2|151 +HiddenAbility|34 +EggMoves|251,445,227,313,320,262,363,415,321,388 +Machines|174,92,237,241,173,63,182,202,203,218,76,216,104,207,214,111,138,197,156,213,99,72,102,117,164,331,269,219,263,290,412,416,445,363,447,496,605,590,148 +BaseHP|40 +BaseAttack|27 +BaseDefense|60 +BaseSpAttack|37 +BaseSpDefense|50 +BaseSpeed|66 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Perhaps because they feel more at ease in a group, they stick to others they find. They end up looking like a cloud.\Cotton Puff Pokémon\0.6\0.3\0,148,0 +Scale|0.7 +Move|1,71 +Move|1,584 +Move|4,74 +Move|8,73 +Move|10,78 +Move|13,72 +Move|17,178 +Move|19,75 +Move|22,77 +Move|26,202 +Move|28,204 +Move|31,270 +Move|35,412 +Move|37,538 +Move|40,241 +Move|44,283 +Move|46,76 +TradeValue|20 +EvolutionCondition|547,item,169,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/547.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/547.dat index e16344877..b4071967d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/547.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/547.dat @@ -1 +1,46 @@ -{"Name":"Whimsicott","Number":547,"ExperienceType":"MediumFast","BaseExperience":168,"Type1":"Grass","Type2":"Fairy","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Grass","BaseEggSteps":5355,"EggPokemon":546,"Devolution":546,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[158,151],"HiddenAbility":34,"EggMoves":[251,445,227,313,320,262,363,415,321,388],"Machines":[174,92,237,241,173,63,182,202,203,218,76,216,94,247,104,207,214,111,138,197,156,213,168,34,36,99,72,102,117,164,331,269,113,219,263,290,412,374,416,445,363,447,369,433,496,605,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":67,"Def":85,"SpAtk":77,"SpDef":75,"Speed":116},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They appear along with whirlwinds. They pull pranks, such as moving furniture and leaving balls of cotton in homes.","Species":"Windveiled Pokémon","Height":0.7,"Weight":6.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":40,"Moves":[{"Level":1,"ID":74},{"Level":2,"ID":73},{"Level":3,"ID":72},{"Level":4,"ID":178},{"Level":10,"ID":16},{"Level":28,"ID":366},{"Level":46,"ID":542},{"Level":50,"ID":585}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Whimsicott +Number|547 +ExperienceType|1 +BaseExperience|168 +Type1|Grass +Type2|Fairy +CatchRate|75 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Grass +BaseEggSteps|5355 +EggPokemon|546 +IsGenderLess|0 +CanBreed|1 +Devolution|546 +IsMale|50 +Ability1|158 +Ability2|151 +HiddenAbility|34 +EggMoves|251,445,227,313,320,262,363,415,321,388 +Machines|174,92,237,241,173,63,182,202,203,218,76,216,94,247,104,207,214,111,138,197,156,213,168,34,36,99,72,102,117,164,331,269,113,219,263,290,412,374,416,445,363,447,369,433,496,605,590,148 +BaseHP|60 +BaseAttack|67 +BaseDefense|85 +BaseSpAttack|77 +BaseSpDefense|75 +BaseSpeed|116 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|They appear along with whirlwinds. They pull pranks, such as moving furniture and leaving balls of cotton in homes.\Windveiled Pokémon\6.6\0.7\0,148,0 +Scale|0.88 +Move|1,74 +Move|1,73 +Move|1,72 +Move|1,178 +Move|10,16 +Move|28,366 +Move|46,542 +Move|50,585 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/548.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/548.dat index 63776b686..77b8e200f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/548.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/548.dat @@ -1 +1,55 @@ -{"Name":"Petilil","Number":548,"ExperienceType":"MediumFast","BaseExperience":56,"Type1":"Grass","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":548,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[34,20],"HiddenAbility":102,"EggMoves":[117,204,203,320,361,275,363,230,388],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,197,156,213,36,99,72,102,117,164,331,263,290,412,416,445,363,496,267,590,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":35,"Def":50,"SpAtk":70,"SpDef":50,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The leaves on its head grow right back even if they fall out. These bitter leaves refresh those who eat them.","Species":"Bulb Pokémon","Height":0.5,"Weight":6.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":71},{"Level":4,"ID":74},{"Level":8,"ID":73},{"Level":10,"ID":79},{"Level":13,"ID":72},{"Level":17,"ID":235},{"Level":19,"ID":345},{"Level":22,"ID":78},{"Level":26,"ID":202},{"Level":28,"ID":312},{"Level":31,"ID":1},{"Level":35,"ID":412},{"Level":37,"ID":1},{"Level":40,"ID":241},{"Level":44,"ID":1},{"Level":46,"ID":437}],"EvolutionConditions":[{"Condition":"169","ConditionType":"Item","Evolution":549,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Petilil +Number|548 +ExperienceType|1 +BaseExperience|56 +Type1|Grass +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|548 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|0 +Ability1|34 +Ability2|20 +HiddenAbility|102 +EggMoves|117,204,203,320,361,275,363,230,388 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,197,156,213,36,99,72,102,117,164,331,263,290,412,416,445,363,496,267,590,148 +BaseHP|45 +BaseAttack|35 +BaseDefense|50 +BaseSpAttack|70 +BaseSpDefense|50 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The leaves on its head grow right back even if they fall out. These bitter leaves refresh those who eat them.\Bulb Pokémon\6.6\0.5\0,148,0 +Scale|0.7 +Move|1,71 +Move|4,74 +Move|8,73 +Move|10,79 +Move|13,72 +Move|17,235 +Move|19,345 +Move|22,78 +Move|26,202 +Move|28,312 +Move|31,270 +Move|35,412 +Move|37,494 +Move|40,241 +Move|44,495 +Move|46,437 +TradeValue|20 +EvolutionCondition|549,item,169,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/549.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/549.dat index 40af8261f..a813c5aa4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/549.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/549.dat @@ -1 +1,46 @@ -{"Name":"Lilligant","Number":549,"ExperienceType":"MediumFast","BaseExperience":168,"Type1":"Grass","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":549,"Devolution":548,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[34,20],"HiddenAbility":102,"EggMoves":[117,204,203,320,361,275,363,230,388],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,197,156,213,34,36,99,72,102,117,164,331,263,290,412,416,445,363,496,267,590,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":60,"Def":75,"SpAtk":110,"SpDef":75,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The fragrance of the garland on its head has a relaxing effect, but taking care of it is very difficult.","Species":"Flowering Pokémon","Height":1.1,"Weight":16.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":45,"Moves":[{"Level":1,"ID":74},{"Level":2,"ID":73},{"Level":3,"ID":72},{"Level":4,"ID":235},{"Level":10,"ID":298},{"Level":28,"ID":483},{"Level":46,"ID":80},{"Level":50,"ID":572}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Lilligant +Number|549 +ExperienceType|1 +BaseExperience|168 +Type1|Grass +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|549 +IsGenderLess|0 +CanBreed|1 +Devolution|548 +IsMale|0 +Ability1|34 +Ability2|20 +HiddenAbility|102 +EggMoves|117,204,203,320,361,275,363,230,388 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,197,156,213,34,36,99,72,102,117,164,331,263,290,412,416,445,363,496,267,590,148 +BaseHP|70 +BaseAttack|60 +BaseDefense|75 +BaseSpAttack|110 +BaseSpDefense|75 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The fragrance of the garland on its head has a relaxing effect, but taking care of it is very difficult.\Flowering Pokémon\16.3\1.1\0,148,0 +Scale|1.04 +Move|1,74 +Move|1,73 +Move|1,72 +Move|1,235 +Move|10,298 +Move|28,483 +Move|46,80 +Move|50,572 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/55.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/55.dat index 38bc353c3..42986aa03 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/55.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/55.dat @@ -1 +1,55 @@ -{"Name":"Golduck","Number":55,"ExperienceType":"MediumFast","BaseExperience":175,"Type1":"Water","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":54,"Devolution":54,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[6,13],"HiddenAbility":33,"EggMoves":[499,109,238,227,193,248,95,426,60,287,290,493,485,281,214,113,58,94],"Machines":[223,29,174,92,249,244,237,173,59,63,196,182,240,203,218,231,216,91,94,189,104,8,207,214,129,197,156,213,210,5,34,36,38,61,55,58,6,66,68,69,99,102,117,130,164,264,352,347,258,113,280,332,263,290,411,362,374,421,416,445,363,468,473,477,490,496,503,612,590,57,70,148,250,127,431,291],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":82,"Def":78,"SpAtk":95,"SpDef":80,"Speed":85},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it swims at full speed using its long, webbed limbs, its forehead somehow begins to glow.","Species":"Duck Pokémon","Height":1.7,"Weight":76.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":25,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":39},{"Level":3,"ID":55},{"Level":4,"ID":346},{"Level":5,"ID":453},{"Level":6,"ID":39},{"Level":8,"ID":55},{"Level":11,"ID":1},{"Level":15,"ID":93},{"Level":18,"ID":352},{"Level":22,"ID":154},{"Level":25,"ID":103},{"Level":29,"ID":428},{"Level":32,"ID":401},{"Level":36,"ID":1},{"Level":39,"ID":244},{"Level":43,"ID":133},{"Level":46,"ID":56},{"Level":50,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Golduck +Number|55 +ExperienceType|1 +BaseExperience|175 +Type1|Water +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|54 +IsGenderLess|0 +IsMale|50 +Ability1|6 +Ability2|13 +HiddenAbility|33 +EggMoves|499,109,238,227,193,248,95,426,60,287,290,493,485,281,214,113,58,94 +Machines|223,29,174,92,249,244,237,173,59,63,196,182,240,203,218,231,216,91,94,189,104,8,207,214,129,197,156,213,210,5,34,36,38,61,55,58,6,66,68,69,99,102,117,130,164,264,352,347,258,113,280,332,263,290,411,362,374,421,416,445,363,468,473,477,490,496,503,612,590,57,70,148,250,127,431,291 +BaseHP|80 +BaseAttack|82 +BaseDefense|78 +BaseSpAttack|95 +BaseSpDefense|80 +BaseSpeed|85 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it swims at full speed using its long, webbed limbs, its forehead somehow begins to glow.\Duck Pokémon\76.6\1.7\0,148,0 +Scale|1.28 +Move|1,10 +Move|1,39 +Move|1,55 +Move|1,346 +Move|1,453 +Move|4,39 +Move|8,55 +Move|11,50 +Move|15,93 +Move|18,352 +Move|22,154 +Move|25,103 +Move|29,428 +Move|32,401 +Move|36,487 +Move|39,244 +Move|43,133 +Move|46,56 +Move|50,472 +TradeValue|25 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/550.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/550.dat index f0086d872..3d7fa89c9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/550.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/550.dat @@ -1 +1,58 @@ -{"Name":"Basculin","Number":550,"ExperienceType":"MediumFast","BaseExperience":161,"Type1":"Water","Type2":"Blank","CatchRate":25,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":550,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[120,91],"HiddenAbility":104,"EggMoves":[97,362,61,330,341,99,279,129],"Machines":[29,174,92,237,173,63,196,182,240,203,218,216,104,207,214,197,156,213,36,61,55,58,99,102,117,130,164,352,258,269,263,290,362,416,445,363,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":92,"Def":65,"SpAtk":80,"SpDef":55,"Speed":98},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Red- and blue-striped Basculin are very violent and always fighting. They are also remarkably tasty.","Species":"Hostile Pokémon","Height":1,"Weight":18,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":35,"Moves":[{"Level":1,"ID":37},{"Level":2,"ID":175},{"Level":3,"ID":39},{"Level":4,"ID":33},{"Level":5,"ID":55},{"Level":6,"ID":253},{"Level":7,"ID":29},{"Level":10,"ID":44},{"Level":13,"ID":453},{"Level":16,"ID":498},{"Level":20,"ID":36},{"Level":24,"ID":242},{"Level":28,"ID":401},{"Level":32,"ID":1},{"Level":36,"ID":38},{"Level":41,"ID":184},{"Level":46,"ID":175},{"Level":50,"ID":1},{"Level":56,"ID":37}],"EvolutionConditions":[],"Items":[{"Id":167,"Chance":5}]} \ No newline at end of file +Name|Basculin +Number|550 +ExperienceType|1 +BaseExperience|161 +Type1|Water +Type2| +CatchRate|25 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|550 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|120 +Ability2|91 +HiddenAbility|104 +EggMoves|97,362,61,330,341,99,279,129 +Machines|29,174,92,237,173,63,196,182,240,203,218,216,104,207,214,197,156,213,36,61,55,58,99,102,117,130,164,352,258,269,263,290,362,416,445,363,496,503,590,57,250,127,291 +BaseHP|70 +BaseAttack|92 +BaseDefense|65 +BaseSpAttack|80 +BaseSpDefense|55 +BaseSpeed|98 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Red- and blue-striped Basculin are very violent and always fighting. They are also remarkably tasty.\Hostile Pokémon\18\1\0,148,0 +Scale|1 +Move|1,37 +Move|1,175 +Move|1,39 +Move|1,33 +Move|1,55 +Move|4,253 +Move|7,29 +Move|10,44 +Move|13,453 +Move|16,498 +Move|20,36 +Move|24,242 +Move|28,401 +Move|32,487 +Move|36,38 +Move|41,184 +Move|46,175 +Move|50,515 +Move|56,37 +TradeValue|35 +Item|5,167 \ No newline at end of file diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/550_blue.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/550_blue.dat index 90aa0c441..f854f79de 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/550_blue.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/550_blue.dat @@ -1 +1,58 @@ -{"Name":"Basculin","Number":550,"ExperienceType":"MediumFast","BaseExperience":161,"Type1":"Water","Type2":"Blank","CatchRate":25,"BaseFriendship":70,"EggGroup1":"Water2","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":550,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[120,91],"HiddenAbility":104,"EggMoves":[97,362,61,330,341,99,279,129],"Machines":[29,174,92,237,173,63,196,182,240,203,218,216,104,207,214,197,156,213,36,61,55,58,99,102,117,130,164,352,258,269,263,290,362,416,445,363,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":92,"Def":65,"SpAtk":80,"SpDef":55,"Speed":98},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Red- and blue-striped Basculin are very violent and always fighting. They are also remarkably tasty.","Species":"Hostile Pokémon","Height":1,"Weight":18,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":35,"Moves":[{"Level":1,"ID":37},{"Level":2,"ID":175},{"Level":3,"ID":39},{"Level":4,"ID":33},{"Level":5,"ID":55},{"Level":6,"ID":253},{"Level":7,"ID":29},{"Level":10,"ID":44},{"Level":13,"ID":453},{"Level":16,"ID":498},{"Level":20,"ID":36},{"Level":24,"ID":242},{"Level":28,"ID":401},{"Level":32,"ID":1},{"Level":36,"ID":38},{"Level":41,"ID":184},{"Level":46,"ID":175},{"Level":50,"ID":1},{"Level":56,"ID":37}],"EvolutionConditions":[],"Items":[{"Id":162,"Chance":5}]} \ No newline at end of file +Name|Basculin +Number|550 +ExperienceType|1 +BaseExperience|161 +Type1|Water +Type2| +CatchRate|25 +BaseFriendship|70 +EggGroup1|Water2 +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|550 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|120 +Ability2|91 +HiddenAbility|104 +EggMoves|97,362,61,330,341,99,279,129 +Machines|29,174,92,237,173,63,196,182,240,203,218,216,104,207,214,197,156,213,36,61,55,58,99,102,117,130,164,352,258,269,263,290,362,416,445,363,496,503,590,57,250,127,291 +BaseHP|70 +BaseAttack|92 +BaseDefense|65 +BaseSpAttack|80 +BaseSpDefense|55 +BaseSpeed|98 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Red- and blue-striped Basculin are very violent and always fighting. They are also remarkably tasty.\Hostile Pokémon\18\1\0,148,0 +Scale|1 +Move|1,37 +Move|1,175 +Move|1,39 +Move|1,33 +Move|1,55 +Move|4,253 +Move|7,29 +Move|10,44 +Move|13,453 +Move|16,498 +Move|20,36 +Move|24,242 +Move|28,401 +Move|32,487 +Move|36,38 +Move|41,184 +Move|46,175 +Move|50,515 +Move|56,37 +TradeValue|35 +Item|5,162 \ No newline at end of file diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/551.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/551.dat index 6ec345a76..32dfcdd54 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/551.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/551.dat @@ -1 +1,55 @@ -{"Name":"Sandile","Number":551,"ExperienceType":"MediumSlow","BaseExperience":58,"Type1":"Ground","Type2":"Dark","CatchRate":180,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":551,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22,153],"HiddenAbility":83,"EggMoves":[251,68,38,424,116,212,228,431,422,253],"Machines":[174,205,46,92,237,173,63,182,203,218,231,89,216,91,189,104,207,214,188,201,111,197,156,213,168,210,36,99,102,117,157,164,269,317,259,263,290,289,373,421,371,416,444,446,445,399,363,468,496,510,514,523,555,590,15],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":72,"Def":35,"SpAtk":35,"SpDef":35,"Speed":65},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They live hidden under hot desert sands in order to keep their body temperature from dropping.","Species":"Desert Croc Pokémon","Height":0.7,"Weight":15.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":25,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":99},{"Level":4,"ID":44},{"Level":10,"ID":259},{"Level":13,"ID":328},{"Level":16,"ID":372},{"Level":19,"ID":189},{"Level":22,"ID":373},{"Level":25,"ID":207},{"Level":28,"ID":242},{"Level":31,"ID":91},{"Level":34,"ID":184},{"Level":37,"ID":1},{"Level":40,"ID":201},{"Level":43,"ID":89},{"Level":46,"ID":37}],"EvolutionConditions":[{"Condition":"29","ConditionType":"Level","Evolution":552,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Sandile +Number|551 +ExperienceType|2 +BaseExperience|58 +Type1|Ground +Type2|Dark +CatchRate|180 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|551 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|22 +Ability2|153 +HiddenAbility|83 +EggMoves|251,68,38,424,116,212,228,431,422,253 +Machines|174,205,46,92,237,173,63,182,203,218,231,89,216,91,189,104,207,214,188,201,111,197,156,213,168,210,36,99,102,117,157,164,269,317,259,263,290,289,373,421,371,416,444,446,445,399,363,468,496,510,514,523,555,590,15 +BaseHP|50 +BaseAttack|72 +BaseDefense|35 +BaseSpAttack|35 +BaseSpDefense|35 +BaseSpeed|65 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They live hidden under hot desert sands in order to keep their body temperature from dropping.\Desert Croc Pokémon\15.2\0.7\0,148,0 +Scale|0.88 +Move|1,43 +Move|1,99 +Move|4,44 +Move|10,259 +Move|13,328 +Move|16,372 +Move|19,189 +Move|22,373 +Move|25,207 +Move|28,242 +Move|31,91 +Move|34,184 +Move|37,492 +Move|40,201 +Move|43,89 +Move|46,37 +TradeValue|25 +EvolutionCondition|552,level,29,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/552.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/552.dat index caecfdb7f..07a40b6a0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/552.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/552.dat @@ -1 +1,56 @@ -{"Name":"Krokorok","Number":552,"ExperienceType":"MediumSlow","BaseExperience":123,"Type1":"Ground","Type2":"Dark","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":551,"Devolution":551,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22,153],"HiddenAbility":83,"EggMoves":[251,68,38,424,116,212,228,431,422,253],"Machines":[174,205,46,92,249,237,173,63,182,203,218,231,89,216,91,189,104,207,214,188,201,111,197,156,213,168,210,5,25,34,36,38,66,68,69,99,102,117,130,157,164,264,269,280,317,259,263,290,289,374,373,421,371,416,444,446,445,399,363,447,468,490,496,510,514,523,555,612,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":82,"Def":45,"SpAtk":45,"SpDef":45,"Speed":74},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Protected by thin membranes, their eyes can see even in the dead of night. They live in groups of a few individuals.","Species":"Desert Croc Pokémon","Height":1,"Weight":33.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":45,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":99},{"Level":3,"ID":44},{"Level":4,"ID":44},{"Level":10,"ID":259},{"Level":13,"ID":328},{"Level":16,"ID":372},{"Level":19,"ID":189},{"Level":22,"ID":373},{"Level":25,"ID":207},{"Level":28,"ID":242},{"Level":32,"ID":91},{"Level":36,"ID":184},{"Level":40,"ID":1},{"Level":44,"ID":201},{"Level":48,"ID":89},{"Level":52,"ID":37}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":553,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Krokorok +Number|552 +ExperienceType|2 +BaseExperience|123 +Type1|Ground +Type2|Dark +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|551 +IsGenderLess|0 +CanBreed|1 +Devolution|551 +IsMale|50 +Ability1|22 +Ability2|153 +HiddenAbility|83 +EggMoves|251,68,38,424,116,212,228,431,422,253 +Machines|174,205,46,92,249,237,173,63,182,203,218,231,89,216,91,189,104,207,214,188,201,111,197,156,213,168,210,5,25,34,36,38,66,68,69,99,102,117,130,157,164,264,269,280,317,259,263,290,289,374,373,421,371,416,444,446,445,399,363,447,468,490,496,510,514,523,555,612,590,15,70,431 +BaseHP|60 +BaseAttack|82 +BaseDefense|45 +BaseSpAttack|45 +BaseSpDefense|45 +BaseSpeed|74 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Protected by thin membranes, their eyes can see even in the dead of night. They live in groups of a few individuals.\Desert Croc Pokémon\33.4\1\0,148,0 +Scale|1 +Move|1,43 +Move|1,99 +Move|1,44 +Move|4,44 +Move|10,259 +Move|13,328 +Move|16,372 +Move|19,189 +Move|22,373 +Move|25,207 +Move|28,242 +Move|32,91 +Move|36,184 +Move|40,492 +Move|44,201 +Move|48,89 +Move|52,37 +TradeValue|45 +EvolutionCondition|553,level,40,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/553.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/553.dat index aeac9afc1..00b89d8f3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/553.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/553.dat @@ -1 +1,58 @@ -{"Name":"Krookodile","Number":553,"ExperienceType":"MediumSlow","BaseExperience":229,"Type1":"Ground","Type2":"Dark","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":551,"Devolution":552,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[22,153],"HiddenAbility":83,"EggMoves":[251,68,38,424,116,212,228,431,422,253],"Machines":[223,174,205,46,92,249,237,173,63,182,203,218,231,225,89,216,91,189,104,207,214,188,201,111,197,156,213,168,210,5,25,34,36,38,66,68,69,99,82,90,102,117,130,157,164,264,337,339,269,280,317,332,259,263,290,289,411,374,406,373,421,371,416,444,446,445,399,363,447,468,479,490,496,510,514,523,525,555,612,590,15,70,431],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":117,"Def":80,"SpAtk":65,"SpDef":70,"Speed":92},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Very violent Pokémon, they try to clamp down on anything that moves in front of their eyes.","Species":"Intimidation Pokémon","Height":1.5,"Weight":96.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":70,"Moves":[{"Level":1,"ID":200},{"Level":2,"ID":43},{"Level":3,"ID":99},{"Level":4,"ID":44},{"Level":5,"ID":28},{"Level":6,"ID":44},{"Level":7,"ID":28},{"Level":10,"ID":259},{"Level":13,"ID":328},{"Level":16,"ID":372},{"Level":19,"ID":189},{"Level":22,"ID":373},{"Level":25,"ID":207},{"Level":28,"ID":242},{"Level":32,"ID":91},{"Level":36,"ID":184},{"Level":42,"ID":1},{"Level":48,"ID":201},{"Level":54,"ID":89},{"Level":60,"ID":200}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Krookodile +Number|553 +ExperienceType|2 +BaseExperience|229 +Type1|Ground +Type2|Dark +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|551 +IsGenderLess|0 +CanBreed|1 +Devolution|552 +IsMale|50 +Ability1|22 +Ability2|153 +HiddenAbility|83 +EggMoves|251,68,38,424,116,212,228,431,422,253 +Machines|223,174,205,46,92,249,237,173,63,182,203,218,231,225,89,216,91,189,104,207,214,188,201,111,197,156,213,168,210,5,25,34,36,38,66,68,69,99,82,90,102,117,130,157,164,264,337,339,269,280,317,332,259,263,290,289,411,374,406,373,421,371,416,444,446,445,399,363,447,468,479,490,496,510,514,523,525,555,612,590,15,70,431 +BaseHP|95 +BaseAttack|117 +BaseDefense|80 +BaseSpAttack|65 +BaseSpDefense|70 +BaseSpeed|92 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Very violent Pokémon, they try to clamp down on anything that moves in front of their eyes.\Intimidation Pokémon\96.3\1.5\0,148,0 +Scale|1.2 +Move|1,200 +Move|1,43 +Move|1,99 +Move|1,44 +Move|1,28 +Move|4,44 +Move|7,28 +Move|10,259 +Move|13,328 +Move|16,372 +Move|19,189 +Move|22,373 +Move|25,207 +Move|28,242 +Move|32,91 +Move|36,184 +Move|42,492 +Move|48,201 +Move|54,89 +Move|60,200 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/554.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/554.dat index 5ae1b4123..f3ab87701 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/554.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/554.dat @@ -1 +1,56 @@ -{"Name":"Darumaka","Number":554,"ExperienceType":"MediumSlow","BaseExperience":63,"Type1":"Fire","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":554,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[55],"HiddenAbility":39,"EggMoves":[227,203,172,116,264,359,214,289,36,281],"Machines":[29,174,205,46,92,249,237,241,173,63,182,203,218,76,216,91,189,104,207,214,126,111,197,156,213,168,7,34,36,99,102,117,120,157,164,269,280,53,317,263,290,315,374,261,416,360,445,363,447,369,488,496,510,526,612,590,70],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":90,"Def":45,"SpAtk":15,"SpDef":45,"Speed":50},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it sleeps, it pulls its limbs into its body and its internal fire goes down to 1,100 F.","Species":"Zen Charm Pokémon","Height":0.6,"Weight":37.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":33},{"Level":3,"ID":205},{"Level":6,"ID":1},{"Level":9,"ID":99},{"Level":11,"ID":424},{"Level":14,"ID":29},{"Level":17,"ID":253},{"Level":19,"ID":263},{"Level":22,"ID":7},{"Level":25,"ID":526},{"Level":27,"ID":37},{"Level":30,"ID":187},{"Level":33,"ID":394},{"Level":35,"ID":269},{"Level":39,"ID":276},{"Level":42,"ID":315}],"EvolutionConditions":[{"Condition":"35","ConditionType":"Level","Evolution":555,"Trigger":"LevelUp"}],"Items":[{"Id":2003,"Chance":50}]} \ No newline at end of file +Name|Darumaka +Number|554 +ExperienceType|2 +BaseExperience|63 +Type1|Fire +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|554 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|55 +Ability2|Nothing +HiddenAbility|39 +EggMoves|227,203,172,116,264,359,214,289,36,281 +Machines|29,174,205,46,92,249,237,241,173,63,182,203,218,76,216,91,189,104,207,214,126,111,197,156,213,168,7,34,36,99,102,117,120,157,164,269,280,53,317,263,290,315,374,261,416,360,445,363,447,369,488,496,510,526,612,590,70 +BaseHP|70 +BaseAttack|90 +BaseDefense|45 +BaseSpAttack|15 +BaseSpDefense|45 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it sleeps, it pulls its limbs into its body and its internal fire goes down to 1,100 F.\Zen Charm Pokémon\37.5\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|3,205 +Move|6,510 +Move|9,99 +Move|11,424 +Move|14,29 +Move|17,253 +Move|19,263 +Move|22,7 +Move|25,526 +Move|27,37 +Move|30,187 +Move|33,394 +Move|35,269 +Move|39,276 +Move|42,315 +TradeValue|25 +Item|50,2003 +EvolutionCondition|555,level,35,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/555.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/555.dat index 0fb8eedf6..d8371acba 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/555.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/555.dat @@ -1 +1,59 @@ -{"Name":"Darmanitan","Number":555,"ExperienceType":"MediumSlow","BaseExperience":168,"Type1":"Fire","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":554,"Devolution":554,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[125],"HiddenAbility":161,"EggMoves":[227,203,172,116,264,359,214,289,36,281],"Machines":[223,29,174,205,46,92,249,237,241,173,63,182,203,218,76,216,91,189,104,207,214,126,111,197,156,213,168,7,5,25,34,36,38,66,68,69,99,82,102,117,120,130,149,157,164,264,339,269,280,53,317,263,290,315,411,374,261,416,360,445,363,447,369,479,488,496,510,526,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":105,"Atk":140,"Def":55,"SpAtk":30,"SpDef":55,"Speed":95},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When one is injured in a fierce battle, it hardens into a stone-like form. Then it meditates and sharpens its mind.","Species":"Blazing Pokémon","Height":1.3,"Weight":92.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":205},{"Level":3,"ID":1},{"Level":4,"ID":99},{"Level":5,"ID":205},{"Level":6,"ID":1},{"Level":9,"ID":99},{"Level":11,"ID":424},{"Level":14,"ID":29},{"Level":17,"ID":207},{"Level":19,"ID":263},{"Level":22,"ID":7},{"Level":25,"ID":526},{"Level":27,"ID":37},{"Level":30,"ID":187},{"Level":33,"ID":394},{"Level":35,"ID":359},{"Level":39,"ID":269},{"Level":47,"ID":276},{"Level":54,"ID":315}],"EvolutionConditions":[],"Items":[{"Id":2003,"Chance":50}]} \ No newline at end of file +Name|Darmanitan +Number|555 +ExperienceType|2 +BaseExperience|168 +Type1|Fire +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|554 +IsGenderLess|0 +CanBreed|1 +Devolution|554 +IsMale|50 +Ability1|125 +Ability2|Nothing +HiddenAbility|161 +EggMoves|227,203,172,116,264,359,214,289,36,281 +Machines|223,29,174,205,46,92,249,237,241,173,63,182,203,218,76,216,91,189,104,207,214,126,111,197,156,213,168,7,5,25,34,36,38,66,68,69,99,82,102,117,120,130,149,157,164,264,339,269,280,53,317,263,290,315,411,374,261,416,360,445,363,447,369,479,488,496,510,526,612,590,70,431 +BaseHP|105 +BaseAttack|140 +BaseDefense|55 +BaseSpAttack|30 +BaseSpDefense|55 +BaseSpeed|95 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When one is injured in a fierce battle, it hardens into a stone-like form. Then it meditates and sharpens its mind.\Blazing Pokémon\92.9\1.3\0,148,0 +Scale|1.12 +Move|1,33 +Move|1,205 +Move|1,510 +Move|1,99 +Move|3,205 +Move|6,510 +Move|9,99 +Move|11,424 +Move|14,29 +Move|17,207 +Move|19,263 +Move|22,7 +Move|25,526 +Move|27,37 +Move|30,187 +Move|33,394 +Move|35,359 +Move|39,269 +Move|47,276 +Move|54,315 +TradeValue|50 +Item|50,2003 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/555_zen.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/555_zen.dat index 0ca915858..70b59188a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/555_zen.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/555_zen.dat @@ -1 +1,59 @@ -{"Name":"Darmanitan","Number":555,"ExperienceType":"MediumSlow","BaseExperience":168,"Type1":"Fire","Type2":"Psychic","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":554,"Devolution":554,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[125],"HiddenAbility":161,"EggMoves":[227,203,172,116,264,359,214,289,36,281],"Machines":[223,29,174,205,46,92,249,237,241,173,63,182,203,218,76,216,91,189,104,207,214,126,111,197,156,213,168,7,5,25,34,36,38,66,68,69,99,82,102,117,120,130,149,157,164,264,339,269,280,53,317,263,290,315,411,374,261,416,360,445,363,447,369,479,488,496,510,526,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":105,"Atk":30,"Def":105,"SpAtk":140,"SpDef":105,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When one is injured in a fierce battle, it hardens into a stone-like form. Then it meditates and sharpens its mind.","Species":"Blazing Pokémon","Height":1.3,"Weight":92.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":205},{"Level":3,"ID":1},{"Level":4,"ID":99},{"Level":5,"ID":205},{"Level":6,"ID":1},{"Level":9,"ID":99},{"Level":11,"ID":424},{"Level":14,"ID":29},{"Level":17,"ID":207},{"Level":19,"ID":263},{"Level":22,"ID":7},{"Level":25,"ID":526},{"Level":27,"ID":37},{"Level":30,"ID":187},{"Level":33,"ID":394},{"Level":35,"ID":359},{"Level":39,"ID":269},{"Level":47,"ID":276},{"Level":54,"ID":315}],"EvolutionConditions":[],"Items":[{"Id":2003,"Chance":50}]} \ No newline at end of file +Name|Darmanitan +Number|555 +ExperienceType|2 +BaseExperience|168 +Type1|Fire +Type2|Psychic +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|554 +IsGenderLess|0 +CanBreed|1 +Devolution|554 +IsMale|50 +Ability1|125 +Ability2|Nothing +HiddenAbility|161 +EggMoves|227,203,172,116,264,359,214,289,36,281 +Machines|223,29,174,205,46,92,249,237,241,173,63,182,203,218,76,216,91,189,104,207,214,126,111,197,156,213,168,7,5,25,34,36,38,66,68,69,99,82,102,117,120,130,149,157,164,264,339,269,280,53,317,263,290,315,411,374,261,416,360,445,363,447,369,479,488,496,510,526,612,590,70,431 +BaseHP|105 +BaseAttack|30 +BaseDefense|105 +BaseSpAttack|140 +BaseSpDefense|105 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When one is injured in a fierce battle, it hardens into a stone-like form. Then it meditates and sharpens its mind.\Blazing Pokémon\92.9\1.3\0,148,0 +Scale|1.12 +Move|1,33 +Move|1,205 +Move|1,510 +Move|1,99 +Move|3,205 +Move|6,510 +Move|9,99 +Move|11,424 +Move|14,29 +Move|17,207 +Move|19,263 +Move|22,7 +Move|25,526 +Move|27,37 +Move|30,187 +Move|33,394 +Move|35,359 +Move|39,269 +Move|47,276 +Move|54,315 +TradeValue|50 +Item|50,2003 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/556.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/556.dat index 027704971..28d7d7c32 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/556.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/556.dat @@ -1 +1,60 @@ -{"Name":"Maractus","Number":556,"ExperienceType":"MediumFast","BaseExperience":161,"Type1":"Grass","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":556,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[11,34],"HiddenAbility":114,"EggMoves":[340,331,320,580,73,402,191,452,388],"Machines":[174,92,237,241,173,63,182,202,203,218,76,216,104,207,214,197,156,213,210,34,36,99,72,102,117,164,263,290,412,409,416,445,363,496,267,590],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":86,"Def":67,"SpAtk":106,"SpDef":67,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it moves rhythmically, it makes a sound similar to maracas, making the surprised Pokémon flee.","Species":"Cactus Pokémon","Height":1,"Weight":28,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":35,"Moves":[{"Level":1,"ID":538},{"Level":2,"ID":1},{"Level":3,"ID":64},{"Level":4,"ID":71},{"Level":5,"ID":230},{"Level":6,"ID":74},{"Level":10,"ID":42},{"Level":13,"ID":72},{"Level":15,"ID":235},{"Level":18,"ID":178},{"Level":22,"ID":302},{"Level":26,"ID":202},{"Level":29,"ID":367},{"Level":33,"ID":275},{"Level":38,"ID":80},{"Level":42,"ID":389},{"Level":45,"ID":241},{"Level":48,"ID":572},{"Level":50,"ID":76},{"Level":55,"ID":538},{"Level":57,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":117,"Chance":5}]} \ No newline at end of file +Name|Maractus +Number|556 +ExperienceType|1 +BaseExperience|161 +Type1|Grass +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|556 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|11 +Ability2|34 +HiddenAbility|114 +EggMoves|340,331,320,580,73,402,191,452,388 +Machines|174,92,237,241,173,63,182,202,203,218,76,216,104,207,214,197,156,213,210,34,36,99,72,102,117,164,263,290,412,409,416,445,363,496,267,590 +BaseHP|75 +BaseAttack|86 +BaseDefense|67 +BaseSpAttack|106 +BaseSpDefense|67 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it moves rhythmically, it makes a sound similar to maracas, making the surprised Pokémon flee.\Cactus Pokémon\28\1\0,148,0 +Scale|1 +Move|1,538 +Move|1,495 +Move|1,64 +Move|1,71 +Move|3,230 +Move|6,74 +Move|10,42 +Move|13,72 +Move|15,235 +Move|18,178 +Move|22,302 +Move|26,202 +Move|29,367 +Move|33,275 +Move|38,80 +Move|42,389 +Move|45,241 +Move|48,572 +Move|50,76 +Move|55,538 +Move|57,495 +TradeValue|35 +Item|5,117 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/557.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/557.dat index 35209c014..e87fe6b7d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/557.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/557.dat @@ -1 +1,54 @@ -{"Name":"Dwebble","Number":557,"ExperienceType":"MediumFast","BaseExperience":65,"Type1":"Bug","Type2":"Rock","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"Mineral","BaseEggSteps":5355,"EggPokemon":557,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5,75],"HiddenAbility":133,"EggMoves":[335,68,174,203,334,400,563,328,191,469],"Machines":[174,205,92,249,237,173,63,182,203,218,76,89,216,104,207,214,201,111,197,156,213,210,14,34,99,102,117,120,157,164,317,332,263,290,421,416,397,444,446,445,363,398,468,479,496,522,523,267,590,15,70],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":65,"Def":85,"SpAtk":35,"SpDef":35,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it finds a stone of a suitable size, it secretes a liquid from its mouth to open up a hole to crawl into.","Species":"Rock Inn Pokémon","Height":0.3,"Weight":14.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":210},{"Level":5,"ID":350},{"Level":7,"ID":110},{"Level":13,"ID":185},{"Level":17,"ID":479},{"Level":19,"ID":397},{"Level":23,"ID":450},{"Level":24,"ID":446},{"Level":29,"ID":157},{"Level":31,"ID":163},{"Level":35,"ID":404},{"Level":37,"ID":504},{"Level":41,"ID":175},{"Level":43,"ID":439}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Level","Evolution":558,"Trigger":"LevelUp"}],"Items":[{"Id":125,"Chance":5}]} \ No newline at end of file +Name|Dwebble +Number|557 +ExperienceType|1 +BaseExperience|65 +Type1|Bug +Type2|Rock +CatchRate|190 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|Mineral +BaseEggSteps|5355 +EggPokemon|557 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|5 +Ability2|75 +HiddenAbility|133 +EggMoves|335,68,174,203,334,400,563,328,191,469 +Machines|174,205,92,249,237,173,63,182,203,218,76,89,216,104,207,214,201,111,197,156,213,210,14,34,99,102,117,120,157,164,317,332,263,290,421,416,397,444,446,445,363,398,468,479,496,522,523,267,590,15,70 +BaseHP|50 +BaseAttack|65 +BaseDefense|85 +BaseSpAttack|35 +BaseSpDefense|35 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it finds a stone of a suitable size, it secretes a liquid from its mouth to open up a hole to crawl into.\Rock Inn Pokémon\14.5\0.3\0,148,0 +Scale|0.7 +Move|1,210 +Move|5,350 +Move|7,110 +Move|13,185 +Move|17,479 +Move|19,397 +Move|23,450 +Move|24,446 +Move|29,157 +Move|31,163 +Move|35,404 +Move|37,504 +Move|41,175 +Move|43,439 +TradeValue|25 +Item|5,125 +EvolutionCondition|558,Level,34,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/558.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/558.dat index 5a64efe1e..f7dea8a8b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/558.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/558.dat @@ -1 +1,54 @@ -{"Name":"Crustle","Number":558,"ExperienceType":"MediumFast","BaseExperience":166,"Type1":"Bug","Type2":"Rock","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"Mineral","BaseEggSteps":5355,"EggPokemon":557,"Devolution":557,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[5,75],"HiddenAbility":133,"EggMoves":[335,68,174,203,334,400,563,328,191,469],"Machines":[174,205,92,249,237,173,63,182,203,218,76,89,216,104,207,214,201,111,197,156,213,210,14,25,34,36,38,99,90,102,117,120,157,164,317,332,263,290,421,416,397,444,446,445,404,363,398,468,479,496,522,523,267,590,15,70,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":95,"Def":125,"SpAtk":65,"SpDef":75,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When its boulder is broken in battles for territory, it feels unsure and begins to weaken.","Species":"Stone Home Pokémon","Height":1.4,"Weight":200,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":45,"Moves":[{"Level":1,"ID":504},{"Level":2,"ID":350},{"Level":3,"ID":110},{"Level":5,"ID":350},{"Level":7,"ID":110},{"Level":13,"ID":185},{"Level":17,"ID":479},{"Level":19,"ID":397},{"Level":23,"ID":450},{"Level":24,"ID":446},{"Level":29,"ID":157},{"Level":31,"ID":163},{"Level":38,"ID":404},{"Level":43,"ID":504},{"Level":50,"ID":175},{"Level":55,"ID":439}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Crustle +Number|558 +ExperienceType|1 +BaseExperience|166 +Type1|Bug +Type2|Rock +CatchRate|75 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|Mineral +BaseEggSteps|5355 +EggPokemon|557 +IsGenderLess|0 +CanBreed|1 +Devolution|557 +IsMale|50 +Ability1|5 +Ability2|75 +HiddenAbility|133 +EggMoves|335,68,174,203,334,400,563,328,191,469 +Machines|174,205,92,249,237,173,63,182,203,218,76,89,216,104,207,214,201,111,197,156,213,210,14,25,34,36,38,99,90,102,117,120,157,164,317,332,263,290,421,416,397,444,446,445,404,363,398,468,479,496,522,523,267,590,15,70,560 +BaseHP|70 +BaseAttack|95 +BaseDefense|125 +BaseSpAttack|65 +BaseSpDefense|75 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When its boulder is broken in battles for territory, it feels unsure and begins to weaken.\Stone Home Pokémon\200\1.4\0,148,0 +Scale|1.16 +Move|1,504 +Move|1,350 +Move|1,110 +Move|5,350 +Move|7,110 +Move|13,185 +Move|17,479 +Move|19,397 +Move|23,450 +Move|24,446 +Move|29,157 +Move|31,163 +Move|38,404 +Move|43,504 +Move|50,175 +Move|55,439 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/559.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/559.dat index b5060f872..8327f35b0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/559.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/559.dat @@ -1 +1,54 @@ -{"Name":"Scraggy","Number":559,"ExperienceType":"MediumFast","BaseExperience":70,"Type1":"Dark","Type2":"Fighting","CatchRate":180,"BaseFriendship":35,"EggGroup1":"Field","EggGroup2":"Dragon","BaseEggSteps":4080,"EggPokemon":559,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61,153],"HiddenAbility":22,"EggMoves":[133,68,197,349,409,252,185,7,8,501,9,428],"Machines":[29,174,205,46,92,249,237,241,173,63,182,240,203,218,231,216,91,189,104,8,207,214,188,111,9,197,156,213,7,5,25,34,36,6,66,68,69,99,102,117,118,130,157,164,264,337,339,269,280,317,259,263,290,289,411,374,406,409,371,416,445,399,404,363,398,447,479,490,496,510,514,525,526,555,612,590,70],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":75,"Def":70,"SpAtk":35,"SpDef":70,"Speed":48},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Proud of its sturdy skull, it suddenly headbutts everything, but its weight makes it unstable, too.","Species":"Shedding Pokémon","Height":0.6,"Weight":11.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":30,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":67},{"Level":9,"ID":185},{"Level":12,"ID":29},{"Level":16,"ID":207},{"Level":20,"ID":280},{"Level":23,"ID":371},{"Level":27,"ID":498},{"Level":34,"ID":184},{"Level":38,"ID":242},{"Level":42,"ID":263},{"Level":45,"ID":431},{"Level":49,"ID":264},{"Level":50,"ID":457}],"EvolutionConditions":[{"Condition":"39","ConditionType":"Level","Evolution":560,"Trigger":"LevelUp"}],"Items":[{"Id":154,"Chance":5}]} \ No newline at end of file +Name|Scraggy +Number|559 +ExperienceType|1 +BaseExperience|70 +Type1|Dark +Type2|Fighting +CatchRate|180 +BaseFriendship|35 +EggGroup1|Field +EggGroup2|Dragon +BaseEggSteps|4080 +EggPokemon|559 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|61 +Ability2|153 +HiddenAbility|22 +EggMoves|133,68,197,349,409,252,185,7,8,501,9,428 +Machines|29,174,205,46,92,249,237,241,173,63,182,240,203,218,231,216,91,189,104,8,207,214,188,111,9,197,156,213,7,5,25,34,36,6,66,68,69,99,102,117,118,130,157,164,264,337,339,269,280,317,259,263,290,289,411,374,406,409,371,416,445,399,404,363,398,447,479,490,496,510,514,525,526,555,612,590,70 +BaseHP|50 +BaseAttack|75 +BaseDefense|70 +BaseSpAttack|35 +BaseSpDefense|70 +BaseSpeed|48 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Proud of its sturdy skull, it suddenly headbutts everything, but its weight makes it unstable, too.\Shedding Pokémon\11.8\0.6\0,148,0 +Scale|0.84 +Move|1,43 +Move|1,67 +Move|9,185 +Move|12,29 +Move|16,207 +Move|20,280 +Move|23,371 +Move|27,498 +Move|34,184 +Move|38,242 +Move|42,263 +Move|45,431 +Move|49,264 +Move|50,457 +TradeValue|30 +Item|5,154 +EvolutionCondition|560,level,39,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/56.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/56.dat index db8f3fe47..853a8ec69 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/56.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/56.dat @@ -1 +1,54 @@ -{"Name":"Mankey","Number":56,"ExperienceType":"MediumFast","BaseExperience":61,"Type1":"Fighting","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":56,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[72,83],"HiddenAbility":128,"EggMoves":[251,370,68,227,264,265,193,96,400,179,279,79,157],"Machines":[223,29,174,92,249,244,237,241,173,63,182,240,203,218,231,87,216,189,104,8,207,214,129,111,9,197,156,213,168,7,5,25,34,36,6,66,68,69,99,85,102,117,118,130,164,264,339,263,290,411,416,445,363,468,479,490,496,523,526,612,590,431],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":80,"Def":35,"SpAtk":35,"SpDef":45,"Speed":70},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is extremely ill-tempered. Groups of them will attack any handy target for no reason.","Species":"Pig Monkey Pokémon","Height":0.5,"Weight":28,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":3,"ID":67},{"Level":4,"ID":116},{"Level":5,"ID":343},{"Level":9,"ID":154},{"Level":13,"ID":2},{"Level":17,"ID":69},{"Level":21,"ID":103},{"Level":25,"ID":372},{"Level":33,"ID":207},{"Level":37,"ID":238},{"Level":41,"ID":37},{"Level":45,"ID":386},{"Level":49,"ID":370},{"Level":53,"ID":1}],"EvolutionConditions":[{"Condition":"28","ConditionType":"Level","Evolution":57,"Trigger":"LevelUp"}],"Items":[{"Id":2044,"Chance":5}]} \ No newline at end of file +Name|Mankey +Number|56 +ExperienceType|1 +BaseExperience|61 +Type1|Fighting +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|56 +IsGenderLess|0 +IsMale|50 +Ability1|72 +Ability2|83 +HiddenAbility|128 +EggMoves|251,370,68,227,264,265,193,96,400,179,279,79,157 +Machines|223,29,174,92,249,244,237,241,173,63,182,240,203,218,231,87,216,189,104,8,207,214,129,111,9,197,156,213,168,7,5,25,34,36,6,66,68,69,99,85,102,117,118,130,164,264,339,263,290,411,416,445,363,468,479,490,496,523,526,612,590,431 +BaseHP|40 +BaseAttack|80 +BaseDefense|35 +BaseSpAttack|35 +BaseSpDefense|45 +BaseSpeed|70 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is extremely ill-tempered. Groups of them will attack any handy target for no reason.\Pig Monkey Pokémon\28\0.5\0,148,0 +Scale|0.7 +Move|1,10 +Move|1,43 +Move|1,67 +Move|1,116 +Move|1,343 +Move|9,154 +Move|13,2 +Move|17,69 +Move|21,103 +Move|25,372 +Move|33,207 +Move|37,238 +Move|41,37 +Move|45,386 +Move|49,370 +Move|53,515 +EvolutionCondition|57,Level,28,Level +Item|5,2044 +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/560.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/560.dat index 294813b96..a91663ae6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/560.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/560.dat @@ -1 +1,57 @@ -{"Name":"Scrafty","Number":560,"ExperienceType":"MediumFast","BaseExperience":171,"Type1":"Dark","Type2":"Fighting","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"Dragon","BaseEggSteps":4080,"EggPokemon":559,"Devolution":559,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[61,153],"HiddenAbility":22,"EggMoves":[133,68,197,349,409,252,185,7,8,501,9,428],"Machines":[29,174,205,46,92,249,237,241,173,63,182,240,203,218,231,216,91,189,104,8,207,214,188,111,9,197,156,213,168,7,5,25,34,36,6,66,68,69,99,102,117,118,130,157,164,264,337,339,269,280,317,259,263,290,289,411,374,406,409,371,416,445,399,363,398,447,479,490,496,510,514,525,526,555,612,590,70],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":90,"Def":115,"SpAtk":45,"SpDef":115,"Speed":58},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It pulls up its shed skin to protect itself while it kicks. The bigger the crest, the more respected it is.","Species":"Hoodlum Pokémon","Height":1.1,"Weight":30,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":50,"Moves":[{"Level":1,"ID":28},{"Level":2,"ID":43},{"Level":3,"ID":67},{"Level":4,"ID":185},{"Level":5,"ID":28},{"Level":9,"ID":185},{"Level":12,"ID":29},{"Level":16,"ID":207},{"Level":20,"ID":280},{"Level":23,"ID":371},{"Level":27,"ID":498},{"Level":31,"ID":136},{"Level":34,"ID":184},{"Level":38,"ID":242},{"Level":45,"ID":263},{"Level":51,"ID":431},{"Level":58,"ID":264},{"Level":65,"ID":457}],"EvolutionConditions":[],"Items":[{"Id":154,"Chance":5}]} \ No newline at end of file +Name|Scrafty +Number|560 +ExperienceType|1 +BaseExperience|171 +Type1|Dark +Type2|Fighting +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Dragon +BaseEggSteps|4080 +EggPokemon|559 +IsGenderLess|0 +CanBreed|1 +Devolution|559 +IsMale|50 +Ability1|61 +Ability2|153 +HiddenAbility|22 +EggMoves|133,68,197,349,409,252,185,7,8,501,9,428 +Machines|29,174,205,46,92,249,237,241,173,63,182,240,203,218,231,216,91,189,104,8,207,214,188,111,9,197,156,213,168,7,5,25,34,36,6,66,68,69,99,102,117,118,130,157,164,264,337,339,269,280,317,259,263,290,289,411,374,406,409,371,416,445,399,363,398,447,479,490,496,510,514,525,526,555,612,590,70 +BaseHP|65 +BaseAttack|90 +BaseDefense|115 +BaseSpAttack|45 +BaseSpDefense|115 +BaseSpeed|58 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It pulls up its shed skin to protect itself while it kicks. The bigger the crest, the more respected it is.\Hoodlum Pokémon\30\1.1\0,148,0 +Scale|1.04 +Move|1,28 +Move|5,28 +Move|12,29 +Move|1,43 +Move|1,67 +Move|31,136 +Move|34,184 +Move|1,185 +Move|9,185 +Move|16,207 +Move|38,242 +Move|45,263 +Move|58,264 +Move|20,280 +Move|23,371 +Move|51,431 +Move|65,457 +Move|27,498 +TradeValue|50 +Item|5,154 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/561.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/561.dat index 9da097b67..3a3117a69 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/561.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/561.dat @@ -1 +1,54 @@ -{"Name":"Sigilyph","Number":561,"ExperienceType":"MediumFast","BaseExperience":172,"Type1":"Psychic","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":561,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[147,98],"HiddenAbility":110,"EggMoves":[246,375,355,211,285,500],"Machines":[174,92,244,237,173,63,169,182,203,218,76,216,94,247,104,207,214,138,197,156,213,168,211,171,13,18,36,58,99,100,102,115,117,118,143,86,149,161,164,347,113,219,351,332,263,290,285,335,412,451,416,445,399,363,365,430,433,473,477,479,496,605,590,19,148],"TutorMoves":[],"BaseStats":{"HP":72,"Atk":58,"Def":80,"SpAtk":103,"SpDef":80,"Speed":97},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The guardians of an ancient city, they always fly the same route while keeping watch for invaders.","Species":"Avianoid Pokémon","Height":1.4,"Weight":14,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":50,"Moves":[{"Level":1,"ID":16},{"Level":2,"ID":357},{"Level":4,"ID":95},{"Level":8,"ID":149},{"Level":11,"ID":366},{"Level":14,"ID":18},{"Level":18,"ID":60},{"Level":21,"ID":314},{"Level":24,"ID":113},{"Level":28,"ID":115},{"Level":31,"ID":1},{"Level":34,"ID":119},{"Level":38,"ID":356},{"Level":41,"ID":403},{"Level":44,"ID":94},{"Level":48,"ID":322},{"Level":50,"ID":143}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Sigilyph +Number|561 +ExperienceType|1 +BaseExperience|172 +Type1|Psychic +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|561 +Devolution|0 +IsGenderLess|0 +IsMale|50 +Ability1|147 +Ability2|98 +HiddenAbility|110 +EggMoves|246,375,355,211,285,500 +Machines|174,92,244,237,173,63,169,182,203,218,76,216,94,247,104,207,214,138,197,156,213,168,211,171,13,18,36,58,99,100,102,115,117,118,143,86,149,161,164,347,113,219,351,332,263,290,285,335,412,451,416,445,399,363,365,430,433,473,477,479,496,605,590,19,148 +BaseHP|72 +BaseAttack|58 +BaseDefense|80 +BaseSpAttack|103 +BaseSpDefense|80 +BaseSpeed|97 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The guardians of an ancient city, they always fly the same route while keeping watch for invaders.\Avianoid Pokémon\14\1.4\0,148,0 +Scale|1.16 +Move|1,16 +Move|1,357 +Move|4,95 +Move|8,149 +Move|11,366 +Move|14,18 +Move|18,60 +Move|21,314 +Move|24,113 +Move|28,115 +Move|31,485 +Move|34,119 +Move|38,356 +Move|41,403 +Move|44,94 +Move|48,322 +Move|50,143 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/562.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/562.dat index b8c432279..0f09c0a4f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/562.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/562.dat @@ -1 +1,54 @@ -{"Name":"Yamask","Number":562,"ExperienceType":"MediumFast","BaseExperience":61,"Type1":"Ghost","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"Amourphous","BaseEggSteps":6630,"EggPokemon":562,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[152],"HiddenAbility":-1,"EggMoves":[502,50,203,313,377,286,262,417,171,390],"Machines":[174,92,244,237,173,63,182,240,203,218,216,94,247,104,207,214,138,197,156,213,168,171,99,102,117,149,164,347,219,263,290,285,289,412,261,373,371,416,445,399,363,433,477,496,611,590,148],"TutorMoves":[],"BaseStats":{"HP":38,"Atk":30,"Def":85,"SpAtk":55,"SpDef":65,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"These Pokémon arose from the spirits of people interred in graves. Each retains memories of its former life.","Species":"Spirit Pokémon","Height":0.5,"Weight":1.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":182},{"Level":2,"ID":310},{"Level":5,"ID":1},{"Level":9,"ID":114},{"Level":13,"ID":101},{"Level":17,"ID":506},{"Level":21,"ID":261},{"Level":25,"ID":466},{"Level":29,"ID":174},{"Level":33,"ID":1},{"Level":34,"ID":1},{"Level":37,"ID":247},{"Level":41,"ID":1},{"Level":45,"ID":212},{"Level":49,"ID":194}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Level","Evolution":563,"Trigger":"LevelUp"}],"Items":[{"Id":113,"Chance":5}]} \ No newline at end of file +Name|Yamask +Number|562 +ExperienceType|1 +BaseExperience|61 +Type1|Ghost +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|Undiscovered +BaseEggSteps|6630 +EggPokemon|562 +Devolution|0 +IsGenderLess|0 +IsMale|50 +Ability1|152 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|502,50,203,313,377,286,262,417,171,390 +Machines|174,92,244,237,173,63,182,240,203,218,216,94,247,104,207,214,138,197,156,213,168,171,99,102,117,149,164,347,219,263,290,285,289,412,261,373,371,416,445,399,363,433,477,496,611,590,148 +BaseHP|38 +BaseAttack|30 +BaseDefense|85 +BaseSpAttack|55 +BaseSpDefense|65 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|These Pokémon arose from the spirits of people interred in graves. Each retains memories of its former life.\Spirit Pokémon\1.5\0.5\0,148,0 +Scale|0.7 +Move|1,182 +Move|1,310 +Move|5,50 +Move|9,114 +Move|13,101 +Move|17,506 +Move|21,261 +Move|25,466 +Move|29,174 +Move|33,470 +Move|33,471 +Move|37,247 +Move|41,288 +Move|45,212 +Move|49,194 +EvolutionCondition|563,Level,34,Level +Item|5,113 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/563.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/563.dat index 4ad0fa9fa..356ae8f87 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/563.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/563.dat @@ -1 +1,53 @@ -{"Name":"Cofagrigus","Number":563,"ExperienceType":"MediumFast","BaseExperience":169,"Type1":"Ghost","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"Amorphous","BaseEggSteps":6630,"EggPokemon":562,"Devolution":562,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[152],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,244,237,173,63,182,240,203,218,216,94,247,104,207,214,138,197,156,213,168,171,99,102,117,118,120,149,164,347,219,263,290,285,289,412,261,373,371,416,445,399,363,433,477,496,611,590,148],"TutorMoves":[],"BaseStats":{"HP":58,"Atk":50,"Def":145,"SpAtk":95,"SpDef":105,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Grave robbers who mistake them for real coffins and get too close end up trapped inside their bodies.","Species":"Coffin Pokémon","Height":1.7,"Weight":76.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":50,"Moves":[{"Level":1,"ID":182},{"Level":2,"ID":310},{"Level":5,"ID":1},{"Level":9,"ID":114},{"Level":13,"ID":101},{"Level":17,"ID":506},{"Level":21,"ID":261},{"Level":25,"ID":466},{"Level":29,"ID":174},{"Level":33,"ID":1},{"Level":34,"ID":1},{"Level":35,"ID":184},{"Level":39,"ID":247},{"Level":45,"ID":1},{"Level":51,"ID":212},{"Level":57,"ID":194}],"EvolutionConditions":[],"Items":[{"Id":113,"Chance":5}]} \ No newline at end of file +Name|Cofagrigus +Number|563 +ExperienceType|1 +BaseExperience|169 +Type1|Ghost +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|Amorphous +BaseEggSteps|6630 +EggPokemon|562 +Devolution|562 +IsGenderLess|0 +IsMale|50 +Ability1|152 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,244,237,173,63,182,240,203,218,216,94,247,104,207,214,138,197,156,213,168,171,99,102,117,118,120,149,164,347,219,263,290,285,289,412,261,373,371,416,445,399,363,433,477,496,611,590,148 +BaseHP|58 +BaseAttack|50 +BaseDefense|145 +BaseSpAttack|95 +BaseSpDefense|105 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Grave robbers who mistake them for real coffins and get too close end up trapped inside their bodies.\Coffin Pokémon\76.5\1.7\0,148,0 +Scale|1.28 +Move|1,182 +Move|1,310 +Move|5,50 +Move|9,114 +Move|13,101 +Move|17,506 +Move|21,261 +Move|25,466 +Move|29,174 +Move|33,470 +Move|33,471 +Move|34,184 +Move|39,247 +Move|45,288 +Move|51,212 +Move|57,194 +Item|5,113 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/564.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/564.dat index 95a3935a7..cf27baf43 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/564.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/564.dat @@ -1 +1,56 @@ -{"Name":"Tirtouga","Number":564,"ExperienceType":"MediumFast","BaseExperience":71,"Type1":"Water","Type2":"Rock","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water3","BaseEggSteps":7905,"EggPokemon":564,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[116,5],"HiddenAbility":33,"EggMoves":[117,34,175,385,334,282,88,21,352,250],"Machines":[174,205,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,207,214,111,197,156,213,34,36,61,55,58,99,102,117,157,164,352,317,263,290,362,416,397,444,419,446,445,363,479,496,503,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":54,"Atk":78,"Def":103,"SpAtk":53,"SpDef":45,"Speed":22},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon was restored from a fossil. It swam skillfully and dove to depths beyond half a mile.","Species":"Prototurtle Pokémon","Height":0.7,"Weight":16.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":50,"Moves":[{"Level":1,"ID":55},{"Level":2,"ID":110},{"Level":3,"ID":117},{"Level":5,"ID":205},{"Level":8,"ID":44},{"Level":11,"ID":182},{"Level":15,"ID":453},{"Level":18,"ID":246},{"Level":21,"ID":242},{"Level":25,"ID":1},{"Level":28,"ID":362},{"Level":31,"ID":479},{"Level":35,"ID":174},{"Level":38,"ID":504},{"Level":41,"ID":401},{"Level":45,"ID":157},{"Level":48,"ID":240},{"Level":50,"ID":56}],"EvolutionConditions":[{"Condition":"37","ConditionType":"Level","Evolution":565,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Tirtouga +Number|564 +ExperienceType|1 +BaseExperience|71 +Type1|Water +Type2|Rock +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|7905 +EggPokemon|564 +Devolution|0 +IsGenderLess|0 +IsMale|87.5 +Ability1|116 +Ability2|5 +HiddenAbility|33 +EggMoves|117,34,175,385,334,282,88,21,352,250 +Machines|174,205,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,207,214,111,197,156,213,34,36,61,55,58,99,102,117,157,164,352,317,263,290,362,416,397,444,419,446,445,363,479,496,503,590,57,70,250,127,291 +BaseHP|54 +BaseAttack|78 +BaseDefense|103 +BaseSpAttack|53 +BaseSpDefense|45 +BaseSpeed|22 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon was restored from a fossil. It swam skillfully and dove to depths beyond half a mile.\Prototurtle Pokémon\16.5\0.7\0,148,0 +Scale|0.88 +Move|1,55 +Move|1,110 +Move|1,117 +Move|5,205 +Move|8,44 +Move|11,182 +Move|15,453 +Move|18,246 +Move|21,242 +Move|25,469 +Move|28,362 +Move|31,479 +Move|35,174 +Move|38,504 +Move|41,401 +Move|45,157 +Move|48,240 +Move|50,56 +EvolutionCondition|565,Level,37,Level +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/565.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/565.dat index d8a26fc77..33de48505 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/565.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/565.dat @@ -1 +1,57 @@ -{"Name":"Carracosta","Number":565,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Water","Type2":"Rock","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water3","BaseEggSteps":7905,"EggPokemon":564,"Devolution":564,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[116,5],"HiddenAbility":33,"EggMoves":[117,34,175,385,334,282,88,21,352,250],"Machines":[174,205,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,207,214,111,197,156,213,5,25,34,36,38,61,55,58,66,68,69,99,102,117,120,130,157,164,352,317,263,290,411,362,416,397,444,419,446,445,363,479,496,503,590,57,70,250,127,560,291],"TutorMoves":[],"BaseStats":{"HP":74,"Atk":108,"Def":133,"SpAtk":83,"SpDef":65,"Speed":32},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It could knock out a foe with a slap from one of its developed front appendages and chew it up, shell or bones and all.","Species":"Prototurtle Pokémon","Height":1.2,"Weight":81,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":50,"Moves":[{"Level":1,"ID":55},{"Level":2,"ID":110},{"Level":3,"ID":117},{"Level":4,"ID":205},{"Level":5,"ID":205},{"Level":8,"ID":44},{"Level":11,"ID":182},{"Level":15,"ID":453},{"Level":18,"ID":246},{"Level":21,"ID":242},{"Level":25,"ID":1},{"Level":28,"ID":362},{"Level":31,"ID":479},{"Level":35,"ID":174},{"Level":40,"ID":504},{"Level":45,"ID":401},{"Level":51,"ID":157},{"Level":56,"ID":240},{"Level":61,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Carracosta +Number|565 +ExperienceType|1 +BaseExperience|173 +Type1|Water +Type2|Rock +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|7905 +EggPokemon|564 +IsGenderLess|0 +CanBreed|1 +Devolution|564 +IsMale|87.5 +Ability1|116 +Ability2|5 +HiddenAbility|33 +EggMoves|117,34,175,385,334,282,88,21,352,250 +Machines|174,205,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,207,214,111,197,156,213,5,25,34,36,38,61,55,58,66,68,69,99,102,117,120,130,157,164,352,317,263,290,411,362,416,397,444,419,446,445,363,479,496,503,590,57,70,250,127,560,291 +BaseHP|74 +BaseAttack|108 +BaseDefense|133 +BaseSpAttack|83 +BaseSpDefense|65 +BaseSpeed|32 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It could knock out a foe with a slap from one of its developed front appendages and chew it up, shell or bones and all.\Prototurtle Pokémon\81\1.2\0,148,0 +Scale|1.08 +Move|1,55 +Move|1,110 +Move|1,117 +Move|1,205 +Move|5,205 +Move|8,44 +Move|11,182 +Move|15,453 +Move|18,246 +Move|21,242 +Move|25,469 +Move|28,362 +Move|31,479 +Move|35,174 +Move|40,504 +Move|45,401 +Move|51,157 +Move|56,240 +Move|61,56 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/566.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/566.dat index e24abc6df..0affe5918 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/566.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/566.dat @@ -1 +1,56 @@ -{"Name":"Archen","Number":566,"ExperienceType":"MediumFast","BaseExperience":71,"Type1":"Rock","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"Water3","BaseEggSteps":7905,"EggPokemon":566,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[129],"HiddenAbility":-1,"EggMoves":[502,44,432,406,414,457,282,415,211],"Machines":[174,46,92,249,237,173,63,182,203,218,231,225,216,189,104,207,214,197,156,213,211,210,13,18,36,99,82,102,117,120,164,337,263,290,355,406,416,444,446,445,363,365,468,479,496,590,15],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":112,"Def":45,"SpAtk":74,"SpDef":45,"Speed":70},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It was revived from an ancient fossil. Not able to fly, it lived in treetops and hopped from one branch to another.","Species":"First Bird Pokémon","Height":0.5,"Weight":9.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":17},{"Level":2,"ID":43},{"Level":3,"ID":98},{"Level":5,"ID":88},{"Level":8,"ID":104},{"Level":11,"ID":184},{"Level":15,"ID":365},{"Level":18,"ID":246},{"Level":21,"ID":97},{"Level":25,"ID":1},{"Level":28,"ID":512},{"Level":31,"ID":225},{"Level":35,"ID":242},{"Level":38,"ID":283},{"Level":41,"ID":369},{"Level":45,"ID":157},{"Level":48,"ID":337},{"Level":50,"ID":37}],"EvolutionConditions":[{"Condition":"37","ConditionType":"Level","Evolution":567,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Archen +Number|566 +ExperienceType|1 +BaseExperience|71 +Type1|Rock +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|Water3 +BaseEggSteps|7905 +EggPokemon|566 +Devolution|0 +IsGenderLess|0 +IsMale|87.5 +Ability1|129 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|502,44,432,406,414,457,282,415,211 +Machines|174,46,92,249,237,173,63,182,203,218,231,225,216,189,104,207,214,197,156,213,211,210,13,18,36,99,82,102,117,120,164,337,263,290,355,406,416,444,446,445,363,365,468,479,496,590,15 +BaseHP|55 +BaseAttack|112 +BaseDefense|45 +BaseSpAttack|74 +BaseSpDefense|45 +BaseSpeed|70 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It was revived from an ancient fossil. Not able to fly, it lived in treetops and hopped from one branch to another.\First Bird Pokémon\9.5\0.5\0,148,0 +Scale|0.7 +Move|1,17 +Move|1,43 +Move|1,98 +Move|5,88 +Move|8,104 +Move|11,184 +Move|15,365 +Move|18,246 +Move|21,97 +Move|25,501 +Move|28,512 +Move|31,225 +Move|35,242 +Move|38,283 +Move|41,369 +Move|45,157 +Move|48,337 +Move|50,37 +EvolutionCondition|567,Level,37,Level +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/567.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/567.dat index ce469de4c..8212d264a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/567.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/567.dat @@ -1 +1,57 @@ -{"Name":"Archeops","Number":567,"ExperienceType":"MediumFast","BaseExperience":177,"Type1":"Rock","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"Water3","BaseEggSteps":7905,"EggPokemon":566,"Devolution":566,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[129],"HiddenAbility":-1,"EggMoves":[502,44,432,406,414,457,282,211,415],"Machines":[174,46,92,249,237,173,63,182,203,218,231,225,216,189,104,207,214,197,156,213,211,210,13,18,36,38,99,82,102,117,120,130,143,164,337,263,290,355,411,406,416,432,444,446,445,363,365,468,479,496,525,590,15,19],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":140,"Def":65,"SpAtk":112,"SpDef":65,"Speed":110},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It runs better than it flies. It takes off into the sky by running at a speed of 25mph.","Species":"First Bird Pokémon","Height":1.4,"Weight":32,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":50,"Moves":[{"Level":1,"ID":17},{"Level":2,"ID":43},{"Level":3,"ID":88},{"Level":4,"ID":98},{"Level":5,"ID":88},{"Level":8,"ID":104},{"Level":11,"ID":184},{"Level":15,"ID":365},{"Level":18,"ID":246},{"Level":21,"ID":97},{"Level":25,"ID":1},{"Level":28,"ID":512},{"Level":31,"ID":225},{"Level":35,"ID":242},{"Level":40,"ID":283},{"Level":45,"ID":369},{"Level":51,"ID":157},{"Level":56,"ID":337},{"Level":61,"ID":37}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Archeops +Number|567 +ExperienceType|1 +BaseExperience|177 +Type1|Rock +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|Water3 +BaseEggSteps|7905 +EggPokemon|566 +IsGenderLess|0 +CanBreed|1 +Devolution|566 +IsMale|87.5 +Ability1|129 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|502,44,432,406,414,457,282,211,415 +Machines|174,46,92,249,237,173,63,182,203,218,231,225,216,189,104,207,214,197,156,213,211,210,13,18,36,38,99,82,102,117,120,130,143,164,337,263,290,355,411,406,416,432,444,446,445,363,365,468,479,496,525,590,15,19 +BaseHP|75 +BaseAttack|140 +BaseDefense|65 +BaseSpAttack|112 +BaseSpDefense|65 +BaseSpeed|110 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It runs better than it flies. It takes off into the sky by running at a speed of 25mph.\First Bird Pokémon\32\1.4\0,148,0 +Scale|1.16 +Move|1,17 +Move|1,43 +Move|1,88 +Move|1,98 +Move|5,88 +Move|8,104 +Move|11,184 +Move|15,365 +Move|18,246 +Move|21,97 +Move|25,501 +Move|28,512 +Move|31,225 +Move|35,242 +Move|40,283 +Move|45,369 +Move|51,157 +Move|56,337 +Move|61,37 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/568.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/568.dat index cccb06da2..c1b4454e0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/568.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/568.dat @@ -1 +1,58 @@ -{"Name":"Trubbish","Number":568,"ExperienceType":"MediumFast","BaseExperience":66,"Type1":"Poison","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":568,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[1,60],"HiddenAbility":106,"EggMoves":[174,114,300,350,205,120,191],"Machines":[174,205,92,237,241,173,63,182,240,202,203,218,216,104,207,214,188,111,197,156,213,168,34,36,6,66,68,69,99,72,102,117,120,153,164,263,290,409,371,278,416,445,399,363,474,482,496,611,590],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":50,"Def":62,"SpAtk":40,"SpDef":62,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Wanting more garbage, they follow people who litter. They always belch poison gas.","Species":"Trash Bag Pokémon","Height":0.6,"Weight":31,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":139},{"Level":3,"ID":278},{"Level":7,"ID":390},{"Level":12,"ID":491},{"Level":14,"ID":3},{"Level":18,"ID":124},{"Level":23,"ID":254},{"Level":24,"ID":256},{"Level":25,"ID":36},{"Level":29,"ID":188},{"Level":34,"ID":499},{"Level":36,"ID":92},{"Level":40,"ID":133},{"Level":42,"ID":1},{"Level":45,"ID":441},{"Level":47,"ID":153}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":569,"Trigger":"LevelUp"}],"Items":[{"Id":182,"Chance":5},{"Id":36,"Chance":1}]} \ No newline at end of file +Name|Trubbish +Number|568 +ExperienceType|1 +BaseExperience|66 +Type1|Poison +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|568 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|1 +Ability2|60 +HiddenAbility|106 +EggMoves|174,114,300,350,205,120,191 +Machines|174,205,92,237,241,173,63,182,240,202,203,218,216,104,207,214,188,111,197,156,213,168,34,36,6,66,68,69,99,72,102,117,120,153,164,263,290,409,371,278,416,445,399,363,474,482,496,611,590 +BaseHP|50 +BaseAttack|50 +BaseDefense|62 +BaseSpAttack|40 +BaseSpDefense|62 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Wanting more garbage, they follow people who litter. They always belch poison gas.\Trash Bag Pokémon\31\0.6\0,148,0 +Scale|0.84 +Move|1,1 +Move|1,139 +Move|3,278 +Move|7,390 +Move|12,491 +Move|14,3 +Move|18,124 +Move|23,254 +Move|23,256 +Move|25,36 +Move|29,188 +Move|34,499 +Move|36,92 +Move|40,133 +Move|42,562 +Move|45,441 +Move|47,153 +TradeValue|25 +Item|5,182 +Item|1,36 +EvolutionCondition|569,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/569.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/569.dat index 489e5dcb7..5b4bc36a1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/569.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/569.dat @@ -1 +1,59 @@ -{"Name":"Garbodor","Number":569,"ExperienceType":"MediumFast","BaseExperience":166,"Type1":"Poison","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":568,"Devolution":568,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[1,133],"HiddenAbility":106,"EggMoves":[174,114,300,350,205,120,191],"Machines":[174,205,92,237,241,173,63,182,240,202,203,218,76,216,94,104,207,214,188,111,197,156,213,168,5,25,34,36,38,6,66,68,69,99,72,85,102,117,120,153,164,264,263,290,411,374,409,371,278,416,397,445,399,363,474,479,482,496,611,590],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":95,"Def":82,"SpAtk":60,"SpDef":82,"Speed":75},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Consuming garbage makes new kinds of poison gases and liquids inside their bodies.","Species":"Trash Heap Pokémon","Height":1.9,"Weight":107.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":45,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":139},{"Level":3,"ID":278},{"Level":4,"ID":390},{"Level":5,"ID":278},{"Level":7,"ID":390},{"Level":12,"ID":491},{"Level":14,"ID":3},{"Level":18,"ID":124},{"Level":23,"ID":254},{"Level":24,"ID":256},{"Level":25,"ID":34},{"Level":29,"ID":188},{"Level":34,"ID":499},{"Level":39,"ID":92},{"Level":46,"ID":133},{"Level":49,"ID":1},{"Level":54,"ID":441},{"Level":59,"ID":153}],"EvolutionConditions":[],"Items":[{"Id":182,"Chance":5},{"Id":36,"Chance":1}]} \ No newline at end of file +Name|Garbodor +Number|569 +ExperienceType|1 +BaseExperience|166 +Type1|Poison +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|568 +IsGenderLess|0 +CanBreed|1 +Devolution|568 +IsMale|50 +Ability1|1 +Ability2|133 +HiddenAbility|106 +EggMoves|174,114,300,350,205,120,191 +Machines|174,205,92,237,241,173,63,182,240,202,203,218,76,216,94,104,207,214,188,111,197,156,213,168,5,25,34,36,38,6,66,68,69,99,72,85,102,117,120,153,164,264,263,290,411,374,409,371,278,416,397,445,399,363,474,479,482,496,611,590 +BaseHP|80 +BaseAttack|95 +BaseDefense|82 +BaseSpAttack|60 +BaseSpDefense|82 +BaseSpeed|75 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Consuming garbage makes new kinds of poison gases and liquids inside their bodies.\Trash Heap Pokémon\107.3\1.9\0,148,0 +Scale|1.36 +Move|1,1 +Move|1,139 +Move|1,278 +Move|1,390 +Move|3,278 +Move|7,390 +Move|12,491 +Move|14,3 +Move|18,124 +Move|23,254 +Move|23,256 +Move|25,34 +Move|29,188 +Move|34,499 +Move|39,92 +Move|46,133 +Move|49,562 +Move|54,441 +Move|59,153 +TradeValue|45 +Item|5,182 +Item|1,36 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/57.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/57.dat index 238eba58e..482886f49 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/57.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/57.dat @@ -1 +1,55 @@ -{"Name":"Primeape","Number":57,"ExperienceType":"MediumFast","BaseExperience":159,"Type1":"Fighting","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":56,"Devolution":56,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[72,83],"HiddenAbility":128,"EggMoves":[251,370,68,227,264,265,193,96,400,179,279,79,157],"Machines":[223,29,174,92,249,244,237,241,173,63,182,240,203,218,231,87,216,189,104,8,207,214,129,111,9,197,156,213,168,7,5,25,34,36,38,6,66,68,69,99,85,102,117,118,130,164,264,339,263,290,411,416,445,363,468,479,490,496,523,526,612,590,431],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":105,"Def":60,"SpAtk":60,"SpDef":70,"Speed":95},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If approached while asleep it may awaken and angrily give chase in a groggy state of semi-sleep.","Species":"Pig Monkey Pokémon","Height":1,"Weight":32,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":30,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":3,"ID":67},{"Level":4,"ID":116},{"Level":5,"ID":374},{"Level":6,"ID":1},{"Level":9,"ID":154},{"Level":13,"ID":2},{"Level":17,"ID":69},{"Level":21,"ID":103},{"Level":25,"ID":372},{"Level":28,"ID":99},{"Level":35,"ID":207},{"Level":41,"ID":238},{"Level":47,"ID":37},{"Level":53,"ID":386},{"Level":59,"ID":370},{"Level":63,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":2044,"Chance":5}]} \ No newline at end of file +Name|Primeape +Number|57 +ExperienceType|1 +BaseExperience|159 +Type1|Fighting +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|56 +IsGenderLess|0 +IsMale|50 +Ability1|72 +Ability2|83 +HiddenAbility|128 +EggMoves|251,370,68,227,264,265,193,96,400,179,279,79,157 +Machines|223,29,174,92,249,244,237,241,173,63,182,240,203,218,231,87,216,189,104,8,207,214,129,111,9,197,156,213,168,7,5,25,34,36,38,6,66,68,69,99,85,102,117,118,130,164,264,339,263,290,411,416,445,363,468,479,490,496,523,526,612,590,431 +BaseHP|65 +BaseAttack|105 +BaseDefense|60 +BaseSpAttack|60 +BaseSpDefense|70 +BaseSpeed|95 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If approached while asleep it may awaken and angrily give chase in a groggy state of semi-sleep.\Pig Monkey Pokémon\32\1\0,148,0 +Scale|1 +Move|1,10 +Move|1,43 +Move|1,67 +Move|1,116 +Move|1,374 +Move|1,515 +Move|9,154 +Move|13,2 +Move|17,69 +Move|21,103 +Move|25,372 +Move|28,99 +Move|35,207 +Move|41,238 +Move|47,37 +Move|53,386 +Move|59,370 +Move|63,515 +Item|5,2044 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/570.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/570.dat index 455518856..25edd4670 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/570.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/570.dat @@ -1 +1,55 @@ -{"Name":"Zorua","Number":570,"ExperienceType":"MediumSlow","BaseExperience":66,"Type1":"Dark","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":570,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[149],"HiddenAbility":-1,"EggMoves":[445,383,68,399,197,326,262,289,389],"Machines":[174,205,46,92,237,241,173,63,182,240,203,218,216,91,247,189,104,207,214,129,111,197,156,213,168,171,14,34,36,6,99,102,117,130,164,347,269,332,259,263,290,289,374,373,371,416,445,399,363,447,468,496,510,514,555,590,15],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":65,"Def":40,"SpAtk":80,"SpDef":40,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It changes so it looks just like its foe, tricks it, and then uses that opportunity to flee.","Species":"Tricky Fox Pokémon","Height":0.7,"Weight":12.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":40,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":5,"ID":228},{"Level":9,"ID":313},{"Level":13,"ID":154},{"Level":17,"ID":185},{"Level":21,"ID":184},{"Level":25,"ID":269},{"Level":29,"ID":1},{"Level":33,"ID":259},{"Level":37,"ID":97},{"Level":41,"ID":373},{"Level":45,"ID":386},{"Level":49,"ID":417},{"Level":53,"ID":1},{"Level":57,"ID":539}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":571,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Zorua +Number|570 +ExperienceType|2 +BaseExperience|66 +Type1|Dark +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|570 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|149 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|445,383,68,399,197,326,262,289,389 +Machines|174,205,46,92,237,241,173,63,182,240,203,218,216,91,247,189,104,207,214,129,111,197,156,213,168,171,14,34,36,6,99,102,117,130,164,347,269,332,259,263,290,289,374,373,371,416,445,399,363,447,468,496,510,514,555,590,15 +BaseHP|40 +BaseAttack|65 +BaseDefense|40 +BaseSpAttack|80 +BaseSpDefense|40 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It changes so it looks just like its foe, tricks it, and then uses that opportunity to flee.\Tricky Fox Pokémon\12.5\0.7\0,148,0 +Scale|0.88 +Move|1,10 +Move|1,43 +Move|5,228 +Move|9,313 +Move|13,154 +Move|17,185 +Move|21,184 +Move|25,269 +Move|29,492 +Move|33,259 +Move|37,97 +Move|41,373 +Move|45,386 +Move|49,417 +Move|53,286 +Move|57,539 +TradeValue|40 +EvolutionCondition|571,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/571.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/571.dat index d2f3d3d48..32f75bf4d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/571.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/571.dat @@ -1 +1,60 @@ -{"Name":"Zoroark","Number":571,"ExperienceType":"MediumSlow","BaseExperience":179,"Type1":"Dark","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":570,"Devolution":570,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[149],"HiddenAbility":-1,"EggMoves":[445,383,68,399,197,326,262,289,389],"Machines":[174,205,46,92,249,237,241,173,63,182,240,203,218,216,91,247,189,104,207,214,129,111,197,156,213,168,171,5,14,25,34,36,38,6,66,68,69,99,82,102,117,118,130,164,264,347,269,351,53,332,259,263,290,289,411,374,373,421,371,416,445,399,363,447,369,468,490,496,510,514,555,590,15,431,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":105,"Def":60,"SpAtk":120,"SpDef":60,"Speed":105},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Stories say those tried to catch Zoroark were trapped in an illusion and punished.","Species":"Illusion Fox Pokémon","Height":1.6,"Weight":81.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":60,"Moves":[{"Level":1,"ID":539},{"Level":2,"ID":1},{"Level":3,"ID":369},{"Level":4,"ID":10},{"Level":5,"ID":43},{"Level":6,"ID":228},{"Level":7,"ID":468},{"Level":8,"ID":228},{"Level":9,"ID":468},{"Level":13,"ID":154},{"Level":17,"ID":185},{"Level":21,"ID":184},{"Level":25,"ID":269},{"Level":29,"ID":1},{"Level":30,"ID":400},{"Level":34,"ID":259},{"Level":39,"ID":97},{"Level":44,"ID":373},{"Level":49,"ID":386},{"Level":54,"ID":417},{"Level":59,"ID":1},{"Level":64,"ID":539}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Zoroark +Number|571 +ExperienceType|2 +BaseExperience|179 +Type1|Dark +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|570 +IsGenderLess|0 +CanBreed|1 +Devolution|570 +IsMale|87.5 +Ability1|149 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|445,383,68,399,197,326,262,289,389 +Machines|174,205,46,92,249,237,241,173,63,182,240,203,218,216,91,247,189,104,207,214,129,111,197,156,213,168,171,5,14,25,34,36,38,6,66,68,69,99,82,102,117,118,130,164,264,347,269,351,53,332,259,263,290,289,411,374,373,421,371,416,445,399,363,447,369,468,490,496,510,514,555,590,15,431,560 +BaseHP|60 +BaseAttack|105 +BaseDefense|60 +BaseSpAttack|120 +BaseSpDefense|60 +BaseSpeed|105 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Stories say those tried to catch Zoroark were trapped in an illusion and punished.\Illusion Fox Pokémon\81.1\1.6\0,148,0 +Scale|1.24 +Move|1,539 +Move|1,286 +Move|1,369 +Move|1,10 +Move|1,43 +Move|1,228 +Move|1,468 +Move|5,228 +Move|9,468 +Move|13,154 +Move|17,185 +Move|21,184 +Move|25,269 +Move|29,492 +Move|30,400 +Move|34,259 +Move|39,97 +Move|44,373 +Move|49,386 +Move|54,417 +Move|59,286 +Move|64,539 +TradeValue|60 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/572.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/572.dat index 7a300fbdc..9840d481d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/572.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/572.dat @@ -1 +1,57 @@ -{"Name":"Minccino","Number":572,"ExperienceType":"Fast","BaseExperience":60,"Type1":"Normal","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":572,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[56,101],"HiddenAbility":92,"EggMoves":[401,203,313,175,231,282,189,214,39],"Machines":[174,205,92,192,237,241,230,173,63,182,240,203,218,231,216,91,189,104,207,214,129,111,197,156,213,168,171,36,6,99,85,102,117,118,130,149,164,352,263,290,416,445,363,369,496,526,605,590],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":50,"Def":40,"SpAtk":40,"SpDef":40,"Speed":75},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Minccino greet each other by grooming one another thoroughly with their tails.","Species":"Chinchilla Pokémon","Height":0.4,"Weight":5.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":3,"ID":608},{"Level":7,"ID":1},{"Level":9,"ID":321},{"Level":13,"ID":3},{"Level":15,"ID":227},{"Level":19,"ID":129},{"Level":21,"ID":47},{"Level":25,"ID":541},{"Level":27,"ID":204},{"Level":31,"ID":358},{"Level":33,"ID":1},{"Level":37,"ID":21},{"Level":39,"ID":445},{"Level":43,"ID":304},{"Level":45,"ID":387},{"Level":49,"ID":1}],"EvolutionConditions":[{"Condition":"135","ConditionType":"Item","Evolution":573,"Trigger":"LevelUp"}],"Items":[{"Id":2001,"Chance":50}]} \ No newline at end of file +Name|Minccino +Number|572 +ExperienceType|0 +BaseExperience|60 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|572 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|56 +Ability2|101 +HiddenAbility|92 +EggMoves|401,203,313,175,231,282,189,214,39 +Machines|174,205,92,192,237,241,230,173,63,182,240,203,218,231,216,91,189,104,207,214,129,111,197,156,213,168,171,36,6,99,85,102,117,118,130,149,164,352,263,290,416,445,363,369,496,526,605,590 +BaseHP|55 +BaseAttack|50 +BaseDefense|40 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|75 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Minccino greet each other by grooming one another thoroughly with their tails.\Chinchilla Pokémon\5.8\0.4\0,148,0 +Scale|0.7 +Move|1,1 +Move|3,608 +Move|7,270 +Move|9,321 +Move|13,3 +Move|15,227 +Move|19,129 +Move|21,47 +Move|25,541 +Move|27,204 +Move|31,358 +Move|33,497 +Move|37,21 +Move|39,445 +Move|43,304 +Move|45,387 +Move|49,495 +TradeValue|25 +Item|50,2001 +EvolutionCondition|573,item,135,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/573.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/573.dat index 8c96d0b31..f29c0c9cf 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/573.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/573.dat @@ -1 +1,45 @@ -{"Name":"Cinccino","Number":573,"ExperienceType":"Fast","BaseExperience":165,"Type1":"Normal","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":572,"Devolution":572,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[56,101],"HiddenAbility":92,"EggMoves":[401,203,313,175,231,282,189,214,39],"Machines":[63,85,86,87,91,92,104,113,156,164,168,182,207,213,216,218,219,237,240,241,263,347,369,374,411,416,447,496,497,514,526],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":95,"Def":60,"SpAtk":65,"SpDef":60,"Speed":115},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Cinccino's body is coated in a special oil that helps it deflect attacks, such as punches.","Species":"Scarf Pokémon","Height":0.5,"Weight":7.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":331},{"Level":2,"ID":350},{"Level":3,"ID":1},{"Level":4,"ID":321},{"Level":5,"ID":47},{"Level":6,"ID":541}],"EvolutionConditions":[],"Items":[{"Id":2001,"Chance":50}]} \ No newline at end of file +Name|Cinccino +Number|573 +ExperienceType|0 +BaseExperience|165 +Type1|Normal +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|572 +IsGenderLess|0 +CanBreed|1 +Devolution|572 +IsMale|25 +Ability1|56 +Ability2|101 +HiddenAbility|92 +EggMoves|401,203,313,175,231,282,189,214,39 +Machines|63,85,86,87,91,92,104,113,156,164,168,182,207,213,216,218,219,237,240,241,263,347,369,374,411,416,447,496,497,514,526 +BaseHP|75 +BaseAttack|95 +BaseDefense|60 +BaseSpAttack|65 +BaseSpDefense|60 +BaseSpeed|115 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Cinccino's body is coated in a special oil that helps it deflect attacks, such as punches.\Scarf Pokémon\7.5\0.5\0,148,0 +Scale|0.7 +Move|1,331 +Move|1,350 +Move|1,270 +Move|1,321 +Move|1,47 +Move|1,541 +TradeValue|50 +Item|50,2001 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/574.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/574.dat index a88bcd376..99aea667f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/574.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/574.dat @@ -1 +1,57 @@ -{"Name":"Gothita","Number":574,"ExperienceType":"MediumSlow","BaseExperience":58,"Type1":"Psychic","Type2":"Blank","CatchRate":200,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":574,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[119,172],"HiddenAbility":23,"EggMoves":[445,399,505,212,357,243,253],"Machines":[174,92,192,244,237,230,173,63,182,240,203,218,216,94,247,104,207,214,138,197,156,213,168,171,36,99,85,100,102,115,117,118,86,149,157,161,164,347,269,113,219,317,259,263,290,285,289,412,374,451,373,371,278,416,445,363,447,433,473,477,496,590,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":30,"Def":50,"SpAtk":55,"SpDef":65,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It stares intently at everything. It can become so obsessed with watching that it doesn't notice attacks.","Species":"Fixation Pokémon","Height":0.4,"Weight":5.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":1},{"Level":3,"ID":93},{"Level":7,"ID":321},{"Level":8,"ID":589},{"Level":10,"ID":313},{"Level":14,"ID":3},{"Level":16,"ID":60},{"Level":19,"ID":373},{"Level":24,"ID":185},{"Level":25,"ID":473},{"Level":28,"ID":260},{"Level":31,"ID":248},{"Level":33,"ID":377},{"Level":37,"ID":94},{"Level":40,"ID":1},{"Level":46,"ID":204},{"Level":48,"ID":1}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":575,"Trigger":"LevelUp"}],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Gothita +Number|574 +ExperienceType|2 +BaseExperience|58 +Type1|Psychic +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|574 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|119 +Ability2|172 +HiddenAbility|23 +EggMoves|445,399,505,212,357,243,253 +Machines|174,92,192,244,237,230,173,63,182,240,203,218,216,94,247,104,207,214,138,197,156,213,168,171,36,99,85,100,102,115,117,118,86,149,157,161,164,347,269,113,219,317,259,263,290,285,289,412,374,451,373,371,278,416,445,363,447,433,473,477,496,590,148 +BaseHP|45 +BaseAttack|30 +BaseDefense|50 +BaseSpAttack|55 +BaseSpDefense|65 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It stares intently at everything. It can become so obsessed with watching that it doesn't notice attacks.\Fixation Pokémon\5.8\0.4\0,148,0 +Scale|0.7 +Move|1,1 +Move|3,93 +Move|7,321 +Move|8,589 +Move|10,313 +Move|14,3 +Move|16,60 +Move|19,373 +Move|24,185 +Move|25,473 +Move|28,260 +Move|31,248 +Move|33,377 +Move|37,94 +Move|40,477 +Move|46,204 +Move|48,478 +TradeValue|25 +Item|50,2007 +EvolutionCondition|575,level,32,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/575.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/575.dat index a74f8e7f2..9dc7164f7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/575.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/575.dat @@ -1 +1,59 @@ -{"Name":"Gothorita","Number":575,"ExperienceType":"MediumSlow","BaseExperience":137,"Type1":"Psychic","Type2":"Blank","CatchRate":100,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":574,"Devolution":574,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[119,172],"HiddenAbility":23,"EggMoves":[445,399,505,212,357,243,253],"Machines":[174,92,192,244,237,230,173,63,182,240,203,218,216,94,247,104,207,214,138,197,156,213,168,171,34,36,99,85,100,102,115,117,118,86,149,157,161,164,347,269,113,219,317,259,263,290,285,289,412,374,451,373,371,278,416,445,363,447,433,473,477,496,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":45,"Def":70,"SpAtk":75,"SpDef":85,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"According to many old tales, it creates friends for itself by controlling sleeping children on starry nights.","Species":"Manipulate Pokémon","Height":0.7,"Weight":18,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":45,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":93},{"Level":3,"ID":321},{"Level":4,"ID":589},{"Level":5,"ID":93},{"Level":7,"ID":321},{"Level":10,"ID":313},{"Level":14,"ID":3},{"Level":16,"ID":60},{"Level":19,"ID":373},{"Level":24,"ID":185},{"Level":25,"ID":473},{"Level":28,"ID":260},{"Level":31,"ID":248},{"Level":34,"ID":377},{"Level":39,"ID":94},{"Level":43,"ID":1},{"Level":50,"ID":204},{"Level":53,"ID":1}],"EvolutionConditions":[{"Condition":"41","ConditionType":"Level","Evolution":576,"Trigger":"LevelUp"}],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Gothorita +Number|575 +ExperienceType|2 +BaseExperience|137 +Type1|Psychic +Type2| +CatchRate|100 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|574 +IsGenderLess|0 +CanBreed|1 +Devolution|574 +IsMale|25 +Ability1|119 +Ability2|172 +HiddenAbility|23 +EggMoves|445,399,505,212,357,243,253 +Machines|174,92,192,244,237,230,173,63,182,240,203,218,216,94,247,104,207,214,138,197,156,213,168,171,34,36,99,85,100,102,115,117,118,86,149,157,161,164,347,269,113,219,317,259,263,290,285,289,412,374,451,373,371,278,416,445,363,447,433,473,477,496,590,148 +BaseHP|60 +BaseAttack|45 +BaseDefense|70 +BaseSpAttack|75 +BaseSpDefense|85 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|According to many old tales, it creates friends for itself by controlling sleeping children on starry nights.\Manipulate Pokémon\18\0.7\0,148,0 +Scale|0.88 +Move|1,1 +Move|1,93 +Move|1,321 +Move|1,589 +Move|3,93 +Move|7,321 +Move|10,313 +Move|14,3 +Move|16,60 +Move|19,373 +Move|24,185 +Move|25,473 +Move|28,260 +Move|31,248 +Move|34,377 +Move|39,94 +Move|43,477 +Move|50,204 +Move|53,478 +TradeValue|45 +Item|50,2007 +EvolutionCondition|576,level,41,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/576.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/576.dat index 2f4b3ce7c..9788c8a9e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/576.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/576.dat @@ -1 +1,58 @@ -{"Name":"Gothitelle","Number":576,"ExperienceType":"MediumSlow","BaseExperience":221,"Type1":"Psychic","Type2":"Blank","CatchRate":50,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":574,"Devolution":575,"CanBreed":true,"IsGenderless":false,"IsMale":25,"Abilities":[119,172],"HiddenAbility":23,"EggMoves":[445,399,505,212,357,243,253],"Machines":[174,92,192,244,237,230,173,63,182,240,203,218,216,94,247,104,207,214,138,197,156,213,168,171,5,25,34,36,38,99,85,100,102,115,117,118,86,149,157,161,164,264,352,347,269,113,219,280,317,259,263,290,285,289,412,374,451,373,371,278,416,445,363,447,433,473,477,490,496,612,590,148],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":55,"Def":95,"SpAtk":95,"SpDef":110,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can see the future from the movement of the stars. When it learns its Trainer's life span, it cries in sadness.","Species":"Astral Body Pokémon","Height":1.5,"Weight":44,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":60,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":93},{"Level":3,"ID":321},{"Level":4,"ID":589},{"Level":5,"ID":93},{"Level":7,"ID":321},{"Level":10,"ID":313},{"Level":14,"ID":3},{"Level":16,"ID":60},{"Level":19,"ID":373},{"Level":24,"ID":185},{"Level":25,"ID":473},{"Level":28,"ID":260},{"Level":31,"ID":248},{"Level":34,"ID":377},{"Level":39,"ID":94},{"Level":45,"ID":1},{"Level":54,"ID":204},{"Level":59,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Gothitelle +Number|576 +ExperienceType|2 +BaseExperience|221 +Type1|Psychic +Type2| +CatchRate|50 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|574 +IsGenderLess|0 +CanBreed|1 +Devolution|575 +IsMale|25 +Ability1|119 +Ability2|172 +HiddenAbility|23 +EggMoves|445,399,505,212,357,243,253 +Machines|174,92,192,244,237,230,173,63,182,240,203,218,216,94,247,104,207,214,138,197,156,213,168,171,5,25,34,36,38,99,85,100,102,115,117,118,86,149,157,161,164,264,352,347,269,113,219,280,317,259,263,290,285,289,412,374,451,373,371,278,416,445,363,447,433,473,477,490,496,612,590,148 +BaseHP|70 +BaseAttack|55 +BaseDefense|95 +BaseSpAttack|95 +BaseSpDefense|110 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can see the future from the movement of the stars. When it learns its Trainer's life span, it cries in sadness.\Astral Body Pokémon\44\1.5\0,148,0 +Scale|1.2 +Move|1,1 +Move|1,93 +Move|1,321 +Move|1,589 +Move|3,93 +Move|7,321 +Move|10,313 +Move|14,3 +Move|16,60 +Move|19,373 +Move|24,185 +Move|25,473 +Move|28,260 +Move|31,248 +Move|34,377 +Move|39,94 +Move|45,477 +Move|54,204 +Move|59,478 +TradeValue|60 +Item|50,2007 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/577.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/577.dat index fb129087b..17d040675 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/577.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/577.dat @@ -1 +1,56 @@ -{"Name":"Solosis","Number":577,"ExperienceType":"MediumSlow","BaseExperience":58,"Type1":"Psychic","Type2":"Blank","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":577,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[142,98],"HiddenAbility":144,"EggMoves":[151,310,109,270,286,101,290,271],"Machines":[174,205,92,192,244,237,173,63,182,240,203,218,87,216,94,247,104,207,214,111,138,197,156,213,171,99,100,102,115,117,120,86,149,153,157,161,164,347,113,219,317,263,290,285,289,412,373,416,360,445,363,430,433,473,477,496,611,590,148],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":30,"Def":40,"SpAtk":105,"SpDef":50,"Speed":20},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Because their bodies are enveloped in a special liquid, they are fine in any environment, no matter how severe.","Species":"Cell Pokémon","Height":0.3,"Weight":1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":149},{"Level":3,"ID":115},{"Level":7,"ID":205},{"Level":10,"ID":289},{"Level":14,"ID":237},{"Level":16,"ID":113},{"Level":19,"ID":204},{"Level":24,"ID":105},{"Level":25,"ID":473},{"Level":28,"ID":283},{"Level":31,"ID":248},{"Level":33,"ID":220},{"Level":37,"ID":94},{"Level":40,"ID":285},{"Level":46,"ID":377},{"Level":48,"ID":1}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":578,"Trigger":"LevelUp"}],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Solosis +Number|577 +ExperienceType|2 +BaseExperience|58 +Type1|Psychic +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|577 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|142 +Ability2|98 +HiddenAbility|144 +EggMoves|151,310,109,270,286,101,290,271 +Machines|174,205,92,192,244,237,173,63,182,240,203,218,87,216,94,247,104,207,214,111,138,197,156,213,171,99,100,102,115,117,120,86,149,153,157,161,164,347,113,219,317,263,290,285,289,412,373,416,360,445,363,430,433,473,477,496,611,590,148 +BaseHP|45 +BaseAttack|30 +BaseDefense|40 +BaseSpAttack|105 +BaseSpDefense|50 +BaseSpeed|20 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Because their bodies are enveloped in a special liquid, they are fine in any environment, no matter how severe.\Cell Pokémon\1\0.3\0,148,0 +Scale|0.7 +Move|1,149 +Move|3,115 +Move|7,205 +Move|10,289 +Move|14,237 +Move|16,113 +Move|19,204 +Move|24,105 +Move|25,473 +Move|28,283 +Move|31,248 +Move|33,220 +Move|37,94 +Move|40,285 +Move|46,377 +Move|48,472 +TradeValue|25 +Item|50,2007 +EvolutionCondition|578,level,32,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/578.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/578.dat index 1f7dcf13c..dbd12a6f5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/578.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/578.dat @@ -1 +1,59 @@ -{"Name":"Duosion","Number":578,"ExperienceType":"MediumSlow","BaseExperience":130,"Type1":"Psychic","Type2":"Blank","CatchRate":100,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":577,"Devolution":577,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[142,98],"HiddenAbility":144,"EggMoves":[151,310,109,270,286,101,290,271],"Machines":[174,205,92,192,244,237,173,63,182,240,203,218,87,216,94,247,104,207,214,111,138,197,156,213,171,34,99,100,102,115,117,120,86,149,153,157,161,164,347,113,219,351,317,263,290,285,289,412,373,416,360,445,363,430,433,473,477,496,611,590,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":40,"Def":50,"SpAtk":125,"SpDef":60,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When their two divided brains think the same thoughts, their psychic power is maximized.","Species":"Mitosis Pokémon","Height":0.6,"Weight":8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":45,"Moves":[{"Level":1,"ID":149},{"Level":2,"ID":115},{"Level":3,"ID":205},{"Level":4,"ID":289},{"Level":5,"ID":115},{"Level":7,"ID":205},{"Level":10,"ID":289},{"Level":14,"ID":237},{"Level":16,"ID":113},{"Level":19,"ID":204},{"Level":24,"ID":105},{"Level":25,"ID":473},{"Level":28,"ID":283},{"Level":31,"ID":248},{"Level":34,"ID":220},{"Level":39,"ID":94},{"Level":43,"ID":285},{"Level":50,"ID":377},{"Level":53,"ID":1}],"EvolutionConditions":[{"Condition":"41","ConditionType":"Level","Evolution":579,"Trigger":"LevelUp"}],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Duosion +Number|578 +ExperienceType|2 +BaseExperience|130 +Type1|Psychic +Type2| +CatchRate|100 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|577 +IsGenderLess|0 +CanBreed|1 +Devolution|577 +IsMale|50 +Ability1|142 +Ability2|98 +HiddenAbility|144 +EggMoves|151,310,109,270,286,101,290,271 +Machines|174,205,92,192,244,237,173,63,182,240,203,218,87,216,94,247,104,207,214,111,138,197,156,213,171,34,99,100,102,115,117,120,86,149,153,157,161,164,347,113,219,351,317,263,290,285,289,412,373,416,360,445,363,430,433,473,477,496,611,590,148 +BaseHP|65 +BaseAttack|40 +BaseDefense|50 +BaseSpAttack|125 +BaseSpDefense|60 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When their two divided brains think the same thoughts, their psychic power is maximized.\Mitosis Pokémon\8\0.6\0,148,0 +Scale|0.84 +Move|1,149 +Move|1,115 +Move|1,205 +Move|1,289 +Move|3,115 +Move|7,205 +Move|10,289 +Move|14,237 +Move|16,113 +Move|19,204 +Move|24,105 +Move|25,473 +Move|28,283 +Move|31,248 +Move|34,220 +Move|39,94 +Move|43,285 +Move|50,377 +Move|53,472 +TradeValue|45 +Item|50,2007 +EvolutionCondition|579,level,41,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/579.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/579.dat index 579d7f81c..ff313859d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/579.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/579.dat @@ -1 +1,59 @@ -{"Name":"Reuniclus","Number":579,"ExperienceType":"MediumSlow","BaseExperience":221,"Type1":"Psychic","Type2":"Blank","CatchRate":50,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":577,"Devolution":578,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[142,98],"HiddenAbility":144,"EggMoves":[151,310,109,270,286,101,290,271],"Machines":[174,205,92,192,249,244,237,173,63,182,240,203,218,87,216,94,247,104,8,207,214,111,9,138,197,156,213,7,171,34,36,66,69,99,100,102,115,117,118,120,86,149,153,157,161,164,352,347,113,219,351,317,263,290,285,289,411,412,374,409,373,416,360,445,363,447,430,433,473,477,496,611,612,590,70,148,431],"TutorMoves":[],"BaseStats":{"HP":110,"Atk":65,"Def":75,"SpAtk":125,"SpDef":85,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They use psychic power to control their arms, which are made of a special liquid. They can crush boulders physically.","Species":"Multiplying Pokémon","Height":1,"Weight":20.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":60,"Moves":[{"Level":1,"ID":149},{"Level":2,"ID":115},{"Level":3,"ID":205},{"Level":4,"ID":289},{"Level":5,"ID":115},{"Level":7,"ID":205},{"Level":10,"ID":289},{"Level":14,"ID":237},{"Level":16,"ID":113},{"Level":19,"ID":204},{"Level":24,"ID":105},{"Level":25,"ID":473},{"Level":28,"ID":283},{"Level":31,"ID":248},{"Level":34,"ID":220},{"Level":39,"ID":94},{"Level":41,"ID":146},{"Level":45,"ID":285},{"Level":54,"ID":377},{"Level":59,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":2007,"Chance":50}]} \ No newline at end of file +Name|Reuniclus +Number|579 +ExperienceType|2 +BaseExperience|221 +Type1|Psychic +Type2| +CatchRate|50 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|577 +IsGenderLess|0 +CanBreed|1 +Devolution|578 +IsMale|50 +Ability1|142 +Ability2|98 +HiddenAbility|144 +EggMoves|151,310,109,270,286,101,290,271 +Machines|174,205,92,192,249,244,237,173,63,182,240,203,218,87,216,94,247,104,8,207,214,111,9,138,197,156,213,7,171,34,36,66,69,99,100,102,115,117,118,120,86,149,153,157,161,164,352,347,113,219,351,317,263,290,285,289,411,412,374,409,373,416,360,445,363,447,430,433,473,477,496,611,612,590,70,148,431 +BaseHP|110 +BaseAttack|65 +BaseDefense|75 +BaseSpAttack|125 +BaseSpDefense|85 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They use psychic power to control their arms, which are made of a special liquid. They can crush boulders physically.\Multiplying Pokémon\20.1\1\0,148,0 +Scale|1 +Move|1,149 +Move|1,115 +Move|1,205 +Move|1,289 +Move|3,115 +Move|7,205 +Move|10,289 +Move|14,237 +Move|16,113 +Move|19,204 +Move|24,105 +Move|25,473 +Move|28,283 +Move|31,248 +Move|34,220 +Move|39,94 +Move|41,146 +Move|45,285 +Move|54,377 +Move|59,472 +TradeValue|60 +Item|50,2007 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/58.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/58.dat index c8c53198a..8130b1705 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/58.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/58.dat @@ -1 +1,56 @@ -{"Name":"Growlithe","Number":58,"ExperienceType":"Slow","BaseExperience":70,"Type1":"Fire","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":58,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[22,18],"HiddenAbility":154,"EggMoves":[34,370,343,242,38,24,83,394,257,336,231,234,37,219],"Machines":[29,174,46,92,249,237,241,173,63,182,203,218,231,225,216,91,104,207,214,126,129,197,156,213,168,25,34,36,99,82,102,117,130,164,219,53,332,263,290,315,261,416,445,363,488,496,510,514,528,555,590,70,560],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":70,"Def":45,"SpAtk":70,"SpDef":50,"Speed":60},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has a brave and trustworthy nature. It fearlessly stands up to bigger and stronger foes.","Species":"Puppy Pokémon","Height":0.7,"Weight":19,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":15,"Moves":[{"Level":1,"ID":44},{"Level":2,"ID":46},{"Level":6,"ID":52},{"Level":8,"ID":43},{"Level":10,"ID":316},{"Level":12,"ID":1},{"Level":17,"ID":172},{"Level":19,"ID":179},{"Level":21,"ID":424},{"Level":23,"ID":36},{"Level":28,"ID":481},{"Level":30,"ID":97},{"Level":32,"ID":1},{"Level":34,"ID":53},{"Level":39,"ID":242},{"Level":41,"ID":257},{"Level":43,"ID":200},{"Level":45,"ID":394}],"EvolutionConditions":[{"Condition":"22","ConditionType":"Item","Evolution":59,"Trigger":"ItemUse"}],"Items":[{"Id":2003,"Chance":100}]} \ No newline at end of file +Name|Growlithe +Number|58 +ExperienceType|3 +BaseExperience|70 +Type1|Fire +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|58 +IsGenderLess|0 +IsMale|75 +Ability1|22 +Ability2|18 +HiddenAbility|154 +EggMoves|34,370,343,242,38,24,83,394,257,336,231,234,37,219 +Machines|29,174,46,92,249,237,241,173,63,182,203,218,231,225,216,91,104,207,214,126,129,197,156,213,168,25,34,36,99,82,102,117,130,164,219,53,332,263,290,315,261,416,445,363,488,496,510,514,528,555,590,70,560 +BaseHP|55 +BaseAttack|70 +BaseDefense|45 +BaseSpAttack|70 +BaseSpDefense|50 +BaseSpeed|60 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has a brave and trustworthy nature. It fearlessly stands up to bigger and stronger foes.\Puppy Pokémon\19\0.7\0,148,0 +Scale|0.88 +Move|1,44 +Move|1,46 +Move|6,52 +Move|8,43 +Move|10,316 +Move|12,270 +Move|17,172 +Move|19,179 +Move|21,424 +Move|23,36 +Move|28,481 +Move|30,97 +Move|32,514 +Move|34,53 +Move|39,242 +Move|41,257 +Move|43,200 +Move|45,394 +EvolutionCondition|59,item,22,item +Item|100,2003 +TradeValue|15 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/580.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/580.dat index 794a564ca..ff4bfdcb1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/580.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/580.dat @@ -1 +1,54 @@ -{"Name":"Ducklett","Number":580,"ExperienceType":"MediumFast","BaseExperience":61,"Type1":"Water","Type2":"Flying","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Flying","BaseEggSteps":5355,"EggPokemon":580,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51,145],"HiddenAbility":93,"EggMoves":[314,362,16,381,382,119,300,211],"Machines":[174,92,237,173,63,196,182,240,203,218,216,104,207,214,197,156,213,211,13,18,36,61,55,58,99,102,117,164,352,258,332,263,290,355,362,416,432,419,445,363,365,496,503,590,19,57,250,291],"TutorMoves":[],"BaseStats":{"HP":62,"Atk":44,"Def":50,"SpAtk":44,"SpDef":50,"Speed":55},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They are better at swimming than flying, and they happily eat their favorite food, peat moss, as they dive underwater.","Species":"Water Bird Pokémon","Height":0.5,"Weight":5.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":55},{"Level":3,"ID":346},{"Level":6,"ID":432},{"Level":9,"ID":17},{"Level":13,"ID":352},{"Level":15,"ID":332},{"Level":19,"ID":61},{"Level":21,"ID":297},{"Level":24,"ID":392},{"Level":27,"ID":403},{"Level":30,"ID":355},{"Level":34,"ID":240},{"Level":37,"ID":366},{"Level":41,"ID":413},{"Level":46,"ID":542}],"EvolutionConditions":[{"Condition":"35","ConditionType":"Level","Evolution":581,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Ducklett +Number|580 +ExperienceType|1 +BaseExperience|61 +Type1|Water +Type2|Flying +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Flying +BaseEggSteps|5355 +EggPokemon|580 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|51 +Ability2|145 +HiddenAbility|93 +EggMoves|314,362,16,381,382,119,300,211 +Machines|174,92,237,173,63,196,182,240,203,218,216,104,207,214,197,156,213,211,13,18,36,61,55,58,99,102,117,164,352,258,332,263,290,355,362,416,432,419,445,363,365,496,503,590,19,57,250,291 +BaseHP|62 +BaseAttack|44 +BaseDefense|50 +BaseSpAttack|44 +BaseSpDefense|50 +BaseSpeed|55 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They are better at swimming than flying, and they happily eat their favorite food, peat moss, as they dive underwater.\Water Bird Pokémon\5.5\0.5\0,148,0 +Scale|0.7 +Move|1,55 +Move|3,346 +Move|6,432 +Move|9,17 +Move|13,352 +Move|15,332 +Move|19,61 +Move|21,297 +Move|24,392 +Move|27,403 +Move|30,355 +Move|34,240 +Move|37,366 +Move|41,413 +Move|46,542 +TradeValue|20 +EvolutionCondition|581,Level,35,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/581.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/581.dat index 33bb22974..368c99032 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/581.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/581.dat @@ -1 +1,56 @@ -{"Name":"Swanna","Number":581,"ExperienceType":"MediumFast","BaseExperience":166,"Type1":"Water","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Flying","BaseEggSteps":5355,"EggPokemon":580,"Devolution":580,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51,145],"HiddenAbility":93,"EggMoves":[314,362,16,381,382,119,300,211],"Machines":[174,92,237,173,63,196,182,240,203,218,216,104,207,214,197,156,213,211,13,18,36,61,55,58,99,102,117,143,164,352,258,332,263,290,355,362,416,432,419,445,363,365,496,503,590,19,57,250,291],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":87,"Def":63,"SpAtk":87,"SpDef":63,"Speed":98},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Despite their elegant appearance, they can flap their wings strongly and fly for thousands of miles.","Species":"White Bird Pokémon","Height":1.3,"Weight":24.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":45,"Moves":[{"Level":1,"ID":55},{"Level":2,"ID":346},{"Level":3,"ID":432},{"Level":4,"ID":17},{"Level":5,"ID":346},{"Level":6,"ID":432},{"Level":9,"ID":17},{"Level":13,"ID":352},{"Level":15,"ID":332},{"Level":19,"ID":61},{"Level":21,"ID":297},{"Level":24,"ID":392},{"Level":27,"ID":403},{"Level":30,"ID":355},{"Level":34,"ID":240},{"Level":40,"ID":366},{"Level":47,"ID":413},{"Level":55,"ID":542}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Swanna +Number|581 +ExperienceType|1 +BaseExperience|166 +Type1|Water +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Flying +BaseEggSteps|5355 +EggPokemon|580 +IsGenderLess|0 +CanBreed|1 +Devolution|580 +IsMale|50 +Ability1|51 +Ability2|145 +HiddenAbility|93 +EggMoves|314,362,16,381,382,119,300,211 +Machines|174,92,237,173,63,196,182,240,203,218,216,104,207,214,197,156,213,211,13,18,36,61,55,58,99,102,117,143,164,352,258,332,263,290,355,362,416,432,419,445,363,365,496,503,590,19,57,250,291 +BaseHP|75 +BaseAttack|87 +BaseDefense|63 +BaseSpAttack|87 +BaseSpDefense|63 +BaseSpeed|98 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|Despite their elegant appearance, they can flap their wings strongly and fly for thousands of miles.\White Bird Pokémon\24.2\1.3\0,148,0 +Scale|1.12 +Move|1,55 +Move|1,346 +Move|1,432 +Move|1,17 +Move|3,346 +Move|6,432 +Move|9,17 +Move|13,352 +Move|15,332 +Move|19,61 +Move|21,297 +Move|24,392 +Move|27,403 +Move|30,355 +Move|34,240 +Move|40,366 +Move|47,413 +Move|55,542 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/582.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/582.dat index 5afca4d09..1cc351cd6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/582.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/582.dat @@ -1 +1,54 @@ -{"Name":"Vanillite","Number":582,"ExperienceType":"Slow","BaseExperience":61,"Type1":"Ice","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":582,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[115],"HiddenAbility":133,"EggMoves":[475,420,334,286,393,363,181,352],"Machines":[174,92,237,173,59,63,196,182,203,218,216,104,207,214,197,156,213,36,58,99,102,117,153,164,352,258,269,113,263,290,416,419,445,363,430,496,524,590],"TutorMoves":[],"BaseStats":{"HP":36,"Atk":50,"Def":50,"SpAtk":65,"SpDef":60,"Speed":44},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Theoretically, this Pokémon formed from icicles bathed in energy from the morning sun. Their breath is -58 F.","Species":"Fresh Snow Pokémon","Height":0.4,"Weight":5.7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":30,"Moves":[{"Level":1,"ID":333},{"Level":4,"ID":106},{"Level":7,"ID":310},{"Level":10,"ID":253},{"Level":13,"ID":196},{"Level":16,"ID":54},{"Level":19,"ID":1},{"Level":22,"ID":269},{"Level":26,"ID":429},{"Level":31,"ID":151},{"Level":35,"ID":58},{"Level":40,"ID":258},{"Level":44,"ID":243},{"Level":49,"ID":59},{"Level":53,"ID":329}],"EvolutionConditions":[{"Condition":"35","ConditionType":"Level","Evolution":583,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Vanillite +Number|582 +ExperienceType|3 +BaseExperience|61 +Type1|Ice +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|582 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|115 +Ability2|Nothing +HiddenAbility|133 +EggMoves|475,420,334,286,393,363,181,352 +Machines|174,92,237,173,59,63,196,182,203,218,216,104,207,214,197,156,213,36,58,99,102,117,153,164,352,258,269,113,263,290,416,419,445,363,430,496,524,590 +BaseHP|36 +BaseAttack|50 +BaseDefense|50 +BaseSpAttack|65 +BaseSpDefense|60 +BaseSpeed|44 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Theoretically, this Pokémon formed from icicles bathed in energy from the morning sun. Their breath is -58 F.\Fresh Snow Pokémon\5.7\0.4\0,148,0 +Scale|0.7 +Move|1,333 +Move|4,106 +Move|7,310 +Move|10,253 +Move|13,196 +Move|16,54 +Move|19,419 +Move|22,269 +Move|26,429 +Move|31,151 +Move|35,58 +Move|40,258 +Move|44,243 +Move|49,59 +Move|53,329 +TradeValue|30 +EvolutionCondition|583,level,35,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/583.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/583.dat index 970178b18..cb6ba7866 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/583.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/583.dat @@ -1 +1,57 @@ -{"Name":"Vanillish","Number":583,"ExperienceType":"Slow","BaseExperience":138,"Type1":"Ice","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":582,"Devolution":582,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[115],"HiddenAbility":133,"EggMoves":[475,420,334,286,393,363,181,352],"Machines":[174,92,237,173,59,63,196,182,203,218,216,104,207,214,197,156,213,36,58,99,102,117,153,164,352,258,269,113,263,290,416,419,445,363,430,496,524,590],"TutorMoves":[],"BaseStats":{"HP":51,"Atk":65,"Def":65,"SpAtk":80,"SpDef":75,"Speed":59},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They cool down the surrounding air and create ice particles, which they use to freeze their foes.","Species":"Icy Snow Pokémon","Height":1.1,"Weight":41,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":45,"Moves":[{"Level":1,"ID":333},{"Level":2,"ID":106},{"Level":3,"ID":310},{"Level":4,"ID":253},{"Level":5,"ID":106},{"Level":7,"ID":310},{"Level":10,"ID":253},{"Level":13,"ID":196},{"Level":16,"ID":54},{"Level":19,"ID":1},{"Level":22,"ID":269},{"Level":26,"ID":429},{"Level":31,"ID":151},{"Level":36,"ID":58},{"Level":42,"ID":258},{"Level":47,"ID":243},{"Level":53,"ID":59},{"Level":58,"ID":329}],"EvolutionConditions":[{"Condition":"47","ConditionType":"Level","Evolution":584,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Vanillish +Number|583 +ExperienceType|3 +BaseExperience|138 +Type1|Ice +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|582 +IsGenderLess|0 +CanBreed|1 +Devolution|582 +IsMale|50 +Ability1|115 +Ability2|Nothing +HiddenAbility|133 +EggMoves|475,420,334,286,393,363,181,352 +Machines|174,92,237,173,59,63,196,182,203,218,216,104,207,214,197,156,213,36,58,99,102,117,153,164,352,258,269,113,263,290,416,419,445,363,430,496,524,590 +BaseHP|51 +BaseAttack|65 +BaseDefense|65 +BaseSpAttack|80 +BaseSpDefense|75 +BaseSpeed|59 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They cool down the surrounding air and create ice particles, which they use to freeze their foes.\Icy Snow Pokémon\41\1.1\0,148,0 +Scale|1.04 +Move|1,333 +Move|1,106 +Move|1,310 +Move|1,253 +Move|4,106 +Move|7,310 +Move|10,253 +Move|13,196 +Move|16,54 +Move|19,419 +Move|22,269 +Move|26,429 +Move|31,151 +Move|36,58 +Move|42,258 +Move|47,243 +Move|53,59 +Move|58,329 +TradeValue|45 +EvolutionCondition|584,level,47,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/584.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/584.dat index 830b66b1f..b7b2fbc3d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/584.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/584.dat @@ -1 +1,59 @@ -{"Name":"Vanilluxe","Number":584,"ExperienceType":"Slow","BaseExperience":241,"Type1":"Ice","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":582,"Devolution":583,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[115],"HiddenAbility":133,"EggMoves":[475,420,334,286,393,363,181,352],"Machines":[174,92,237,173,59,63,196,182,203,218,216,104,207,214,197,156,213,34,36,38,58,99,102,117,153,164,352,258,269,113,263,290,416,419,445,363,430,496,524,590],"TutorMoves":[],"BaseStats":{"HP":71,"Atk":95,"Def":85,"SpAtk":110,"SpDef":95,"Speed":79},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Swallowing large amounts of water, they make snow clouds inside their bodies and, when angry, cause violent blizzards.","Species":"Snowstorm Pokémon","Height":1.3,"Weight":57.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":70,"Moves":[{"Level":1,"ID":329},{"Level":2,"ID":1},{"Level":3,"ID":311},{"Level":4,"ID":333},{"Level":5,"ID":106},{"Level":6,"ID":310},{"Level":7,"ID":253},{"Level":8,"ID":106},{"Level":9,"ID":310},{"Level":10,"ID":253},{"Level":13,"ID":196},{"Level":16,"ID":54},{"Level":19,"ID":1},{"Level":22,"ID":269},{"Level":26,"ID":429},{"Level":31,"ID":151},{"Level":36,"ID":58},{"Level":42,"ID":258},{"Level":50,"ID":243},{"Level":59,"ID":59},{"Level":67,"ID":329}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Vanilluxe +Number|584 +ExperienceType|3 +BaseExperience|241 +Type1|Ice +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|582 +IsGenderLess|0 +CanBreed|1 +Devolution|583 +IsMale|50 +Ability1|115 +Ability2|Nothing +HiddenAbility|133 +EggMoves|475,420,334,286,393,363,181,352 +Machines|174,92,237,173,59,63,196,182,203,218,216,104,207,214,197,156,213,34,36,38,58,99,102,117,153,164,352,258,269,113,263,290,416,419,445,363,430,496,524,590 +BaseHP|71 +BaseAttack|95 +BaseDefense|85 +BaseSpAttack|110 +BaseSpDefense|95 +BaseSpeed|79 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Swallowing large amounts of water, they make snow clouds inside their bodies and, when angry, cause violent blizzards.\Snowstorm Pokémon\57.5\1.3\0,148,0 +Scale|1.12 +Move|1,329 +Move|1,573 +Move|1,311 +Move|1,333 +Move|1,106 +Move|1,310 +Move|1,253 +Move|4,106 +Move|7,310 +Move|10,253 +Move|13,196 +Move|16,54 +Move|19,419 +Move|22,269 +Move|26,429 +Move|31,151 +Move|36,58 +Move|42,258 +Move|50,243 +Move|59,59 +Move|67,329 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/585.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/585.dat index cf8cf1ec0..4c5ce2cef 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/585.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/585.dat @@ -1 +1,53 @@ -{"Name":"Deerling","Number":585,"ExperienceType":"MediumFast","BaseExperience":67,"Type1":"Normal","Type2":"Grass","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":585,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,157],"HiddenAbility":32,"EggMoves":[97,226,313,320,363,316,214,235,388],"Machines":[174,92,237,173,63,182,202,203,218,76,216,189,104,207,214,129,197,156,213,25,34,36,99,72,102,117,130,164,331,263,290,412,416,445,363,496,526,267,590,148,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":60,"Def":50,"SpAtk":40,"SpDef":50,"Speed":75},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Their colouring changes according to the seasons and can be slightly affected by the temperature and humidity as well.","Species":"Season Pokémon","Height":0.6,"Weight":19.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":30,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":1},{"Level":4,"ID":45},{"Level":10,"ID":24},{"Level":13,"ID":73},{"Level":16,"ID":185},{"Level":20,"ID":36},{"Level":24,"ID":26},{"Level":28,"ID":312},{"Level":32,"ID":412},{"Level":36,"ID":204},{"Level":41,"ID":267},{"Level":46,"ID":38},{"Level":51,"ID":76}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Level","Evolution":586,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Deerling +Number|585 +ExperienceType|1 +BaseExperience|67 +Type1|Normal +Type2|Grass +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|585 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|34 +Ability2|157 +HiddenAbility|32 +EggMoves|97,226,313,320,363,316,214,235,388 +Machines|174,92,237,173,63,182,202,203,218,76,216,189,104,207,214,129,197,156,213,25,34,36,99,72,102,117,130,164,331,263,290,412,416,445,363,496,526,267,590,148,560 +BaseHP|60 +BaseAttack|60 +BaseDefense|50 +BaseSpAttack|40 +BaseSpDefense|50 +BaseSpeed|75 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Their colouring changes according to the seasons and can be slightly affected by the temperature and humidity as well.\Season Pokémon\19.5\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|1,293 +Move|4,45 +Move|10,24 +Move|13,73 +Move|16,185 +Move|20,36 +Move|24,26 +Move|28,312 +Move|32,412 +Move|36,204 +Move|41,267 +Move|46,38 +Move|51,76 +TradeValue|30 +EvolutionCondition|586,level,34,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/586.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/586.dat index b1ccf029b..2637d102f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/586.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/586.dat @@ -1 +1,57 @@ -{"Name":"Sawsbuck","Number":586,"ExperienceType":"MediumFast","BaseExperience":166,"Type1":"Normal","Type2":"Grass","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":585,"Devolution":585,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34,157],"HiddenAbility":32,"EggMoves":[97,226,313,320,363,316,214,235,388],"Machines":[174,92,249,237,241,173,63,182,202,203,218,76,216,247,189,104,207,214,129,197,156,213,14,25,32,34,36,38,68,99,72,102,117,130,86,164,331,113,219,263,290,412,416,445,363,447,496,497,514,526,528,267,590,15,148,431,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":100,"Def":70,"SpAtk":60,"SpDef":70,"Speed":95},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They migrate according to the seasons, so some people call Sawsbuck the harbingers of spring.","Species":"Season Pokémon","Height":1.9,"Weight":92.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":45,"Moves":[{"Level":1,"ID":224},{"Level":2,"ID":33},{"Level":3,"ID":1},{"Level":4,"ID":45},{"Level":5,"ID":28},{"Level":6,"ID":45},{"Level":7,"ID":28},{"Level":10,"ID":24},{"Level":13,"ID":73},{"Level":16,"ID":185},{"Level":20,"ID":36},{"Level":24,"ID":26},{"Level":28,"ID":312},{"Level":32,"ID":412},{"Level":36,"ID":204},{"Level":37,"ID":532},{"Level":44,"ID":267},{"Level":52,"ID":38},{"Level":60,"ID":76}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Sawsbuck +Number|586 +ExperienceType|1 +BaseExperience|166 +Type1|Normal +Type2|Grass +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|585 +IsGenderLess|0 +CanBreed|1 +Devolution|585 +IsMale|50 +Ability1|34 +Ability2|157 +HiddenAbility|32 +EggMoves|97,226,313,320,363,316,214,235,388 +Machines|174,92,249,237,241,173,63,182,202,203,218,76,216,247,189,104,207,214,129,197,156,213,14,25,32,34,36,38,68,99,72,102,117,130,86,164,331,113,219,263,290,412,416,445,363,447,496,497,514,526,528,267,590,15,148,431,560 +BaseHP|80 +BaseAttack|100 +BaseDefense|70 +BaseSpAttack|60 +BaseSpDefense|70 +BaseSpeed|95 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They migrate according to the seasons, so some people call Sawsbuck the harbingers of spring.\Season Pokémon\92.5\1.9\0,148,0 +Scale|1.36 +Move|1,224 +Move|1,33 +Move|1,293 +Move|1,45 +Move|1,28 +Move|4,45 +Move|7,28 +Move|10,24 +Move|13,73 +Move|16,185 +Move|20,36 +Move|24,26 +Move|28,312 +Move|32,412 +Move|36,204 +Move|37,532 +Move|44,267 +Move|52,38 +Move|60,76 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/587.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/587.dat index 013eb2987..3a64f6256 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/587.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/587.dat @@ -1 +1,55 @@ -{"Name":"Emolga","Number":587,"ExperienceType":"MediumFast","BaseExperience":150,"Type1":"Electric","Type2":"Flying","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":587,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[9],"HiddenAbility":78,"EggMoves":[403,310,226,204,343,569,231,355,351,321],"Machines":[174,92,192,237,173,63,182,240,203,218,231,87,216,104,207,214,197,156,213,13,18,36,6,99,85,102,117,130,86,164,269,113,351,332,263,290,355,374,451,416,432,445,363,369,496,512,521,528,590,148],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":75,"Def":60,"SpAtk":75,"SpDef":60,"Speed":103},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It glides on its outstretched membrane while shocking foes with the electricty stored in the pounches on its cheeks.","Species":"Sky Squirrel Pokémon","Height":0.4,"Weight":5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":84},{"Level":4,"ID":98},{"Level":7,"ID":39},{"Level":10,"ID":268},{"Level":13,"ID":209},{"Level":15,"ID":609},{"Level":16,"ID":228},{"Level":19,"ID":104},{"Level":22,"ID":351},{"Level":26,"ID":486},{"Level":30,"ID":512},{"Level":34,"ID":113},{"Level":38,"ID":227},{"Level":42,"ID":1},{"Level":46,"ID":97},{"Level":50,"ID":435}],"EvolutionConditions":[],"Items":[{"Id":2001,"Chance":100}]} \ No newline at end of file +Name|Emolga +Number|587 +ExperienceType|1 +BaseExperience|150 +Type1|Electric +Type2|Flying +CatchRate|200 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|587 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|9 +Ability2|Nothing +HiddenAbility|78 +EggMoves|403,310,226,204,343,569,231,355,351,321 +Machines|174,92,192,237,173,63,182,240,203,218,231,87,216,104,207,214,197,156,213,13,18,36,6,99,85,102,117,130,86,164,269,113,351,332,263,290,355,374,451,416,432,445,363,369,496,512,521,528,590,148 +BaseHP|55 +BaseAttack|75 +BaseDefense|60 +BaseSpAttack|75 +BaseSpDefense|60 +BaseSpeed|103 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It glides on its outstretched membrane while shocking foes with the electricty stored in the pounches on its cheeks.\Sky Squirrel Pokémon\5\0.4\0,148,0 +Scale|0.7 +Move|1,84 +Move|4,98 +Move|7,39 +Move|10,268 +Move|13,209 +Move|15,609 +Move|16,228 +Move|19,104 +Move|22,351 +Move|26,486 +Move|30,512 +Move|34,113 +Move|38,227 +Move|42,521 +Move|46,97 +Move|50,435 +TradeValue|35 +Item|100,2001 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/588.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/588.dat index 7c42e58b2..d9b2e360f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/588.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/588.dat @@ -1 +1,54 @@ -{"Name":"Karrablast","Number":588,"ExperienceType":"MediumFast","BaseExperience":63,"Type1":"Bug","Type2":"Blank","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":588,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,61],"HiddenAbility":99,"EggMoves":[450,68,529,185,30,282,224,228,103],"Machines":[29,174,92,237,173,63,182,240,202,203,218,216,104,207,214,197,156,213,210,14,32,36,99,72,102,117,120,130,164,332,263,290,412,206,416,445,404,363,398,496,522,611,590,15],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":75,"Def":45,"SpAtk":40,"SpDef":45,"Speed":60},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"For some reason they evolve when they receive electrical energy while they are attacking Shelmet.","Species":"Clamping Pokémon","Height":0.5,"Weight":5.9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":64},{"Level":4,"ID":43},{"Level":8,"ID":203},{"Level":13,"ID":210},{"Level":16,"ID":31},{"Level":20,"ID":29},{"Level":25,"ID":206},{"Level":28,"ID":405},{"Level":32,"ID":163},{"Level":37,"ID":36},{"Level":40,"ID":184},{"Level":44,"ID":404},{"Level":49,"ID":175},{"Level":52,"ID":14},{"Level":56,"ID":38}],"EvolutionConditions":[{"Condition":"616","ConditionType":"Trade","Evolution":589,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Karrablast +Number|588 +ExperienceType|1 +BaseExperience|63 +Type1|Bug +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|588 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|68 +Ability2|61 +HiddenAbility|99 +EggMoves|450,68,529,185,30,282,224,228,103 +Machines|29,174,92,237,173,63,182,240,202,203,218,216,104,207,214,197,156,213,210,14,32,36,99,72,102,117,120,130,164,332,263,290,412,206,416,445,404,363,398,496,522,611,590,15 +BaseHP|50 +BaseAttack|75 +BaseDefense|45 +BaseSpAttack|40 +BaseSpDefense|45 +BaseSpeed|60 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|For some reason they evolve when they receive electrical energy while they are attacking Shelmet.\Clamping Pokémon\5.9\0.5\0,148,0 +Scale|0.7 +Move|1,64 +Move|4,43 +Move|8,203 +Move|13,210 +Move|16,31 +Move|20,29 +Move|25,206 +Move|28,405 +Move|32,163 +Move|37,36 +Move|40,184 +Move|44,404 +Move|49,175 +Move|52,14 +Move|56,38 +TradeValue|20 +EvolutionCondition|589,trade,616,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/589.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/589.dat index 7725a6e5f..6942c7ccb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/589.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/589.dat @@ -1 +1,59 @@ -{"Name":"Escavalier","Number":589,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Bug","Type2":"Steel","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":588,"Devolution":588,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,75],"HiddenAbility":142,"EggMoves":[450,68,529,185,30,282,224,228,103],"Machines":[29,174,92,192,249,237,173,63,182,240,202,203,218,216,104,207,214,197,156,213,210,14,32,34,36,99,72,102,117,120,130,164,332,263,290,411,412,206,416,445,404,363,398,496,522,611,590,15],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":135,"Def":105,"SpAtk":60,"SpDef":105,"Speed":20},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Wearing the shell covering they stole from Shelmet, they defend themselves and attack with two lances.","Species":"Cavalry Pokémon","Height":1,"Weight":33,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":45,"Moves":[{"Level":1,"ID":38},{"Level":2,"ID":1},{"Level":3,"ID":64},{"Level":4,"ID":43},{"Level":5,"ID":1},{"Level":6,"ID":41},{"Level":7,"ID":43},{"Level":8,"ID":1},{"Level":13,"ID":41},{"Level":16,"ID":31},{"Level":20,"ID":29},{"Level":25,"ID":206},{"Level":28,"ID":405},{"Level":32,"ID":163},{"Level":37,"ID":442},{"Level":40,"ID":334},{"Level":44,"ID":404},{"Level":49,"ID":179},{"Level":52,"ID":14},{"Level":56,"ID":416},{"Level":60,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Escavalier +Number|589 +ExperienceType|1 +BaseExperience|173 +Type1|Bug +Type2|Steel +CatchRate|75 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|588 +IsGenderLess|0 +CanBreed|1 +Devolution|588 +IsMale|50 +Ability1|68 +Ability2|75 +HiddenAbility|142 +EggMoves|450,68,529,185,30,282,224,228,103 +Machines|29,174,92,192,249,237,173,63,182,240,202,203,218,216,104,207,214,197,156,213,210,14,32,34,36,99,72,102,117,120,130,164,332,263,290,411,412,206,416,445,404,363,398,496,522,611,590,15 +BaseHP|70 +BaseAttack|135 +BaseDefense|105 +BaseSpAttack|60 +BaseSpDefense|105 +BaseSpeed|20 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Wearing the shell covering they stole from Shelmet, they defend themselves and attack with two lances.\Cavalry Pokémon\33\1\0,148,0 +Scale|1 +Move|1,38 +Move|1,565 +Move|1,64 +Move|1,43 +Move|1,501 +Move|1,41 +Move|4,43 +Move|8,501 +Move|13,41 +Move|16,31 +Move|20,29 +Move|25,206 +Move|28,405 +Move|32,163 +Move|37,442 +Move|40,334 +Move|44,404 +Move|49,179 +Move|52,14 +Move|56,416 +Move|60,565 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/59.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/59.dat index db420903d..f13f37c45 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/59.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/59.dat @@ -1 +1,43 @@ -{"Name":"Arcanine","Number":59,"ExperienceType":"Slow","BaseExperience":194,"Type1":"Fire","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":58,"Devolution":58,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[22,18],"HiddenAbility":154,"EggMoves":[34,370,343,242,38,24,83,394,257,336,231,234,37,219],"Machines":[29,174,46,92,249,237,241,173,63,182,203,218,231,225,216,91,104,207,214,126,129,197,156,213,168,25,34,36,38,99,82,100,102,117,130,164,219,53,332,263,290,315,406,261,416,445,363,488,496,510,514,523,528,555,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":110,"Def":80,"SpAtk":100,"SpDef":80,"Speed":95},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This legendary Chinese Pokémon is considered magnificent. Many people are enchanted by its grand mane.","Species":"Legendary Pokémon","Height":1.9,"Weight":155,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":50,"Moves":[{"Level":1,"ID":44},{"Level":2,"ID":46},{"Level":3,"ID":316},{"Level":4,"ID":422},{"Level":5,"ID":424},{"Level":34,"ID":245}],"EvolutionConditions":[],"Items":[{"Id":2003,"Chance":100}]} \ No newline at end of file +Name|Arcanine +Number|59 +ExperienceType|3 +BaseExperience|194 +Type1|Fire +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|58 +IsGenderLess|0 +IsMale|75 +Ability1|22 +Ability2|18 +HiddenAbility|154 +EggMoves|34,370,343,242,38,24,83,394,257,336,231,234,37,219 +Machines|29,174,46,92,249,237,241,173,63,182,203,218,231,225,216,91,104,207,214,126,129,197,156,213,168,25,34,36,38,99,82,100,102,117,130,164,219,53,332,263,290,315,406,261,416,445,363,488,496,510,514,523,528,555,590,70,431,560 +BaseHP|90 +BaseAttack|110 +BaseDefense|80 +BaseSpAttack|100 +BaseSpDefense|80 +BaseSpeed|95 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This legendary Chinese Pokémon is considered magnificent. Many people are enchanted by its grand mane.\Legendary Pokémon\155\1.9\0,148,0 +Scale|1.36 +Move|1,44 +Move|1,46 +Move|1,316 +Move|1,422 +Move|1,424 +Move|34,245 +Item|100,2003 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/590.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/590.dat index be1393cfa..dcb855d47 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/590.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/590.dat @@ -1 +1,57 @@ -{"Name":"Foongus","Number":590,"ExperienceType":"MediumFast","BaseExperience":59,"Type1":"Grass","Type2":"Poison","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":590,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[27],"HiddenAbility":144,"EggMoves":[34,111,203,380,74,77,205,78],"Machines":[174,92,237,241,230,173,63,182,240,202,203,218,76,216,104,207,214,188,197,156,213,171,99,72,102,117,120,164,331,351,263,290,412,371,416,445,363,447,474,496,267,590,148],"TutorMoves":[],"BaseStats":{"HP":69,"Atk":55,"Def":45,"SpAtk":55,"SpDef":55,"Speed":15},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lures Pokémon with its pattern that looks just like a Poké Ball then releases poison spores.","Species":"Mushroom Pokémon","Height":0.2,"Weight":1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":71},{"Level":6,"ID":74},{"Level":8,"ID":310},{"Level":12,"ID":117},{"Level":15,"ID":72},{"Level":18,"ID":275},{"Level":20,"ID":185},{"Level":24,"ID":230},{"Level":28,"ID":202},{"Level":32,"ID":92},{"Level":35,"ID":235},{"Level":39,"ID":499},{"Level":43,"ID":76},{"Level":45,"ID":1},{"Level":50,"ID":147}],"EvolutionConditions":[{"Condition":"39","ConditionType":"Level","Evolution":591,"Trigger":"LevelUp"}],"Items":[{"Id":153,"Chance":1},{"Id":87,"Chance":5},{"Id":86,"Chance":50}]} \ No newline at end of file +Name|Foongus +Number|590 +ExperienceType|1 +BaseExperience|59 +Type1|Grass +Type2|Poison +CatchRate|190 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|590 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|27 +Ability2|Nothing +HiddenAbility|144 +EggMoves|34,111,203,380,74,77,205,78 +Machines|174,92,237,241,230,173,63,182,240,202,203,218,76,216,104,207,214,188,197,156,213,171,99,72,102,117,120,164,331,351,263,290,412,371,416,445,363,447,474,496,267,590,148 +BaseHP|69 +BaseAttack|55 +BaseDefense|45 +BaseSpAttack|55 +BaseSpDefense|55 +BaseSpeed|15 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lures Pokémon with its pattern that looks just like a Poké Ball then releases poison spores.\Mushroom Pokémon\1\0.2\0,148,0 +Scale|0.7 +Move|1,71 +Move|6,74 +Move|8,310 +Move|12,117 +Move|15,72 +Move|18,275 +Move|20,185 +Move|24,230 +Move|28,202 +Move|32,92 +Move|35,235 +Move|39,499 +Move|43,76 +Move|45,476 +Move|50,147 +TradeValue|20 +Item|1,153 +Item|5,87 +Item|50,86 +EvolutionCondition|591,level,39,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/591.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/591.dat index 2125f1c8d..8678f4108 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/591.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/591.dat @@ -1 +1,59 @@ -{"Name":"Amoonguss","Number":591,"ExperienceType":"MediumFast","BaseExperience":162,"Type1":"Grass","Type2":"Poison","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":590,"Devolution":590,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[27],"HiddenAbility":144,"EggMoves":[34,111,203,380,74,77,205,78],"Machines":[174,92,237,241,230,173,63,182,240,202,203,218,76,216,104,207,214,188,197,156,213,171,34,36,99,72,102,117,120,164,331,351,263,290,412,371,416,445,363,447,474,496,267,590,148],"TutorMoves":[],"BaseStats":{"HP":114,"Atk":85,"Def":70,"SpAtk":85,"SpDef":80,"Speed":30},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It moves the caps on both arms and does a dance to lure prey. It prefers damp places.","Species":"Mushroom Pokémon","Height":0.6,"Weight":10.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":45,"Moves":[{"Level":1,"ID":71},{"Level":2,"ID":74},{"Level":3,"ID":310},{"Level":4,"ID":117},{"Level":6,"ID":74},{"Level":8,"ID":310},{"Level":12,"ID":117},{"Level":15,"ID":72},{"Level":18,"ID":275},{"Level":20,"ID":185},{"Level":24,"ID":230},{"Level":28,"ID":202},{"Level":32,"ID":92},{"Level":35,"ID":235},{"Level":43,"ID":499},{"Level":49,"ID":76},{"Level":54,"ID":1},{"Level":62,"ID":147}],"EvolutionConditions":[],"Items":[{"Id":153,"Chance":1},{"Id":87,"Chance":5},{"Id":86,"Chance":50}]} \ No newline at end of file +Name|Amoonguss +Number|591 +ExperienceType|1 +BaseExperience|162 +Type1|Grass +Type2|Poison +CatchRate|75 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|590 +IsGenderLess|0 +CanBreed|1 +Devolution|590 +IsMale|50 +Ability1|27 +Ability2|Nothing +HiddenAbility|144 +EggMoves|34,111,203,380,74,77,205,78 +Machines|174,92,237,241,230,173,63,182,240,202,203,218,76,216,104,207,214,188,197,156,213,171,34,36,99,72,102,117,120,164,331,351,263,290,412,371,416,445,363,447,474,496,267,590,148 +BaseHP|114 +BaseAttack|85 +BaseDefense|70 +BaseSpAttack|85 +BaseSpDefense|80 +BaseSpeed|30 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It moves the caps on both arms and does a dance to lure prey. It prefers damp places.\Mushroom Pokémon\10.5\0.6\0,148,0 +Scale|0.84 +Move|1,71 +Move|1,74 +Move|1,310 +Move|1,117 +Move|6,74 +Move|8,310 +Move|12,117 +Move|15,72 +Move|18,275 +Move|20,185 +Move|24,230 +Move|28,202 +Move|32,92 +Move|35,235 +Move|43,499 +Move|49,76 +Move|54,476 +Move|62,147 +TradeValue|45 +Item|1,153 +Item|5,87 +Item|50,86 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/592.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/592.dat index 44d50080e..39ac38d5b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/592.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/592.dat @@ -1 +1,53 @@ -{"Name":"Frillish","Number":592,"ExperienceType":"MediumFast","BaseExperience":67,"Type1":"Water","Type2":"Ghost","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":592,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[11,130],"HiddenAbility":6,"EggMoves":[151,109,132,54,220,105],"Machines":[174,92,244,237,173,59,63,196,182,240,202,203,218,216,94,247,104,207,214,188,138,197,156,213,171,61,55,58,99,102,117,149,164,352,258,269,219,351,263,290,412,362,261,416,419,445,399,363,433,482,496,503,605,590,57,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":40,"Def":50,"SpAtk":65,"SpDef":85,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If its veil-like arms stun and wrap a foe, that foe will be dragged miles below the surface, never to return.","Species":"Floating Pokémon","Height":1.2,"Weight":33,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":30,"Moves":[{"Level":1,"ID":145},{"Level":2,"ID":346},{"Level":5,"ID":71},{"Level":9,"ID":101},{"Level":13,"ID":61},{"Level":17,"ID":105},{"Level":22,"ID":352},{"Level":27,"ID":466},{"Level":32,"ID":362},{"Level":37,"ID":240},{"Level":43,"ID":506},{"Level":49,"ID":56},{"Level":55,"ID":378},{"Level":61,"ID":323}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":593,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Frillish +Number|592 +ExperienceType|1 +BaseExperience|67 +Type1|Water +Type2|Ghost +CatchRate|190 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|592 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|11 +Ability2|130 +HiddenAbility|6 +EggMoves|151,109,132,54,220,105 +Machines|174,92,244,237,173,59,63,196,182,240,202,203,218,216,94,247,104,207,214,188,138,197,156,213,171,61,55,58,99,102,117,149,164,352,258,269,219,351,263,290,412,362,261,416,419,445,399,363,433,482,496,503,605,590,57,148,250,127,291 +BaseHP|55 +BaseAttack|40 +BaseDefense|50 +BaseSpAttack|65 +BaseSpDefense|85 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If its veil-like arms stun and wrap a foe, that foe will be dragged miles below the surface, never to return.\Floating Pokémon\33\1.2\0,148,0 +Scale|1.08 +Move|1,145 +Move|1,346 +Move|5,71 +Move|9,101 +Move|13,61 +Move|17,105 +Move|22,352 +Move|27,466 +Move|32,362 +Move|37,240 +Move|43,506 +Move|49,56 +Move|55,378 +Move|61,323 +TradeValue|30 +EvolutionCondition|593,Level,40,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/593.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/593.dat index cc585ca4d..b04d02f4e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/593.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/593.dat @@ -1 +1,56 @@ -{"Name":"Jellicent","Number":593,"ExperienceType":"MediumFast","BaseExperience":168,"Type1":"Water","Type2":"Ghost","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":592,"Devolution":592,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[11,130],"HiddenAbility":6,"EggMoves":[151,109,132,54,220,105],"Machines":[174,92,244,237,173,59,63,196,182,240,202,203,218,216,94,247,104,207,214,188,138,197,156,213,171,61,55,58,99,102,117,149,164,352,258,269,219,351,263,290,412,362,261,416,419,445,399,363,433,482,496,503,605,590,57,148,250,127,291],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":60,"Def":70,"SpAtk":85,"SpDef":105,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its body is mostly seawater. It's said there's a castle of ships Jellicent have sunk on the seafloor.","Species":"Floating Pokémon","Height":2.2,"Weight":135,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.48,"Y":1.48,"Z":1.48},"TradeValue":50,"Moves":[{"Level":1,"ID":323},{"Level":2,"ID":378},{"Level":3,"ID":145},{"Level":4,"ID":346},{"Level":5,"ID":71},{"Level":6,"ID":101},{"Level":7,"ID":71},{"Level":9,"ID":101},{"Level":13,"ID":61},{"Level":17,"ID":105},{"Level":22,"ID":352},{"Level":27,"ID":466},{"Level":32,"ID":362},{"Level":37,"ID":240},{"Level":45,"ID":506},{"Level":53,"ID":56},{"Level":61,"ID":378},{"Level":69,"ID":323}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Jellicent +Number|593 +ExperienceType|1 +BaseExperience|168 +Type1|Water +Type2|Ghost +CatchRate|60 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|592 +IsGenderLess|0 +CanBreed|1 +Devolution|592 +IsMale|50 +Ability1|11 +Ability2|130 +HiddenAbility|6 +EggMoves|151,109,132,54,220,105 +Machines|174,92,244,237,173,59,63,196,182,240,202,203,218,216,94,247,104,207,214,188,138,197,156,213,171,61,55,58,99,102,117,149,164,352,258,269,219,351,263,290,412,362,261,416,419,445,399,363,433,482,496,503,605,590,57,148,250,127,291 +BaseHP|100 +BaseAttack|60 +BaseDefense|70 +BaseSpAttack|85 +BaseSpDefense|105 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its body is mostly seawater. It's said there's a castle of ships Jellicent have sunk on the seafloor.\Floating Pokémon\135\2.2\0,148,0 +Scale|1.48 +Move|1,323 +Move|1,378 +Move|1,145 +Move|1,346 +Move|1,71 +Move|1,101 +Move|5,71 +Move|9,101 +Move|13,61 +Move|17,105 +Move|22,352 +Move|27,466 +Move|32,362 +Move|37,240 +Move|45,506 +Move|53,56 +Move|61,378 +Move|69,323 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/594.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/594.dat index f61dee00d..f44b9f442 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/594.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/594.dat @@ -1 +1,58 @@ -{"Name":"Alomomola","Number":594,"ExperienceType":"Fast","BaseExperience":165,"Type1":"Water","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Water2","BaseEggSteps":10455,"EggPokemon":594,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[131,93],"HiddenAbility":144,"EggMoves":[203,243,54,220,287,321],"Machines":[174,92,244,237,173,59,63,196,182,240,203,218,216,94,247,104,207,214,197,156,213,36,61,55,58,99,102,117,164,352,347,258,113,219,263,290,362,416,419,445,363,496,503,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":165,"Atk":75,"Def":80,"SpAtk":40,"SpDef":45,"Speed":65},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It gently holds injured and weak Pokémon in its fins. Its special membrane heals their wounds.","Species":"Caring Pokémon","Height":1.2,"Weight":31.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":40,"Moves":[{"Level":1,"ID":56},{"Level":2,"ID":1},{"Level":3,"ID":361},{"Level":4,"ID":1},{"Level":5,"ID":346},{"Level":6,"ID":392},{"Level":9,"ID":453},{"Level":13,"ID":3},{"Level":17,"ID":505},{"Level":21,"ID":182},{"Level":25,"ID":352},{"Level":29,"ID":358},{"Level":33,"ID":1},{"Level":37,"ID":273},{"Level":41,"ID":362},{"Level":45,"ID":219},{"Level":49,"ID":1},{"Level":53,"ID":1},{"Level":57,"ID":361},{"Level":61,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Alomomola +Number|594 +ExperienceType|0 +BaseExperience|165 +Type1|Water +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water2 +BaseEggSteps|10455 +EggPokemon|594 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|131 +Ability2|93 +HiddenAbility|144 +EggMoves|203,243,54,220,287,321 +Machines|174,92,244,237,173,59,63,196,182,240,203,218,216,94,247,104,207,214,197,156,213,36,61,55,58,99,102,117,164,352,347,258,113,219,263,290,362,416,419,445,363,496,503,590,57,250,127,291 +BaseHP|165 +BaseAttack|75 +BaseDefense|80 +BaseSpAttack|40 +BaseSpDefense|45 +BaseSpeed|65 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It gently holds injured and weak Pokémon in its fins. Its special membrane heals their wounds.\Caring Pokémon\31.6\1.2\0,148,0 +Scale|1.08 +Move|1,56 +Move|1,469 +Move|1,361 +Move|1,1 +Move|1,346 +Move|5,392 +Move|9,453 +Move|13,3 +Move|17,505 +Move|21,182 +Move|25,352 +Move|29,358 +Move|33,487 +Move|37,273 +Move|41,362 +Move|45,219 +Move|49,270 +Move|53,469 +Move|57,361 +Move|61,56 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/595.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/595.dat index a4ad5ce69..88d4e743d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/595.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/595.dat @@ -1 +1,55 @@ -{"Name":"Joltik","Number":595,"ExperienceType":"MediumFast","BaseExperience":64,"Type1":"Bug","Type2":"Electric","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":595,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[14,127],"HiddenAbility":68,"EggMoves":[293,440,50,185,42,40,228,431],"Machines":[174,92,237,173,63,182,240,202,203,218,216,104,207,214,111,197,156,213,168,99,85,102,117,86,164,113,351,263,290,412,451,416,445,404,363,398,496,521,522,528,611,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":47,"Def":50,"SpAtk":57,"SpDef":50,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Since it can't generate its own electricity, it sticks onto large-bodied Pokémon and absorbs static electricity.","Species":"Attaching Pokémon","Height":0.1,"Weight":0.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":81},{"Level":2,"ID":141},{"Level":3,"ID":169},{"Level":4,"ID":86},{"Level":7,"ID":103},{"Level":12,"ID":210},{"Level":15,"ID":527},{"Level":18,"ID":450},{"Level":23,"ID":1},{"Level":26,"ID":163},{"Level":29,"ID":486},{"Level":34,"ID":324},{"Level":37,"ID":97},{"Level":40,"ID":389},{"Level":45,"ID":435},{"Level":48,"ID":405}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":596,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Joltik +Number|595 +ExperienceType|1 +BaseExperience|64 +Type1|Bug +Type2|Electric +CatchRate|190 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|595 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|14 +Ability2|127 +HiddenAbility|68 +EggMoves|293,440,50,185,42,40,228,431 +Machines|174,92,237,173,63,182,240,202,203,218,216,104,207,214,111,197,156,213,168,99,85,102,117,86,164,113,351,263,290,412,451,416,445,404,363,398,496,521,522,528,611,590,148 +BaseHP|50 +BaseAttack|47 +BaseDefense|50 +BaseSpAttack|57 +BaseSpDefense|50 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Since it can't generate its own electricity, it sticks onto large-bodied Pokémon and absorbs static electricity.\Attaching Pokémon\0.6\0.1\0,148,0 +Scale|0.7 +Move|1,81 +Move|1,141 +Move|1,169 +Move|4,86 +Move|7,103 +Move|12,210 +Move|15,527 +Move|18,450 +Move|23,380 +Move|26,163 +Move|29,486 +Move|34,324 +Move|37,97 +Move|40,389 +Move|45,435 +Move|48,405 +TradeValue|20 +EvolutionCondition|596,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/596.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/596.dat index 0a2ffc2b5..01987c0ec 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/596.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/596.dat @@ -1 +1,57 @@ -{"Name":"Galvantula","Number":596,"ExperienceType":"MediumFast","BaseExperience":165,"Type1":"Bug","Type2":"Electric","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":595,"Devolution":595,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[14,127],"HiddenAbility":68,"EggMoves":[293,440,50,185,42,40,228,431],"Machines":[174,92,192,237,173,63,182,240,202,203,218,87,216,104,207,214,111,197,156,213,168,34,36,99,85,102,117,86,164,113,351,263,290,412,451,416,445,404,363,398,496,521,522,528,611,590,15,148,560],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":77,"Def":60,"SpAtk":97,"SpDef":60,"Speed":108},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It creates barriers from electrified silk that stuns foes. This works as a weapon as well as a defense.","Species":"EleSpider Pokémon","Height":0.8,"Weight":14.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":50,"Moves":[{"Level":1,"ID":81},{"Level":2,"ID":141},{"Level":3,"ID":169},{"Level":4,"ID":86},{"Level":5,"ID":1},{"Level":6,"ID":86},{"Level":7,"ID":103},{"Level":12,"ID":210},{"Level":15,"ID":527},{"Level":18,"ID":450},{"Level":23,"ID":1},{"Level":26,"ID":163},{"Level":29,"ID":486},{"Level":34,"ID":324},{"Level":40,"ID":97},{"Level":46,"ID":389},{"Level":54,"ID":435},{"Level":60,"ID":405},{"Level":65,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Galvantula +Number|596 +ExperienceType|1 +BaseExperience|165 +Type1|Bug +Type2|Electric +CatchRate|75 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|595 +IsGenderLess|0 +CanBreed|1 +Devolution|595 +IsMale|50 +Ability1|14 +Ability2|127 +HiddenAbility|68 +EggMoves|293,440,50,185,42,40,228,431 +Machines|174,92,192,237,173,63,182,240,202,203,218,87,216,104,207,214,111,197,156,213,168,34,36,99,85,102,117,86,164,113,351,263,290,412,451,416,445,404,363,398,496,521,522,528,611,590,15,148,560 +BaseHP|70 +BaseAttack|77 +BaseDefense|60 +BaseSpAttack|97 +BaseSpDefense|60 +BaseSpeed|108 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It creates barriers from electrified silk that stuns foes. This works as a weapon as well as a defense.\EleSpider Pokémon\14.3\0.8\0,148,0 +Scale|0.92 +Move|1,81 +Move|1,141 +Move|1,169 +Move|1,86 +Move|1,564 +Move|4,86 +Move|7,103 +Move|12,210 +Move|15,527 +Move|18,450 +Move|23,380 +Move|26,163 +Move|29,486 +Move|34,324 +Move|40,97 +Move|46,389 +Move|54,435 +Move|60,405 +Move|65,564 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/597.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/597.dat index 0f441208b..42fcd477d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/597.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/597.dat @@ -1 +1,54 @@ -{"Name":"Ferroseed","Number":597,"ExperienceType":"MediumFast","BaseExperience":61,"Type1":"Grass","Type2":"Steel","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"Mineral","BaseEggSteps":5355,"EggPokemon":597,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[160],"HiddenAbility":107,"EggMoves":[491,331,356,73,431,402,191,446,388],"Machines":[174,92,249,237,241,173,63,182,202,203,218,76,216,104,207,214,197,156,213,32,34,36,99,72,85,102,117,120,130,86,153,164,331,263,290,412,371,416,397,360,446,445,363,398,430,468,496,267,590,148],"TutorMoves":[],"BaseStats":{"HP":44,"Atk":50,"Def":91,"SpAtk":24,"SpDef":86,"Speed":10},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It absorbs the iron it finds in the rock while clinging to the ceiling. It shoots spikes when in danger.","Species":"Thorn Seed Pokémon","Height":0.6,"Weight":18.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":30,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":106},{"Level":6,"ID":205},{"Level":9,"ID":174},{"Level":14,"ID":232},{"Level":18,"ID":42},{"Level":21,"ID":360},{"Level":26,"ID":334},{"Level":30,"ID":429},{"Level":35,"ID":275},{"Level":43,"ID":442},{"Level":47,"ID":371},{"Level":52,"ID":430},{"Level":55,"ID":153}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":598,"Trigger":"LevelUp"}],"Items":[{"Id":70,"Chance":5}]} \ No newline at end of file +Name|Ferroseed +Number|597 +ExperienceType|1 +BaseExperience|61 +Type1|Grass +Type2|Steel +CatchRate|255 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|Mineral +BaseEggSteps|5355 +EggPokemon|597 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|160 +Ability2|Nothing +HiddenAbility|107 +EggMoves|491,331,356,73,431,402,191,446,388 +Machines|174,92,249,237,241,173,63,182,202,203,218,76,216,104,207,214,197,156,213,32,34,36,99,72,85,102,117,120,130,86,153,164,331,263,290,412,371,416,397,360,446,445,363,398,430,468,496,267,590,148 +BaseHP|44 +BaseAttack|50 +BaseDefense|91 +BaseSpAttack|24 +BaseSpDefense|86 +BaseSpeed|10 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It absorbs the iron it finds in the rock while clinging to the ceiling. It shoots spikes when in danger.\Thorn Seed Pokémon\18.8\0.6\0,148,0 +Scale|0.84 +Move|1,33 +Move|1,106 +Move|6,205 +Move|9,174 +Move|14,232 +Move|18,42 +Move|21,360 +Move|26,334 +Move|30,429 +Move|35,275 +Move|43,442 +Move|47,371 +Move|52,430 +Move|55,153 +TradeValue|30 +Item|5,70 +EvolutionCondition|598,level,40,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/598.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/598.dat index f36a0f183..dd8ddc27f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/598.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/598.dat @@ -1 +1,57 @@ -{"Name":"Ferrothorn","Number":598,"ExperienceType":"MediumFast","BaseExperience":171,"Type1":"Grass","Type2":"Steel","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"Mineral","BaseEggSteps":5355,"EggPokemon":597,"Devolution":597,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[160],"HiddenAbility":107,"EggMoves":[491,331,356,73,431,402,191,446,388],"Machines":[174,92,249,237,241,173,63,182,202,203,218,76,87,216,104,207,214,201,197,156,213,14,32,34,36,38,99,72,85,102,117,120,130,86,153,164,331,332,263,290,412,421,371,416,397,360,446,445,363,398,447,430,468,496,267,590,15,70,148,560],"TutorMoves":[],"BaseStats":{"HP":74,"Atk":94,"Def":131,"SpAtk":54,"SpDef":116,"Speed":20},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"By swinging around its three spiky feelers and shooting spikes, it can obliterate an opponent.","Species":"Thorn Pod Pokémon","Height":1,"Weight":110,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":431},{"Level":2,"ID":33},{"Level":3,"ID":106},{"Level":4,"ID":205},{"Level":5,"ID":174},{"Level":6,"ID":205},{"Level":9,"ID":174},{"Level":14,"ID":232},{"Level":18,"ID":42},{"Level":21,"ID":360},{"Level":26,"ID":334},{"Level":30,"ID":429},{"Level":35,"ID":275},{"Level":40,"ID":438},{"Level":46,"ID":442},{"Level":53,"ID":371},{"Level":61,"ID":430},{"Level":67,"ID":153}],"EvolutionConditions":[],"Items":[{"Id":70,"Chance":5}]} \ No newline at end of file +Name|Ferrothorn +Number|598 +ExperienceType|1 +BaseExperience|171 +Type1|Grass +Type2|Steel +CatchRate|90 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|Mineral +BaseEggSteps|5355 +EggPokemon|597 +IsGenderLess|0 +CanBreed|1 +Devolution|597 +IsMale|50 +Ability1|160 +Ability2|Nothing +HiddenAbility|107 +EggMoves|491,331,356,73,431,402,191,446,388 +Machines|174,92,249,237,241,173,63,182,202,203,218,76,87,216,104,207,214,201,197,156,213,14,32,34,36,38,99,72,85,102,117,120,130,86,153,164,331,332,263,290,412,421,371,416,397,360,446,445,363,398,447,430,468,496,267,590,15,70,148,560 +BaseHP|74 +BaseAttack|94 +BaseDefense|131 +BaseSpAttack|54 +BaseSpDefense|116 +BaseSpeed|20 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|By swinging around its three spiky feelers and shooting spikes, it can obliterate an opponent.\Thorn Pod Pokémon\110\1\0,148,0 +Scale|1 +Move|1,431 +Move|1,33 +Move|1,106 +Move|1,205 +Move|1,174 +Move|6,205 +Move|9,174 +Move|14,232 +Move|18,42 +Move|21,360 +Move|26,334 +Move|30,429 +Move|35,275 +Move|40,438 +Move|46,442 +Move|53,371 +Move|61,430 +Move|67,153 +TradeValue|50 +Item|5,70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/599.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/599.dat index b0bd0fecd..21a1ad5ea 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/599.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/599.dat @@ -1 +1,53 @@ -{"Name":"Klink","Number":599,"ExperienceType":"MediumSlow","BaseExperience":60,"Type1":"Steel","Type2":"Blank","CatchRate":130,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":599,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[57,58],"HiddenAbility":29,"EggMoves":[],"Machines":[174,92,249,237,173,63,182,203,218,216,104,207,214,197,156,213,34,36,99,85,102,117,120,164,263,290,278,416,445,363,496,590],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":55,"Def":70,"SpAtk":45,"SpDef":60,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Two bodies comprise a fixed pair. They spin around each other to generate electricity.","Species":"Gear Pokémon","Height":0.3,"Weight":21,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":30,"Moves":[{"Level":1,"ID":11},{"Level":6,"ID":268},{"Level":11,"ID":84},{"Level":16,"ID":544},{"Level":21,"ID":20},{"Level":26,"ID":451},{"Level":31,"ID":1},{"Level":36,"ID":429},{"Level":39,"ID":103},{"Level":42,"ID":435},{"Level":45,"ID":319},{"Level":48,"ID":508},{"Level":50,"ID":199},{"Level":54,"ID":192},{"Level":57,"ID":63}],"EvolutionConditions":[{"Condition":"38","ConditionType":"Level","Evolution":600,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Klink +Number|599 +ExperienceType|2 +BaseExperience|60 +Type1|Steel +Type2| +CatchRate|130 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|599 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|57 +Ability2|58 +HiddenAbility|29 +Machines|174,92,249,237,173,63,182,203,218,216,104,207,214,197,156,213,34,36,99,85,102,117,120,164,263,290,278,416,445,363,496,590 +BaseHP|40 +BaseAttack|55 +BaseDefense|70 +BaseSpAttack|45 +BaseSpDefense|60 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Two bodies comprise a fixed pair. They spin around each other to generate electricity.\Gear Pokémon\21\0.3\0,148,0 +Scale|0.7 +Move|1,11 +Move|6,268 +Move|11,84 +Move|16,544 +Move|21,20 +Move|26,451 +Move|31,475 +Move|36,429 +Move|39,103 +Move|42,435 +Move|45,319 +Move|48,508 +Move|50,199 +Move|54,192 +Move|57,63 +TradeValue|30 +EvolutionCondition|600,Level,38,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/6.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/6.dat index 3ede1c0ed..7615385ab 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/6.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/6.dat @@ -1 +1,59 @@ -{"Name":"Charizard","Number":6,"ExperienceType":"MediumSlow","BaseExperience":240,"Type1":"Fire","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":5355,"EggPokemon":4,"Devolution":5,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[66],"HiddenAbility":94,"EggMoves":[314,246,187,44,68,242,349,406,407,394,264,232,200,14,251,157],"Machines":[223,29,174,46,92,249,237,241,173,63,182,203,218,76,231,225,89,216,91,189,104,207,214,126,129,111,9,197,156,213,211,7,210,5,14,25,34,36,38,66,68,69,99,82,90,102,117,130,157,164,264,337,280,53,317,332,263,290,315,355,411,374,406,261,421,416,432,445,363,468,488,496,497,507,510,523,525,612,590,15,19,70,560],"TutorMoves":[],"BaseStats":{"HP":78,"Atk":84,"Def":78,"SpAtk":109,"SpDef":85,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If Charizard becomes furious the flame at the tip of its tail flares up in a light blue shade.","Species":"Flame Pokémon","Height":1.7,"Weight":90.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":70,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":45},{"Level":3,"ID":52},{"Level":4,"ID":257},{"Level":5,"ID":289},{"Level":6,"ID":337},{"Level":7,"ID":394},{"Level":8,"ID":403},{"Level":9,"ID":421},{"Level":10,"ID":52},{"Level":11,"ID":108},{"Level":17,"ID":82},{"Level":21,"ID":184},{"Level":28,"ID":424},{"Level":32,"ID":481},{"Level":36,"ID":17},{"Level":41,"ID":163},{"Level":47,"ID":53},{"Level":56,"ID":83},{"Level":62,"ID":517},{"Level":71,"ID":257},{"Level":77,"ID":394}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Charizard +Number|6 +ExperienceType|2 +BaseExperience|240 +Type1|Fire +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|4 +IsGenderLess|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|94 +EggMoves|314,246,187,44,68,242,349,406,407,394,264,232,200,14,251,157 +Machines|223,29,174,46,92,249,237,241,173,63,182,203,218,76,231,225,89,216,91,189,104,207,214,126,129,111,9,197,156,213,211,7,210,5,14,25,34,36,38,66,68,69,99,82,90,102,117,130,157,164,264,337,280,53,317,332,263,290,315,355,411,374,406,261,421,416,432,445,363,468,488,496,497,507,510,523,525,612,590,15,19,70,560 +TutorMoves|307,366 +BaseHP|78 +BaseAttack|84 +BaseDefense|78 +BaseSpAttack|109 +BaseSpDefense|85 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If Charizard becomes furious the flame at the tip of its tail flares up in a light blue shade.\Flame Pokémon\90.5\1.7\0,148,0 +Scale|1.28 +Move|1,10 +Move|1,45 +Move|1,52 +Move|1,257 +Move|1,289 +Move|1,337 +Move|1,394 +Move|1,403 +Move|1,421 +Move|7,52 +Move|10,108 +Move|17,82 +Move|21,184 +Move|28,424 +Move|32,481 +Move|36,17 +Move|41,163 +Move|47,53 +Move|56,83 +Move|62,517 +Move|71,257 +Move|77,394 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/60.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/60.dat index 1ce19370f..cf0502a33 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/60.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/60.dat @@ -1 +1,52 @@ -{"Name":"Poliwag","Number":60,"ExperienceType":"MediumSlow","BaseExperience":60,"Type1":"Water","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":60,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[11,6],"HiddenAbility":33,"EggMoves":[61,227,283,203,114,301,170,54,341,287,150,352,346],"Machines":[29,174,92,237,173,59,63,196,182,240,203,218,216,91,94,104,207,214,111,197,156,213,168,34,36,61,55,58,68,99,102,117,130,149,164,352,258,263,290,416,445,363,496,503,612,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":50,"Def":40,"SpAtk":40,"SpDef":40,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Because it is inept at walking on its newly grown legs, it always swims around in water.","Species":"Tadpole Pokémon","Height":0.6,"Weight":12.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":10,"Moves":[{"Level":1,"ID":346},{"Level":5,"ID":55},{"Level":8,"ID":95},{"Level":11,"ID":145},{"Level":15,"ID":3},{"Level":18,"ID":240},{"Level":21,"ID":34},{"Level":25,"ID":61},{"Level":28,"ID":341},{"Level":31,"ID":187},{"Level":35,"ID":358},{"Level":38,"ID":56},{"Level":41,"ID":426}],"EvolutionConditions":[{"Condition":"25","ConditionType":"Level","Evolution":61,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Poliwag +Number|60 +ExperienceType|2 +BaseExperience|60 +Type1|Water +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|60 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|11 +Ability2|6 +HiddenAbility|33 +EggMoves|61,227,283,203,114,301,170,54,341,287,150,352,346 +Machines|29,174,92,237,173,59,63,196,182,240,203,218,216,91,94,104,207,214,111,197,156,213,168,34,36,61,55,58,68,99,102,117,130,149,164,352,258,263,290,416,445,363,496,503,612,590,57,250,127,291 +BaseHP|40 +BaseAttack|50 +BaseDefense|40 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Because it is inept at walking on its newly grown legs, it always swims around in water.\Tadpole Pokémon\12.4\0.6\0,148,0 +Scale|0.84 +Move|1,346 +Move|5,55 +Move|8,95 +Move|11,145 +Move|15,3 +Move|18,240 +Move|21,34 +Move|25,61 +Move|28,341 +Move|31,187 +Move|35,358 +Move|38,56 +Move|41,426 +TradeValue|10 +EvolutionCondition|61,Level,25,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/600.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/600.dat index e071dc767..18a589d03 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/600.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/600.dat @@ -1 +1,53 @@ -{"Name":"Klang","Number":600,"ExperienceType":"MediumSlow","BaseExperience":154,"Type1":"Steel","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":599,"Devolution":599,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[57,58],"HiddenAbility":29,"EggMoves":[],"Machines":[174,92,249,237,173,63,182,203,218,216,104,207,214,197,156,213,34,36,38,99,85,102,117,120,164,263,290,278,416,445,363,496,590],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":80,"Def":95,"SpAtk":70,"SpDef":85,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A minigear and big gear comprises its body. If the minigear it launches at its foe doesn't return, it will die.","Species":"Gear Pokémon","Height":0.6,"Weight":51,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":45,"Moves":[{"Level":1,"ID":11},{"Level":6,"ID":268},{"Level":11,"ID":84},{"Level":16,"ID":544},{"Level":21,"ID":20},{"Level":26,"ID":451},{"Level":31,"ID":1},{"Level":36,"ID":429},{"Level":40,"ID":103},{"Level":44,"ID":435},{"Level":48,"ID":319},{"Level":52,"ID":508},{"Level":56,"ID":199},{"Level":60,"ID":192},{"Level":64,"ID":63}],"EvolutionConditions":[{"Condition":"49","ConditionType":"Level","Evolution":601,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Klang +Number|600 +ExperienceType|2 +BaseExperience|154 +Type1|Steel +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|599 +IsGenderLess|1 +CanBreed|1 +Devolution|599 +IsMale|0.0 +Ability1|57 +Ability2|58 +HiddenAbility|29 +Machines|174,92,249,237,173,63,182,203,218,216,104,207,214,197,156,213,34,36,38,99,85,102,117,120,164,263,290,278,416,445,363,496,590 +BaseHP|60 +BaseAttack|80 +BaseDefense|95 +BaseSpAttack|70 +BaseSpDefense|85 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A minigear and big gear comprises its body. If the minigear it launches at its foe doesn't return, it will die.\Gear Pokémon\51\0.6\0,148,0 +Scale|0.84 +Move|1,11 +Move|6,268 +Move|11,84 +Move|16,544 +Move|21,20 +Move|26,451 +Move|31,475 +Move|36,429 +Move|40,103 +Move|44,435 +Move|48,319 +Move|52,508 +Move|56,199 +Move|60,192 +Move|64,63 +TradeValue|45 +EvolutionCondition|601,Level,49,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/601.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/601.dat index 9dc6a82b8..d0cc85e56 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/601.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/601.dat @@ -1 +1,55 @@ -{"Name":"Klinklang","Number":601,"ExperienceType":"MediumSlow","BaseExperience":234,"Type1":"Steel","Type2":"Blank","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":599,"Devolution":600,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[57,58],"HiddenAbility":29,"EggMoves":[],"Machines":[174,92,192,249,237,173,63,182,203,218,87,216,104,207,214,197,156,213,34,36,38,99,85,102,117,120,130,161,164,351,263,290,278,416,445,363,496,590,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":100,"Def":115,"SpAtk":70,"SpDef":85,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":3,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The minigear spins at high speed. Then energy from the red core charges the minigear to make it ready to fire.","Species":"Gear Pokémon","Height":0.6,"Weight":81,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":55,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":192},{"Level":3,"ID":11},{"Level":6,"ID":268},{"Level":11,"ID":84},{"Level":16,"ID":544},{"Level":21,"ID":20},{"Level":25,"ID":451},{"Level":31,"ID":1},{"Level":36,"ID":429},{"Level":40,"ID":103},{"Level":44,"ID":435},{"Level":48,"ID":319},{"Level":54,"ID":508},{"Level":60,"ID":199},{"Level":66,"ID":192},{"Level":72,"ID":63},{"Level":76,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Klinklang +Number|601 +ExperienceType|2 +BaseExperience|234 +Type1|Steel +Type2| +CatchRate|30 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|599 +IsGenderLess|1 +CanBreed|1 +Devolution|600 +IsMale|0.0 +Ability1|57 +Ability2|58 +HiddenAbility|29 +Machines|174,92,192,249,237,173,63,182,203,218,87,216,104,207,214,197,156,213,34,36,38,99,85,102,117,120,130,161,164,351,263,290,278,416,445,363,496,590,560 +BaseHP|60 +BaseAttack|100 +BaseDefense|115 +BaseSpAttack|70 +BaseSpDefense|85 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The minigear spins at high speed. Then energy from the red core charges the minigear to make it ready to fire.\Gear Pokémon\81\0.6\0,148,0 +Scale|0.84 +Move|1,602 +Move|1,192 +Move|1,11 +Move|6,268 +Move|11,84 +Move|16,544 +Move|21,20 +Move|25,451 +Move|31,475 +Move|36,429 +Move|40,103 +Move|44,435 +Move|48,319 +Move|54,508 +Move|60,199 +Move|66,192 +Move|72,63 +Move|76,602 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/602.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/602.dat index a10a953df..bf76ebfdf 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/602.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/602.dat @@ -1 +1,42 @@ -{"Name":"Tynamo","Number":602,"ExperienceType":"Slow","BaseExperience":55,"Type1":"Electric","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":602,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":55,"Def":40,"SpAtk":45,"SpDef":40,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"One alone can emit only a trickle of electricity, so a group of them gathers to unleash a powerful electric shock.","Species":"EleFish Pokémon","Height":0.2,"Weight":0.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":86},{"Level":3,"ID":209},{"Level":4,"ID":451}],"EvolutionConditions":[{"Condition":"39","ConditionType":"Level","Evolution":603,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Tynamo +Number|602 +ExperienceType|3 +BaseExperience|55 +Type1|Electric +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|602 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines| +BaseHP|35 +BaseAttack|55 +BaseDefense|40 +BaseSpAttack|45 +BaseSpDefense|40 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|One alone can emit only a trickle of electricity, so a group of them gathers to unleash a powerful electric shock.\EleFish Pokémon\0.3\0.2\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,86 +Move|1,209 +Move|1,451 +TradeValue|35 +EvolutionCondition|603,Level,39,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/603.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/603.dat index 7afc81dbe..0eafd0b09 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/603.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/603.dat @@ -1 +1,53 @@ -{"Name":"Eelektrik","Number":603,"ExperienceType":"Slow","BaseExperience":142,"Type1":"Electric","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":602,"Devolution":602,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[29,174,92,192,237,173,63,182,240,202,203,218,231,87,216,104,207,214,197,156,213,34,36,99,82,85,102,117,86,164,113,351,263,290,451,416,445,363,369,430,496,512,521,528,590,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":85,"Def":70,"SpAtk":75,"SpDef":70,"Speed":40},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It wraps itself around its prey and paralyzes it with electricity from the round spots on its sides. Then it chomps.","Species":"EleFish Pokémon","Height":1.2,"Weight":22,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":50,"Moves":[{"Level":1,"ID":29},{"Level":2,"ID":86},{"Level":3,"ID":209},{"Level":4,"ID":451},{"Level":9,"ID":20},{"Level":19,"ID":51},{"Level":29,"ID":435},{"Level":39,"ID":242},{"Level":44,"ID":85},{"Level":49,"ID":491},{"Level":54,"ID":489},{"Level":59,"ID":528},{"Level":64,"ID":1},{"Level":69,"ID":192},{"Level":74,"ID":37}],"EvolutionConditions":[{"Condition":"23","ConditionType":"Item","Evolution":604,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Eelektrik +Number|603 +ExperienceType|3 +BaseExperience|142 +Type1|Electric +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|602 +IsGenderLess|0 +CanBreed|1 +Devolution|602 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|29,174,92,192,237,173,63,182,240,202,203,218,231,87,216,104,207,214,197,156,213,34,36,99,82,85,102,117,86,164,113,351,263,290,451,416,445,363,369,430,496,512,521,528,590,148 +BaseHP|65 +BaseAttack|85 +BaseDefense|70 +BaseSpAttack|75 +BaseSpDefense|70 +BaseSpeed|40 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It wraps itself around its prey and paralyzes it with electricity from the round spots on its sides. Then it chomps.\EleFish Pokémon\22\1.2\0,148,0 +Scale|1.08 +Move|1,29 +Move|1,86 +Move|1,209 +Move|1,451 +Move|9,20 +Move|19,51 +Move|29,435 +Move|39,242 +Move|44,85 +Move|49,491 +Move|54,489 +Move|59,528 +Move|64,380 +Move|69,192 +Move|74,37 +TradeValue|50 +EvolutionCondition|604,item,23,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/604.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/604.dat index 71145cc83..7185078fa 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/604.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/604.dat @@ -1 +1,47 @@ -{"Name":"Eelektross","Number":604,"ExperienceType":"Slow","BaseExperience":232,"Type1":"Electric","Type2":"Blank","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":602,"Devolution":603,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[29,174,46,92,192,249,237,173,63,182,240,202,203,218,231,87,216,104,207,214,9,197,156,213,7,210,34,36,38,66,68,69,99,82,85,102,117,130,86,157,164,337,113,280,351,53,317,263,290,451,409,416,445,363,447,369,430,468,496,512,521,525,528,612,590,15,70,148,560],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":115,"Def":80,"SpAtk":105,"SpDef":80,"Speed":50},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It latches onto prey with its sucker mouth, sinking in its fangs and shocking the prey with powerful electricity.","Species":"EleFish Pokémon","Height":2.1,"Weight":80.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.44,"Y":1.44,"Z":1.44},"TradeValue":65,"Moves":[{"Level":1,"ID":37},{"Level":2,"ID":192},{"Level":3,"ID":1},{"Level":4,"ID":489},{"Level":5,"ID":1},{"Level":6,"ID":306},{"Level":7,"ID":29},{"Level":8,"ID":51},{"Level":9,"ID":435},{"Level":10,"ID":242}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Eelektross +Number|604 +ExperienceType|3 +BaseExperience|232 +Type1|Electric +Type2| +CatchRate|30 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|602 +IsGenderLess|0 +CanBreed|1 +Devolution|603 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|29,174,46,92,192,249,237,173,63,182,240,202,203,218,231,87,216,104,207,214,9,197,156,213,7,210,34,36,38,66,68,69,99,82,85,102,117,130,86,157,164,337,113,280,351,53,317,263,290,451,409,416,445,363,447,369,430,468,496,512,521,525,528,612,590,15,70,148,560 +BaseHP|85 +BaseAttack|115 +BaseDefense|80 +BaseSpAttack|105 +BaseSpDefense|80 +BaseSpeed|50 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It latches onto prey with its sucker mouth, sinking in its fangs and shocking the prey with powerful electricity.\EleFish Pokémon\80.5\2.1\0,148,0 +Scale|1.44 +Move|1,37 +Move|1,192 +Move|1,380 +Move|1,489 +Move|1,569 +Move|1,306 +Move|1,29 +Move|1,51 +Move|1,435 +Move|1,242 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/605.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/605.dat index 55cb805c4..bfb20265f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/605.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/605.dat @@ -1 +1,57 @@ -{"Name":"Elgyem","Number":605,"ExperienceType":"MediumFast","BaseExperience":67,"Type1":"Psychic","Type2":"Blank","CatchRate":255,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":605,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[140,28],"HiddenAbility":148,"EggMoves":[502,310,112,322,50,385,417,384,285,100,94],"Machines":[29,174,92,244,237,173,63,182,203,218,216,94,189,104,207,214,138,197,156,213,211,171,34,36,6,68,99,100,102,117,118,130,149,161,164,347,351,263,290,285,289,412,373,278,416,445,399,363,433,473,477,496,502,590],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":55,"Def":55,"SpAtk":85,"SpDef":55,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Rumors of its origin are linked to a UFO crash site in the desert 50 years ago.","Species":"Cerebral Pokémon","Height":0.5,"Weight":9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":93},{"Level":4,"ID":45},{"Level":8,"ID":377},{"Level":11,"ID":357},{"Level":15,"ID":60},{"Level":18,"ID":29},{"Level":22,"ID":237},{"Level":25,"ID":1},{"Level":29,"ID":1},{"Level":32,"ID":428},{"Level":36,"ID":244},{"Level":39,"ID":94},{"Level":43,"ID":347},{"Level":46,"ID":105},{"Level":50,"ID":1},{"Level":51,"ID":1},{"Level":53,"ID":1},{"Level":56,"ID":1}],"EvolutionConditions":[{"Condition":"42","ConditionType":"Level","Evolution":606,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Elgyem +Number|605 +ExperienceType|1 +BaseExperience|67 +Type1|Psychic +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|605 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|140 +Ability2|28 +HiddenAbility|148 +EggMoves|502,310,112,322,50,385,417,384,285,100,94 +Machines|29,174,92,244,237,173,63,182,203,218,216,94,189,104,207,214,138,197,156,213,211,171,34,36,6,68,99,100,102,117,118,130,149,161,164,347,351,263,290,285,289,412,373,278,416,445,399,363,433,473,477,496,502,590 +BaseHP|55 +BaseAttack|55 +BaseDefense|55 +BaseSpAttack|85 +BaseSpDefense|55 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Rumors of its origin are linked to a UFO crash site in the desert 50 years ago.\Cerebral Pokémon\9\0.5\0,148,0 +Scale|0.7 +Move|1,93 +Move|4,45 +Move|8,377 +Move|11,357 +Move|15,60 +Move|18,29 +Move|22,237 +Move|25,286 +Move|29,493 +Move|32,428 +Move|36,244 +Move|39,94 +Move|43,347 +Move|46,105 +Move|50,470 +Move|50,471 +Move|53,485 +Move|56,472 +TradeValue|50 +EvolutionCondition|606,Level,42,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/606.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/606.dat index dd16a8450..676bcfb4e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/606.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/606.dat @@ -1 +1,58 @@ -{"Name":"Beheeyem","Number":606,"ExperienceType":"MediumFast","BaseExperience":170,"Type1":"Psychic","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":605,"Devolution":605,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[140,28],"HiddenAbility":148,"EggMoves":[502,310,112,322,50,385,417,384,285,100,94],"Machines":[29,174,92,244,237,173,63,182,203,218,216,94,189,104,207,214,138,197,156,213,211,171,34,36,38,6,68,99,100,102,117,118,130,149,161,164,347,351,263,290,285,289,412,373,278,416,445,399,363,433,473,477,496,502,590],"TutorMoves":[],"BaseStats":{"HP":75,"Atk":75,"Def":75,"SpAtk":125,"SpDef":95,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Apparently, it communicates by flashing its three fingers, but those patterns haven't been decoded.","Species":"Cerebral Pokémon","Height":1,"Weight":34.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":93},{"Level":2,"ID":1},{"Level":3,"ID":1},{"Level":4,"ID":45},{"Level":8,"ID":377},{"Level":11,"ID":357},{"Level":15,"ID":60},{"Level":18,"ID":29},{"Level":22,"ID":237},{"Level":25,"ID":1},{"Level":29,"ID":1},{"Level":32,"ID":428},{"Level":36,"ID":244},{"Level":39,"ID":94},{"Level":45,"ID":347},{"Level":50,"ID":105},{"Level":56,"ID":1},{"Level":58,"ID":1},{"Level":63,"ID":1},{"Level":68,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Beheeyem +Number|606 +ExperienceType|1 +BaseExperience|170 +Type1|Psychic +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|605 +IsGenderLess|0 +CanBreed|1 +Devolution|605 +IsMale|50 +Ability1|140 +Ability2|28 +HiddenAbility|148 +EggMoves|502,310,112,322,50,385,417,384,285,100,94 +Machines|29,174,92,244,237,173,63,182,203,218,216,94,189,104,207,214,138,197,156,213,211,171,34,36,38,6,68,99,100,102,117,118,130,149,161,164,347,351,263,290,285,289,412,373,278,416,445,399,363,433,473,477,496,502,590 +BaseHP|75 +BaseAttack|75 +BaseDefense|75 +BaseSpAttack|125 +BaseSpDefense|95 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Apparently, it communicates by flashing its three fingers, but those patterns haven't been decoded.\Cerebral Pokémon\34.5\1\0,148,0 +Scale|1 +Move|1,93 +Move|1,472 +Move|1,485 +Move|4,45 +Move|8,377 +Move|11,357 +Move|15,60 +Move|18,29 +Move|22,237 +Move|25,286 +Move|29,493 +Move|32,428 +Move|36,244 +Move|39,94 +Move|45,347 +Move|50,105 +Move|56,470 +Move|58,471 +Move|63,485 +Move|68,472 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/607.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/607.dat index 12237cdc8..3def6e160 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/607.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/607.dat @@ -1 +1,56 @@ -{"Name":"Litwick","Number":607,"ExperienceType":"MediumSlow","BaseExperience":55,"Type1":"Ghost","Type2":"Fire","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":607,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[18,49],"HiddenAbility":151,"EggMoves":[499,203,114,257,471,51,151,445],"Machines":[174,92,244,237,241,173,63,182,203,218,76,216,94,247,104,207,214,126,138,197,156,213,168,171,99,102,117,149,164,347,269,219,53,263,290,315,412,261,373,371,416,445,399,363,433,477,488,496,510,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":30,"Def":55,"SpAtk":65,"SpDef":55,"Speed":20},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its flame is usually out, but it starts shining when it absorbs life force from people or Pokémon.","Species":"Candle Pokémon","Height":0.3,"Weight":3.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":52},{"Level":2,"ID":310},{"Level":3,"ID":107},{"Level":5,"ID":123},{"Level":7,"ID":83},{"Level":10,"ID":109},{"Level":13,"ID":101},{"Level":16,"ID":261},{"Level":20,"ID":481},{"Level":24,"ID":1},{"Level":28,"ID":506},{"Level":33,"ID":262},{"Level":38,"ID":517},{"Level":43,"ID":174},{"Level":49,"ID":247},{"Level":55,"ID":220},{"Level":61,"ID":315}],"EvolutionConditions":[{"Condition":"41","ConditionType":"Level","Evolution":608,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Litwick +Number|607 +ExperienceType|2 +BaseExperience|55 +Type1|Ghost +Type2|Fire +CatchRate|190 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|607 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|18 +Ability2|49 +HiddenAbility|151 +EggMoves|499,203,114,257,471,51,151,445 +Machines|174,92,244,237,241,173,63,182,203,218,76,216,94,247,104,207,214,126,138,197,156,213,168,171,99,102,117,149,164,347,269,219,53,263,290,315,412,261,373,371,416,445,399,363,433,477,488,496,510,590,148 +BaseHP|50 +BaseAttack|30 +BaseDefense|55 +BaseSpAttack|65 +BaseSpDefense|55 +BaseSpeed|20 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its flame is usually out, but it starts shining when it absorbs life force from people or Pokémon.\Candle Pokémon\3.1\0.3\0,148,0 +Scale|0.7 +Move|1,52 +Move|1,310 +Move|3,107 +Move|5,123 +Move|7,83 +Move|10,109 +Move|13,101 +Move|16,261 +Move|20,481 +Move|24,286 +Move|28,506 +Move|33,262 +Move|38,517 +Move|43,174 +Move|49,247 +Move|55,220 +Move|61,315 +TradeValue|35 +EvolutionCondition|608,Level,41,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/608.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/608.dat index ef2e3a23b..a4b3e3282 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/608.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/608.dat @@ -1 +1,58 @@ -{"Name":"Lampent","Number":608,"ExperienceType":"MediumSlow","BaseExperience":130,"Type1":"Ghost","Type2":"Fire","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":607,"Devolution":607,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[18,49],"HiddenAbility":151,"EggMoves":[499,203,114,257,471,51,151,445],"Machines":[174,92,244,237,241,173,63,182,203,218,76,216,94,247,104,207,214,126,138,197,156,213,168,171,99,102,117,149,164,347,269,219,53,263,290,315,412,261,373,371,416,445,399,363,433,477,488,496,510,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":40,"Def":60,"SpAtk":95,"SpDef":60,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The spirits it absorbs fuel its baleful fire. It hangs around hospitals waiting for people to pass on.","Species":"Lamp Pokémon","Height":0.6,"Weight":13,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":50,"Moves":[{"Level":1,"ID":52},{"Level":2,"ID":310},{"Level":3,"ID":107},{"Level":4,"ID":123},{"Level":5,"ID":107},{"Level":6,"ID":123},{"Level":7,"ID":83},{"Level":10,"ID":109},{"Level":13,"ID":101},{"Level":16,"ID":261},{"Level":20,"ID":481},{"Level":24,"ID":1},{"Level":28,"ID":506},{"Level":33,"ID":262},{"Level":38,"ID":517},{"Level":45,"ID":174},{"Level":53,"ID":247},{"Level":61,"ID":220},{"Level":69,"ID":315}],"EvolutionConditions":[{"Condition":"136","ConditionType":"Item","Evolution":609,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Lampent +Number|608 +ExperienceType|2 +BaseExperience|130 +Type1|Ghost +Type2|Fire +CatchRate|90 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|607 +IsGenderLess|0 +CanBreed|1 +Devolution|607 +IsMale|50 +Ability1|18 +Ability2|49 +HiddenAbility|151 +EggMoves|499,203,114,257,471,51,151,445 +Machines|174,92,244,237,241,173,63,182,203,218,76,216,94,247,104,207,214,126,138,197,156,213,168,171,99,102,117,149,164,347,269,219,53,263,290,315,412,261,373,371,416,445,399,363,433,477,488,496,510,590,148 +BaseHP|60 +BaseAttack|40 +BaseDefense|60 +BaseSpAttack|95 +BaseSpDefense|60 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The spirits it absorbs fuel its baleful fire. It hangs around hospitals waiting for people to pass on.\Lamp Pokémon\13\0.6\0,148,0 +Scale|0.84 +Move|1,52 +Move|1,310 +Move|1,107 +Move|1,123 +Move|3,107 +Move|5,123 +Move|7,83 +Move|10,109 +Move|13,101 +Move|16,261 +Move|20,481 +Move|24,286 +Move|28,506 +Move|33,262 +Move|38,517 +Move|45,174 +Move|53,247 +Move|61,220 +Move|69,315 +TradeValue|50 +EvolutionCondition|609,item,136,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/609.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/609.dat index 3d12b6a47..d97e05b74 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/609.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/609.dat @@ -1 +1,43 @@ -{"Name":"Chandelure","Number":609,"ExperienceType":"MediumSlow","BaseExperience":234,"Type1":"Ghost","Type2":"Fire","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":607,"Devolution":608,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[18,49],"HiddenAbility":151,"EggMoves":[499,203,114,257,471,51,151,445],"Machines":[174,92,244,237,241,173,63,182,203,218,76,216,94,247,104,207,214,126,138,197,156,213,168,171,99,102,117,149,161,164,347,269,219,53,263,290,315,412,261,373,371,416,445,399,363,433,477,488,496,510,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":55,"Def":90,"SpAtk":145,"SpDef":90,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The spirits burned up in its ominous flame lose their way and wander this world forever.","Species":"Luring Pokémon","Height":1,"Weight":34.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":65,"Moves":[{"Level":1,"ID":220},{"Level":2,"ID":123},{"Level":3,"ID":109},{"Level":4,"ID":481},{"Level":5,"ID":506}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Chandelure +Number|609 +ExperienceType|2 +BaseExperience|234 +Type1|Ghost +Type2|Fire +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|607 +IsGenderLess|0 +CanBreed|1 +Devolution|608 +IsMale|50 +Ability1|18 +Ability2|49 +HiddenAbility|151 +EggMoves|499,203,114,257,471,51,151,445 +Machines|174,92,244,237,241,173,63,182,203,218,76,216,94,247,104,207,214,126,138,197,156,213,168,171,99,102,117,149,161,164,347,269,219,53,263,290,315,412,261,373,371,416,445,399,363,433,477,488,496,510,590,148 +BaseHP|60 +BaseAttack|55 +BaseDefense|90 +BaseSpAttack|145 +BaseSpDefense|90 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The spirits burned up in its ominous flame lose their way and wander this world forever.\Luring Pokémon\34.3\1\0,148,0 +Scale|1 +Move|1,220 +Move|1,123 +Move|1,109 +Move|1,481 +Move|1,506 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/61.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/61.dat index 8eb121866..082734728 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/61.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/61.dat @@ -1 +1,56 @@ -{"Name":"Poliwhirl","Number":61,"ExperienceType":"MediumSlow","BaseExperience":135,"Type1":"Water","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":60,"Devolution":60,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[11,6],"HiddenAbility":33,"EggMoves":[61,227,283,203,114,301,170,54,341,287,150,352,346],"Machines":[29,174,92,249,237,173,59,63,196,182,240,203,218,89,216,91,94,189,104,8,207,214,111,197,156,213,168,5,34,36,38,61,55,58,66,68,69,99,90,102,117,118,130,149,164,264,352,258,280,263,290,374,416,445,363,496,503,523,612,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":65,"Def":65,"SpAtk":50,"SpDef":50,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The swirl on its belly subtly undulates. Staring at it may gradually cause drowsiness.","Species":"Tadpole Pokémon","Height":1,"Weight":20,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":25,"Moves":[{"Level":1,"ID":346},{"Level":2,"ID":55},{"Level":3,"ID":95},{"Level":5,"ID":55},{"Level":8,"ID":95},{"Level":11,"ID":145},{"Level":15,"ID":3},{"Level":18,"ID":240},{"Level":21,"ID":34},{"Level":27,"ID":61},{"Level":32,"ID":341},{"Level":37,"ID":187},{"Level":43,"ID":358},{"Level":48,"ID":56},{"Level":53,"ID":426}],"EvolutionConditions":[{"Condition":"82","ConditionType":"HoldItem","Evolution":186,"Trigger":"Trading"},{"Condition":"24","ConditionType":"Item","Evolution":62,"Trigger":"ItemUse"}],"Items":[{"Id":82,"Chance":5}]} \ No newline at end of file +Name|Poliwhirl +Number|61 +ExperienceType|2 +BaseExperience|135 +Type1|Water +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|60 +IsGenderLess|0 +CanBreed|1 +Devolution|60 +IsMale|50 +Ability1|11 +Ability2|6 +HiddenAbility|33 +EggMoves|61,227,283,203,114,301,170,54,341,287,150,352,346 +Machines|29,174,92,249,237,173,59,63,196,182,240,203,218,89,216,91,94,189,104,8,207,214,111,197,156,213,168,5,34,36,38,61,55,58,66,68,69,99,90,102,117,118,130,149,164,264,352,258,280,263,290,374,416,445,363,496,503,523,612,590,57,70,250,127,291 +BaseHP|65 +BaseAttack|65 +BaseDefense|65 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|The swirl on its belly subtly undulates. Staring at it may gradually cause drowsiness.\Tadpole Pokémon\20\1\0,148,0 +Scale|1 +Move|1,346 +Move|1,55 +Move|1,95 +Move|5,55 +Move|8,95 +Move|11,145 +Move|15,3 +Move|18,240 +Move|21,34 +Move|27,61 +Move|32,341 +Move|37,187 +Move|43,358 +Move|48,56 +Move|53,426 +TradeValue|25 +Item|5,82 +EvolutionCondition|186,holditem,82,trade +EvolutionCondition|62,item,24,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/610.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/610.dat index f53695883..61575258d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/610.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/610.dat @@ -1 +1,56 @@ -{"Name":"Axew","Number":610,"ExperienceType":"Slow","BaseExperience":64,"Type1":"Dragon","Type2":"Blank","CatchRate":75,"BaseFriendship":35,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":10455,"EggPokemon":610,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[79,104],"HiddenAbility":127,"EggMoves":[68,406,283,203,116,106,231,400,13,179],"Machines":[223,174,46,92,249,237,241,173,63,182,240,203,218,231,225,216,91,189,104,207,214,197,156,213,210,5,14,25,34,36,99,82,102,117,130,164,264,337,352,269,317,332,263,290,206,374,406,371,416,445,404,363,398,468,496,510,590,15,70],"TutorMoves":[434],"BaseStats":{"HP":46,"Atk":87,"Def":60,"SpAtk":30,"SpDef":40,"Speed":57},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its large tusks have a tendency to break, but each time they grow back, they grow in harder and sturdier.","Species":"Tusk Pokémon","Height":0.6,"Weight":18,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":40,"Moves":[{"Level":1,"ID":10},{"Level":4,"ID":43},{"Level":7,"ID":372},{"Level":10,"ID":82},{"Level":13,"ID":530},{"Level":16,"ID":184},{"Level":20,"ID":163},{"Level":24,"ID":206},{"Level":28,"ID":337},{"Level":32,"ID":349},{"Level":36,"ID":269},{"Level":41,"ID":406},{"Level":46,"ID":14},{"Level":51,"ID":12},{"Level":56,"ID":200},{"Level":61,"ID":416}],"EvolutionConditions":[{"Condition":"38","ConditionType":"Level","Evolution":611,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Axew +Number|610 +ExperienceType|3 +BaseExperience|64 +Type1|Dragon +Type2| +CatchRate|75 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|10455 +EggPokemon|610 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|79 +Ability2|104 +HiddenAbility|127 +EggMoves|68,406,283,203,116,106,231,400,13,179 +Machines|223,174,46,92,249,237,241,173,63,182,240,203,218,231,225,216,91,189,104,207,214,197,156,213,210,5,14,25,34,36,99,82,102,117,130,164,264,337,352,269,317,332,263,290,206,374,406,371,416,445,404,363,398,468,496,510,590,15,70 +TutorMoves|434 +BaseHP|46 +BaseAttack|87 +BaseDefense|60 +BaseSpAttack|30 +BaseSpDefense|40 +BaseSpeed|57 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its large tusks have a tendency to break, but each time they grow back, they grow in harder and sturdier.\Tusk Pokémon\18\0.6\0,148,0 +Scale|0.84 +Move|1,10 +Move|4,43 +Move|7,372 +Move|10,82 +Move|13,530 +Move|16,184 +Move|20,163 +Move|24,206 +Move|28,337 +Move|32,349 +Move|36,269 +Move|41,406 +Move|46,14 +Move|51,12 +Move|56,200 +Move|61,416 +TradeValue|40 +EvolutionCondition|611,Level,38,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/611.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/611.dat index 5b9e79f0c..2782c543a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/611.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/611.dat @@ -1 +1,59 @@ -{"Name":"Fraxure","Number":611,"ExperienceType":"Slow","BaseExperience":144,"Type1":"Dragon","Type2":"Blank","CatchRate":60,"BaseFriendship":35,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":10455,"EggPokemon":610,"Devolution":610,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[79,104],"HiddenAbility":127,"EggMoves":[68,406,283,203,116,106,231,400,13,179],"Machines":[223,174,46,92,249,237,241,173,63,182,240,203,218,231,225,216,91,189,104,207,214,197,156,213,210,5,14,25,34,36,38,66,68,69,99,82,102,117,130,164,264,337,352,269,317,332,263,290,206,374,406,421,371,416,445,404,363,398,468,496,510,525,590,15,70,431],"TutorMoves":[434],"BaseStats":{"HP":66,"Atk":117,"Def":70,"SpAtk":40,"SpDef":50,"Speed":67},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"A broken tusk will not grow back, so it diligently sharpens its tusks on river rocks after the end of a battle.","Species":"Axe Jaw Pokémon","Height":1,"Weight":36,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":60,"Moves":[{"Level":1,"ID":10},{"Level":2,"ID":43},{"Level":3,"ID":372},{"Level":4,"ID":82},{"Level":5,"ID":43},{"Level":7,"ID":372},{"Level":10,"ID":82},{"Level":13,"ID":530},{"Level":16,"ID":184},{"Level":20,"ID":163},{"Level":24,"ID":206},{"Level":28,"ID":337},{"Level":32,"ID":349},{"Level":36,"ID":269},{"Level":42,"ID":406},{"Level":48,"ID":14},{"Level":54,"ID":12},{"Level":60,"ID":200},{"Level":66,"ID":416}],"EvolutionConditions":[{"Condition":"48","ConditionType":"Level","Evolution":612,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Fraxure +Number|611 +ExperienceType|3 +BaseExperience|144 +Type1|Dragon +Type2| +CatchRate|60 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|10455 +EggPokemon|610 +IsGenderLess|0 +CanBreed|1 +Devolution|610 +IsMale|50 +Ability1|79 +Ability2|104 +HiddenAbility|127 +EggMoves|68,406,283,203,116,106,231,400,13,179 +Machines|223,174,46,92,249,237,241,173,63,182,240,203,218,231,225,216,91,189,104,207,214,197,156,213,210,5,14,25,34,36,38,66,68,69,99,82,102,117,130,164,264,337,352,269,317,332,263,290,206,374,406,421,371,416,445,404,363,398,468,496,510,525,590,15,70,431 +TutorMoves|434 +BaseHP|66 +BaseAttack|117 +BaseDefense|70 +BaseSpAttack|40 +BaseSpDefense|50 +BaseSpeed|67 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A broken tusk will not grow back, so it diligently sharpens its tusks on river rocks after the end of a battle.\Axe Jaw Pokémon\36\1\0,148,0 +Scale|1 +Move|1,10 +Move|1,43 +Move|1,372 +Move|1,82 +Move|4,43 +Move|7,372 +Move|10,82 +Move|13,530 +Move|16,184 +Move|20,163 +Move|24,206 +Move|28,337 +Move|32,349 +Move|36,269 +Move|42,406 +Move|48,14 +Move|54,12 +Move|60,200 +Move|66,416 +TradeValue|60 +EvolutionCondition|612,Level,48,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/612.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/612.dat index b11e3715e..f75457f33 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/612.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/612.dat @@ -1 +1,59 @@ -{"Name":"Haxorus","Number":612,"ExperienceType":"Slow","BaseExperience":243,"Type1":"Dragon","Type2":"Blank","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":10455,"EggPokemon":610,"Devolution":611,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[79,104],"HiddenAbility":127,"EggMoves":[68,406,283,203,116,106,231,400,13,179],"Machines":[223,174,46,92,249,237,241,173,63,182,240,203,218,231,225,89,216,91,189,104,207,214,197,156,213,210,5,14,25,34,36,38,66,68,69,99,82,102,117,130,157,164,264,337,352,269,280,351,317,332,263,290,411,206,374,406,421,371,416,445,404,363,398,447,468,496,510,523,525,590,15,57,70,431,560],"TutorMoves":[434],"BaseStats":{"HP":76,"Atk":147,"Def":90,"SpAtk":60,"SpDef":70,"Speed":97},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its tusks are incredibly destructive. They can easily slice through a thick, sturdy steel column every time.","Species":"Axe Jaw Pokémon","Height":1.8,"Weight":105.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":75,"Moves":[{"Level":1,"ID":200},{"Level":2,"ID":10},{"Level":3,"ID":43},{"Level":4,"ID":372},{"Level":5,"ID":82},{"Level":6,"ID":43},{"Level":7,"ID":372},{"Level":10,"ID":82},{"Level":13,"ID":530},{"Level":16,"ID":184},{"Level":20,"ID":163},{"Level":24,"ID":206},{"Level":28,"ID":337},{"Level":32,"ID":349},{"Level":36,"ID":269},{"Level":42,"ID":406},{"Level":50,"ID":14},{"Level":58,"ID":12},{"Level":66,"ID":200},{"Level":74,"ID":416}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Haxorus +Number|612 +ExperienceType|3 +BaseExperience|243 +Type1|Dragon +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|10455 +EggPokemon|610 +IsGenderLess|0 +CanBreed|1 +Devolution|611 +IsMale|50 +Ability1|79 +Ability2|104 +HiddenAbility|127 +EggMoves|68,406,283,203,116,106,231,400,13,179 +Machines|223,174,46,92,249,237,241,173,63,182,240,203,218,231,225,89,216,91,189,104,207,214,197,156,213,210,5,14,25,34,36,38,66,68,69,99,82,102,117,130,157,164,264,337,352,269,280,351,317,332,263,290,411,206,374,406,421,371,416,445,404,363,398,447,468,496,510,523,525,590,15,57,70,431,560 +TutorMoves|434 +BaseHP|76 +BaseAttack|147 +BaseDefense|90 +BaseSpAttack|60 +BaseSpDefense|70 +BaseSpeed|97 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its tusks are incredibly destructive. They can easily slice through a thick, sturdy steel column every time.\Axe Jaw Pokémon\105.5\1.8\0,148,0 +Scale|1.32 +Move|1,200 +Move|1,10 +Move|1,43 +Move|1,372 +Move|1,82 +Move|4,43 +Move|7,372 +Move|10,82 +Move|13,530 +Move|16,184 +Move|20,163 +Move|24,206 +Move|28,337 +Move|32,349 +Move|36,269 +Move|42,406 +Move|50,14 +Move|58,12 +Move|66,200 +Move|74,416 +TradeValue|75 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/613.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/613.dat index 54cf302f1..5398e689b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/613.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/613.dat @@ -1 +1,56 @@ -{"Name":"Cubchoo","Number":613,"ExperienceType":"MediumFast","BaseExperience":61,"Type1":"Ice","Type2":"Blank","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":613,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[81],"HiddenAbility":155,"EggMoves":[372,419,227,264,8,400,583,214,281],"Machines":[223,174,92,249,237,173,59,63,196,182,203,218,216,91,189,104,8,207,214,197,156,213,210,5,25,36,58,99,102,117,164,264,352,258,317,332,263,290,374,421,416,419,445,363,447,468,496,497,524,612,590,15,57,70],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":70,"Def":40,"SpAtk":60,"SpDef":40,"Speed":40},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Their snot is a barometer of health. When healthy, their snot is sticky and the power of their ice moves increases.","Species":"Chill Pokémon","Height":0.5,"Weight":8.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":45,"Moves":[{"Level":1,"ID":45},{"Level":5,"ID":181},{"Level":9,"ID":117},{"Level":13,"ID":196},{"Level":15,"ID":589},{"Level":17,"ID":154},{"Level":21,"ID":362},{"Level":25,"ID":203},{"Level":29,"ID":204},{"Level":33,"ID":163},{"Level":36,"ID":175},{"Level":41,"ID":156},{"Level":45,"ID":59},{"Level":49,"ID":258},{"Level":53,"ID":37},{"Level":57,"ID":329}],"EvolutionConditions":[{"Condition":"37","ConditionType":"Level","Evolution":614,"Trigger":"LevelUp"}],"Items":[{"Id":2004,"Chance":5}]} \ No newline at end of file +Name|Cubchoo +Number|613 +ExperienceType|1 +BaseExperience|61 +Type1|Ice +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|613 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|81 +Ability2|Nothing +HiddenAbility|155 +EggMoves|372,419,227,264,8,400,583,214,281 +Machines|223,174,92,249,237,173,59,63,196,182,203,218,216,91,189,104,8,207,214,197,156,213,210,5,25,36,58,99,102,117,164,264,352,258,317,332,263,290,374,421,416,419,445,363,447,468,496,497,524,612,590,15,57,70 +BaseHP|55 +BaseAttack|70 +BaseDefense|40 +BaseSpAttack|60 +BaseSpDefense|40 +BaseSpeed|40 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Their snot is a barometer of health. When healthy, their snot is sticky and the power of their ice moves increases.\Chill Pokémon\8.5\0.5\0,148,0 +Scale|0.7 +Move|1,45 +Move|5,181 +Move|9,117 +Move|13,196 +Move|15,589 +Move|17,154 +Move|21,362 +Move|25,203 +Move|29,204 +Move|33,163 +Move|36,175 +Move|41,156 +Move|45,59 +Move|49,258 +Move|53,37 +Move|57,329 +TradeValue|45 +Item|5,2004 +EvolutionCondition|614,level,37,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/614.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/614.dat index 5a6b53fba..3d6c6fa69 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/614.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/614.dat @@ -1 +1,61 @@ -{"Name":"Beartic","Number":614,"ExperienceType":"MediumFast","BaseExperience":170,"Type1":"Ice","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":613,"Devolution":613,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[81],"HiddenAbility":33,"EggMoves":[372,419,227,264,8,400,583,214,281],"Machines":[223,174,46,92,249,237,173,59,63,196,182,203,218,216,91,189,104,8,207,214,197,156,213,210,5,14,25,34,36,38,58,66,68,69,99,102,117,130,157,164,264,352,258,339,269,280,317,332,263,290,411,374,421,416,444,419,445,363,447,468,496,497,523,524,612,590,15,57,70,431,291],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":110,"Def":80,"SpAtk":70,"SpDef":80,"Speed":50},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They love the cold seas of the north. They create pathways around the ocean waters by freezing their own breath.","Species":"Freezing Pokémon","Height":2.6,"Weight":260,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.64,"Y":1.64,"Z":1.64},"TradeValue":65,"Moves":[{"Level":1,"ID":329},{"Level":2,"ID":37},{"Level":3,"ID":276},{"Level":4,"ID":453},{"Level":5,"ID":45},{"Level":6,"ID":181},{"Level":7,"ID":117},{"Level":8,"ID":196},{"Level":9,"ID":589},{"Level":13,"ID":196},{"Level":17,"ID":154},{"Level":21,"ID":362},{"Level":25,"ID":203},{"Level":29,"ID":207},{"Level":33,"ID":163},{"Level":36,"ID":175},{"Level":37,"ID":556},{"Level":41,"ID":156},{"Level":45,"ID":59},{"Level":53,"ID":258},{"Level":59,"ID":37},{"Level":66,"ID":329}],"EvolutionConditions":[],"Items":[{"Id":2004,"Chance":5}]} \ No newline at end of file +Name|Beartic +Number|614 +ExperienceType|1 +BaseExperience|170 +Type1|Ice +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|613 +IsGenderLess|0 +CanBreed|1 +Devolution|613 +IsMale|50 +Ability1|81 +Ability2|Nothing +HiddenAbility|33 +EggMoves|372,419,227,264,8,400,583,214,281 +Machines|223,174,46,92,249,237,173,59,63,196,182,203,218,216,91,189,104,8,207,214,197,156,213,210,5,14,25,34,36,38,58,66,68,69,99,102,117,130,157,164,264,352,258,339,269,280,317,332,263,290,411,374,421,416,444,419,445,363,447,468,496,497,523,524,612,590,15,57,70,431,291 +BaseHP|95 +BaseAttack|110 +BaseDefense|80 +BaseSpAttack|70 +BaseSpDefense|80 +BaseSpeed|50 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They love the cold seas of the north. They create pathways around the ocean waters by freezing their own breath.\Freezing Pokémon\260\2.6\0,148,0 +Scale|1.64 +Move|1,329 +Move|1,37 +Move|1,276 +Move|1,453 +Move|1,45 +Move|1,181 +Move|1,117 +Move|1,196 +Move|9,589 +Move|13,196 +Move|17,154 +Move|21,362 +Move|25,203 +Move|29,207 +Move|33,163 +Move|36,175 +Move|37,556 +Move|41,156 +Move|45,59 +Move|53,258 +Move|59,37 +Move|66,329 +TradeValue|65 +Item|5,2004 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/615.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/615.dat index 935fb281e..c77ef41a9 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/615.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/615.dat @@ -1 +1,62 @@ -{"Name":"Cryogonal","Number":615,"ExperienceType":"MediumFast","BaseExperience":170,"Type1":"Ice","Type2":"Blank","CatchRate":25,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":615,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,205,92,192,237,173,59,63,196,182,203,218,76,216,104,207,214,111,197,156,213,36,58,99,102,115,117,120,153,164,352,258,113,263,290,416,419,445,363,398,430,496,512,524,590],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":50,"Def":30,"SpAtk":95,"SpDef":135,"Speed":105},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They are composed of ice crystals. They capture prey with chains of ice, freezing the prey at -148 F.","Species":"Crystallizing Pokémon","Height":1.1,"Weight":148,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":35,"Moves":[{"Level":1,"ID":329},{"Level":2,"ID":400},{"Level":3,"ID":420},{"Level":4,"ID":54},{"Level":5,"ID":114},{"Level":6,"ID":20},{"Level":7,"ID":420},{"Level":9,"ID":159},{"Level":13,"ID":229},{"Level":17,"ID":196},{"Level":21,"ID":54},{"Level":22,"ID":114},{"Level":25,"ID":62},{"Level":29,"ID":151},{"Level":33,"ID":58},{"Level":37,"ID":113},{"Level":38,"ID":115},{"Level":41,"ID":163},{"Level":45,"ID":109},{"Level":49,"ID":105},{"Level":50,"ID":1},{"Level":53,"ID":76},{"Level":57,"ID":400},{"Level":61,"ID":329}],"EvolutionConditions":[],"Items":[{"Id":107,"Chance":5}]} \ No newline at end of file +Name|Cryogonal +Number|615 +ExperienceType|1 +BaseExperience|170 +Type1|Ice +Type2| +CatchRate|25 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|615 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,205,92,192,237,173,59,63,196,182,203,218,76,216,104,207,214,111,197,156,213,36,58,99,102,115,117,120,153,164,352,258,113,263,290,416,419,445,363,398,430,496,512,524,590 +BaseHP|70 +BaseAttack|50 +BaseDefense|30 +BaseSpAttack|95 +BaseSpDefense|135 +BaseSpeed|105 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They are composed of ice crystals. They capture prey with chains of ice, freezing the prey at -148 F.\Crystallizing Pokémon\148\1.1\0,148,0 +Scale|1.04 +Move|1,329 +Move|1,400 +Move|1,420 +Move|1,54 +Move|1,114 +Move|1,20 +Move|5,420 +Move|9,159 +Move|13,229 +Move|17,196 +Move|21,54 +Move|21,114 +Move|25,62 +Move|29,151 +Move|33,58 +Move|37,113 +Move|37,115 +Move|41,163 +Move|45,109 +Move|49,105 +Move|50,573 +Move|53,76 +Move|57,400 +Move|61,329 +TradeValue|35 +Item|5,107 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/616.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/616.dat index 4af470c46..9c1321057 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/616.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/616.dat @@ -1 +1,54 @@ -{"Name":"Shelmet","Number":616,"ExperienceType":"MediumFast","BaseExperience":61,"Type1":"Bug","Type2":"Blank","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":616,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[93,75],"HiddenAbility":142,"EggMoves":[226,38,227,203,364,470,170,189,228,191],"Machines":[174,92,237,173,63,182,240,203,218,216,104,207,214,188,197,156,213,210,32,36,99,72,102,117,130,164,263,290,412,416,445,363,474,496,522,611,590],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":40,"Def":85,"SpAtk":40,"SpDef":65,"Speed":25},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it and Karrablast are together, and both receive electrical stimulation, they both evolve.","Species":"Snail Pokémon","Height":0.4,"Weight":7.7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":25,"Moves":[{"Level":1,"ID":141},{"Level":4,"ID":51},{"Level":8,"ID":117},{"Level":13,"ID":174},{"Level":16,"ID":522},{"Level":20,"ID":72},{"Level":25,"ID":281},{"Level":28,"ID":182},{"Level":32,"ID":151},{"Level":37,"ID":202},{"Level":40,"ID":34},{"Level":44,"ID":405},{"Level":49,"ID":105},{"Level":50,"ID":385},{"Level":56,"ID":1}],"EvolutionConditions":[{"Condition":"588","ConditionType":"Trade","Evolution":617,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Shelmet +Number|616 +ExperienceType|1 +BaseExperience|61 +Type1|Bug +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|616 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|93 +Ability2|75 +HiddenAbility|142 +EggMoves|226,38,227,203,364,470,170,189,228,191 +Machines|174,92,237,173,63,182,240,203,218,216,104,207,214,188,197,156,213,210,32,36,99,72,102,117,130,164,263,290,412,416,445,363,474,496,522,611,590 +BaseHP|50 +BaseAttack|40 +BaseDefense|85 +BaseSpAttack|40 +BaseSpDefense|65 +BaseSpeed|25 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it and Karrablast are together, and both receive electrical stimulation, they both evolve.\Snail Pokémon\7.7\0.4\0,148,0 +Scale|0.7 +Move|1,141 +Move|4,51 +Move|8,117 +Move|13,174 +Move|16,522 +Move|20,72 +Move|25,281 +Move|28,182 +Move|32,151 +Move|37,202 +Move|40,34 +Move|44,405 +Move|49,105 +Move|50,385 +Move|56,515 +TradeValue|25 +EvolutionCondition|617,trade,588,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/617.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/617.dat index b3e7a2dc1..204a296c3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/617.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/617.dat @@ -1 +1,58 @@ -{"Name":"Accelgor","Number":617,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Bug","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":616,"Devolution":616,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[93,60],"HiddenAbility":84,"EggMoves":[226,38,227,203,364,470,170,189,228,191],"Machines":[174,92,237,173,63,182,240,202,203,218,216,104,207,214,188,201,197,156,213,210,32,36,68,99,72,102,117,130,164,263,290,411,412,416,445,363,369,474,496,522,611,590],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":70,"Def":40,"SpAtk":100,"SpDef":60,"Speed":145},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When its body dries out, it weakens. So it wraps a membrane around itself for protection while it spits poison.","Species":"Shell Out Pokémon","Height":0.8,"Weight":25.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":45,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":384},{"Level":3,"ID":141},{"Level":4,"ID":491},{"Level":5,"ID":104},{"Level":6,"ID":98},{"Level":7,"ID":491},{"Level":8,"ID":104},{"Level":13,"ID":98},{"Level":16,"ID":522},{"Level":20,"ID":72},{"Level":25,"ID":129},{"Level":28,"ID":1},{"Level":32,"ID":97},{"Level":37,"ID":202},{"Level":40,"ID":369},{"Level":44,"ID":405},{"Level":49,"ID":105},{"Level":52,"ID":384},{"Level":56,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Accelgor +Number|617 +ExperienceType|1 +BaseExperience|173 +Type1|Bug +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|616 +IsGenderLess|0 +CanBreed|1 +Devolution|616 +IsMale|50 +Ability1|93 +Ability2|60 +HiddenAbility|84 +EggMoves|226,38,227,203,364,470,170,189,228,191 +Machines|174,92,237,173,63,182,240,202,203,218,216,104,207,214,188,201,197,156,213,210,32,36,68,99,72,102,117,130,164,263,290,411,412,416,445,363,369,474,496,522,611,590 +BaseHP|80 +BaseAttack|70 +BaseDefense|40 +BaseSpAttack|100 +BaseSpDefense|60 +BaseSpeed|145 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|When its body dries out, it weakens. So it wraps a membrane around itself for protection while it spits poison.\Shell Out Pokémon\25.3\0.8\0,148,0 +Scale|0.92 +Move|1,515 +Move|1,384 +Move|1,141 +Move|1,491 +Move|1,104 +Move|1,98 +Move|4,491 +Move|8,104 +Move|13,98 +Move|16,522 +Move|20,72 +Move|25,129 +Move|28,382 +Move|32,97 +Move|37,202 +Move|40,369 +Move|44,405 +Move|49,105 +Move|52,384 +Move|56,515 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/618.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/618.dat index 7a904f274..b4aa6d331 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/618.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/618.dat @@ -1 +1,58 @@ -{"Name":"Stunfisk","Number":618,"ExperienceType":"MediumFast","BaseExperience":165,"Type1":"Ground","Type2":"Electric","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Undiscovered","BaseEggSteps":5355,"EggPokemon":618,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[9,7],"HiddenAbility":8,"EggMoves":[310,174,414,598,382,220,513,351,209,180,281,214],"Machines":[174,205,92,192,237,173,63,182,240,203,218,87,89,216,91,189,104,207,214,188,201,111,197,156,213,34,36,99,85,102,117,157,164,351,317,263,290,371,416,444,446,445,363,482,496,503,523,611,590,57,148,250],"TutorMoves":[],"BaseStats":{"HP":109,"Atk":66,"Def":84,"SpAtk":81,"SpDef":99,"Speed":32},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When its opponent can't be paralyzed, it contorts itself with undexpected speed and flops away.","Species":"Trap Pokémon","Height":0.7,"Weight":11,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":30,"Moves":[{"Level":1,"ID":90},{"Level":2,"ID":175},{"Level":3,"ID":33},{"Level":4,"ID":55},{"Level":5,"ID":189},{"Level":6,"ID":300},{"Level":7,"ID":117},{"Level":9,"ID":84},{"Level":13,"ID":341},{"Level":17,"ID":1},{"Level":21,"ID":426},{"Level":25,"ID":435},{"Level":30,"ID":203},{"Level":35,"ID":340},{"Level":40,"ID":330},{"Level":45,"ID":85},{"Level":50,"ID":279},{"Level":55,"ID":175},{"Level":61,"ID":90}],"EvolutionConditions":[],"Items":[{"Id":76,"Chance":5}]} \ No newline at end of file +Name|Stunfisk +Number|618 +ExperienceType|1 +BaseExperience|165 +Type1|Ground +Type2|Electric +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Undiscovered +BaseEggSteps|5355 +EggPokemon|618 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|9 +Ability2|7 +HiddenAbility|8 +EggMoves|310,174,414,598,382,220,513,351,209,180,281,214 +Machines|174,205,92,192,237,173,63,182,240,203,218,87,89,216,91,189,104,207,214,188,201,111,197,156,213,34,36,99,85,102,117,157,164,351,317,263,290,371,416,444,446,445,363,482,496,503,523,611,590,57,148,250 +BaseHP|109 +BaseAttack|66 +BaseDefense|84 +BaseSpAttack|81 +BaseSpDefense|99 +BaseSpeed|32 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When its opponent can't be paralyzed, it contorts itself with undexpected speed and flops away.\Trap Pokémon\11\0.7\0,148,0 +Scale|0.88 +Move|1,90 +Move|1,175 +Move|1,33 +Move|1,55 +Move|1,189 +Move|1,300 +Move|5,117 +Move|9,84 +Move|13,341 +Move|17,293 +Move|21,426 +Move|25,435 +Move|30,203 +Move|35,340 +Move|40,330 +Move|45,85 +Move|50,279 +Move|55,175 +Move|61,90 +TradeValue|30 +Item|5,76 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/619.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/619.dat index e0598550d..2ec09f344 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/619.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/619.dat @@ -1 +1,55 @@ -{"Name":"Mienfoo","Number":619,"ExperienceType":"MediumSlow","BaseExperience":70,"Type1":"Fighting","Type2":"Blank","CatchRate":180,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"HumanLike","BaseEggSteps":6630,"EggPokemon":619,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[39,144],"HiddenAbility":120,"EggMoves":[502,226,203,364,282,67,382,265,233],"Machines":[223,174,92,249,244,237,241,173,63,182,240,203,218,216,91,189,104,207,214,129,197,156,213,210,5,14,25,34,36,6,66,68,69,99,102,115,117,118,157,164,264,347,339,269,280,317,332,263,290,411,409,371,416,444,445,363,398,447,369,490,496,512,514,526,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":85,"Def":50,"SpAtk":55,"SpDef":50,"Speed":65},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It takes pride in the speed at which it can use moves. What it loses in power, it makes up for in quantity.","Species":"Martial Arts Pokémon","Height":0.9,"Weight":20,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":30,"Moves":[{"Level":1,"ID":1},{"Level":5,"ID":96},{"Level":9,"ID":197},{"Level":13,"ID":252},{"Level":17,"ID":3},{"Level":21,"ID":129},{"Level":25,"ID":347},{"Level":29,"ID":395},{"Level":33,"ID":409},{"Level":37,"ID":26},{"Level":41,"ID":369},{"Level":45,"ID":1},{"Level":49,"ID":340},{"Level":50,"ID":136},{"Level":57,"ID":179},{"Level":61,"ID":396}],"EvolutionConditions":[{"Condition":"50","ConditionType":"Level","Evolution":620,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Mienfoo +Number|619 +ExperienceType|2 +BaseExperience|70 +Type1|Fighting +Type2| +CatchRate|180 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|6630 +EggPokemon|619 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|39 +Ability2|144 +HiddenAbility|120 +EggMoves|502,226,203,364,282,67,382,265,233 +Machines|223,174,92,249,244,237,241,173,63,182,240,203,218,216,91,189,104,207,214,129,197,156,213,210,5,14,25,34,36,6,66,68,69,99,102,115,117,118,157,164,264,347,339,269,280,317,332,263,290,411,409,371,416,444,445,363,398,447,369,490,496,512,514,526,612,590,70,431 +BaseHP|45 +BaseAttack|85 +BaseDefense|50 +BaseSpAttack|55 +BaseSpDefense|50 +BaseSpeed|65 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It takes pride in the speed at which it can use moves. What it loses in power, it makes up for in quantity.\Martial Arts Pokémon\20\0.9\0,148,0 +Scale|0.96 +Move|1,1 +Move|5,96 +Move|9,197 +Move|13,252 +Move|17,3 +Move|21,129 +Move|25,347 +Move|29,395 +Move|33,409 +Move|37,26 +Move|41,369 +Move|45,501 +Move|49,340 +Move|50,136 +Move|57,179 +Move|61,396 +TradeValue|30 +EvolutionCondition|620,level,50,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/62.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/62.dat index 05d443c07..c5764f68f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/62.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/62.dat @@ -1 +1,47 @@ -{"Name":"Poliwrath","Number":62,"ExperienceType":"MediumSlow","BaseExperience":225,"Type1":"Water","Type2":"Fighting","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":60,"Devolution":61,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[11,6],"HiddenAbility":33,"EggMoves":[61,227,283,203,114,301,170,54,341,287,150,352,346],"Machines":[223,29,174,92,249,237,173,59,63,196,182,240,203,218,89,216,91,94,189,104,8,207,214,111,197,156,213,168,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,118,130,149,157,164,264,352,258,339,280,317,263,290,411,374,371,416,445,363,398,490,496,503,523,526,612,590,57,70,250,127,431,291],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":95,"Def":95,"SpAtk":70,"SpDef":90,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":3,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This strong and skilled swimmer is even capable of crossing the Pacific Ocean just by kicking.","Species":"Tadpole Pokémon","Height":1.3,"Weight":54,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":45,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":61},{"Level":3,"ID":95},{"Level":4,"ID":3},{"Level":5,"ID":66},{"Level":32,"ID":223},{"Level":43,"ID":170},{"Level":53,"ID":1}],"EvolutionConditions":[],"Items":[{"Id":82,"Chance":5}]} \ No newline at end of file +Name|Poliwrath +Number|62 +ExperienceType|2 +BaseExperience|225 +Type1|Water +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|60 +IsGenderLess|0 +CanBreed|1 +Devolution|61 +IsMale|50 +Ability1|11 +Ability2|6 +HiddenAbility|33 +EggMoves|61,227,283,203,114,301,170,54,341,287,150,352,346 +Machines|223,29,174,92,249,237,173,59,63,196,182,240,203,218,89,216,91,94,189,104,8,207,214,111,197,156,213,168,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,118,130,149,157,164,264,352,258,339,280,317,263,290,411,374,371,416,445,363,398,490,496,503,523,526,612,590,57,70,250,127,431,291 +BaseHP|90 +BaseAttack|95 +BaseDefense|95 +BaseSpAttack|70 +BaseSpDefense|90 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This strong and skilled swimmer is even capable of crossing the Pacific Ocean just by kicking.\Tadpole Pokémon\54\1.3\0,148,0 +Scale|1.12 +Move|1,509 +Move|1,61 +Move|1,95 +Move|1,3 +Move|1,66 +Move|32,223 +Move|43,170 +Move|53,509 +TradeValue|45 +Item|5,82 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/620.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/620.dat index 5189a8ec1..37b3b581c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/620.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/620.dat @@ -1 +1,59 @@ -{"Name":"Mienshao","Number":620,"ExperienceType":"MediumSlow","BaseExperience":179,"Type1":"Fighting","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"HumanLike","BaseEggSteps":6630,"EggPokemon":619,"Devolution":619,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[39,144],"HiddenAbility":120,"EggMoves":[502,226,203,364,282,67,382,265,233],"Machines":[223,174,92,249,244,237,241,173,63,182,240,203,218,216,91,189,104,207,214,129,197,156,213,210,5,14,25,34,36,38,6,66,68,69,99,102,115,117,118,130,157,164,264,347,339,269,280,317,332,263,290,411,409,371,416,444,445,363,398,447,369,490,496,512,514,526,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":125,"Def":60,"SpAtk":95,"SpDef":60,"Speed":105},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Using the long fur on its arms like whips, it launches into combo attacks that, once started, no one can stop.","Species":"Martial Arts Pokémon","Height":1.4,"Weight":35.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":50,"Moves":[{"Level":1,"ID":396},{"Level":2,"ID":179},{"Level":3,"ID":1},{"Level":4,"ID":96},{"Level":5,"ID":197},{"Level":6,"ID":252},{"Level":7,"ID":96},{"Level":9,"ID":197},{"Level":13,"ID":252},{"Level":17,"ID":3},{"Level":21,"ID":129},{"Level":25,"ID":347},{"Level":29,"ID":395},{"Level":33,"ID":409},{"Level":37,"ID":26},{"Level":41,"ID":369},{"Level":45,"ID":1},{"Level":49,"ID":340},{"Level":56,"ID":136},{"Level":63,"ID":179},{"Level":70,"ID":396}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Mienshao +Number|620 +ExperienceType|2 +BaseExperience|179 +Type1|Fighting +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|HumanLike +BaseEggSteps|6630 +EggPokemon|619 +IsGenderLess|0 +CanBreed|1 +Devolution|619 +IsMale|50 +Ability1|39 +Ability2|144 +HiddenAbility|120 +EggMoves|502,226,203,364,282,67,382,265,233 +Machines|223,174,92,249,244,237,241,173,63,182,240,203,218,216,91,189,104,207,214,129,197,156,213,210,5,14,25,34,36,38,6,66,68,69,99,102,115,117,118,130,157,164,264,347,339,269,280,317,332,263,290,411,409,371,416,444,445,363,398,447,369,490,496,512,514,526,612,590,70,431 +BaseHP|65 +BaseAttack|125 +BaseDefense|60 +BaseSpAttack|95 +BaseSpDefense|60 +BaseSpeed|105 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Using the long fur on its arms like whips, it launches into combo attacks that, once started, no one can stop.\Martial Arts Pokémon\35.5\1.4\0,148,0 +Scale|1.16 +Move|1,396 +Move|1,179 +Move|1,1 +Move|1,96 +Move|1,197 +Move|1,252 +Move|5,96 +Move|9,197 +Move|13,252 +Move|17,3 +Move|21,129 +Move|25,347 +Move|29,395 +Move|33,409 +Move|37,26 +Move|41,369 +Move|45,469 +Move|49,340 +Move|56,136 +Move|63,179 +Move|70,396 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/621.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/621.dat index 49e5879ac..48ffc0c1e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/621.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/621.dat @@ -1 +1,56 @@ -{"Name":"Druddigon","Number":621,"ExperienceType":"MediumFast","BaseExperience":170,"Type1":"Dragon","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":7905,"EggPokemon":621,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[24,125],"HiddenAbility":104,"EggMoves":[306,185,424,137,231,232,342,228,289,389,422],"Machines":[223,174,46,92,192,249,237,241,173,63,182,240,203,218,231,225,89,216,91,189,104,207,214,188,9,197,156,213,7,210,5,25,32,34,36,38,66,68,69,99,82,102,117,130,157,164,264,337,352,269,351,53,317,332,259,263,290,289,411,374,451,406,421,371,416,432,446,445,399,363,430,468,479,496,510,514,523,525,555,612,590,15,57,70,431,560],"TutorMoves":[434],"BaseStats":{"HP":77,"Atk":120,"Def":90,"SpAtk":60,"SpDef":90,"Speed":48},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It runs through the narrow tunnels formed by Excadrill and Onix. It uses its sharp claws to catch prey.","Species":"Cave Pokémon","Height":1.6,"Weight":139,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":55,"Moves":[{"Level":1,"ID":43},{"Level":2,"ID":10},{"Level":5,"ID":468},{"Level":9,"ID":44},{"Level":13,"ID":184},{"Level":18,"ID":82},{"Level":21,"ID":163},{"Level":25,"ID":242},{"Level":27,"ID":337},{"Level":31,"ID":498},{"Level":35,"ID":279},{"Level":40,"ID":400},{"Level":45,"ID":525},{"Level":49,"ID":431},{"Level":55,"ID":276},{"Level":62,"ID":200}],"EvolutionConditions":[],"Items":[{"Id":144,"Chance":5}]} \ No newline at end of file +Name|Druddigon +Number|621 +ExperienceType|1 +BaseExperience|170 +Type1|Dragon +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|7905 +EggPokemon|621 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|24 +Ability2|125 +HiddenAbility|104 +EggMoves|306,185,424,137,231,232,342,228,289,389,422 +Machines|223,174,46,92,192,249,237,241,173,63,182,240,203,218,231,225,89,216,91,189,104,207,214,188,9,197,156,213,7,210,5,25,32,34,36,38,66,68,69,99,82,102,117,130,157,164,264,337,352,269,351,53,317,332,259,263,290,289,411,374,451,406,421,371,416,432,446,445,399,363,430,468,479,496,510,514,523,525,555,612,590,15,57,70,431,560 +TutorMoves|434 +BaseHP|77 +BaseAttack|120 +BaseDefense|90 +BaseSpAttack|60 +BaseSpDefense|90 +BaseSpeed|48 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It runs through the narrow tunnels formed by Excadrill and Onix. It uses its sharp claws to catch prey.\Cave Pokémon\139\1.6\0,148,0 +Scale|1.24 +Move|1,43 +Move|1,10 +Move|5,468 +Move|9,44 +Move|13,184 +Move|18,82 +Move|21,163 +Move|25,242 +Move|27,337 +Move|31,498 +Move|35,279 +Move|40,400 +Move|45,525 +Move|49,431 +Move|55,276 +Move|62,200 +TradeValue|55 +Item|5,144 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/622.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/622.dat index 117dfa703..8bf4d2881 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/622.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/622.dat @@ -1 +1,52 @@ -{"Name":"Golett","Number":622,"ExperienceType":"MediumFast","BaseExperience":61,"Type1":"Ground","Type2":"Ghost","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":622,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[89,103],"HiddenAbility":99,"EggMoves":[],"Machines":[223,174,205,92,249,237,173,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,111,9,197,156,213,168,7,5,25,34,36,58,99,90,102,117,120,130,149,157,164,264,219,280,317,263,290,411,374,409,416,397,360,446,445,363,447,477,490,496,523,612,590,70,148],"TutorMoves":[],"BaseStats":{"HP":59,"Atk":74,"Def":50,"SpAtk":35,"SpDef":50,"Speed":35},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Ancient science fashioned this Pokémon from clay. It's been active for thousands of years.","Species":"Automaton Pokémon","Height":1,"Weight":92,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":111},{"Level":3,"ID":310},{"Level":5,"ID":189},{"Level":9,"ID":205},{"Level":13,"ID":325},{"Level":17,"ID":334},{"Level":21,"ID":5},{"Level":25,"ID":222},{"Level":30,"ID":223},{"Level":35,"ID":101},{"Level":40,"ID":174},{"Level":45,"ID":89},{"Level":50,"ID":359},{"Level":55,"ID":264}],"EvolutionConditions":[{"Condition":"43","ConditionType":"Level","Evolution":623,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Golett +Number|622 +ExperienceType|1 +BaseExperience|61 +Type1|Ground +Type2|Ghost +CatchRate|190 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|622 +Devolution|0 +IsGenderLess|1 +IsMale|0.0 +Ability1|89 +Ability2|103 +HiddenAbility|99 +Machines|223,174,205,92,249,237,173,63,196,182,240,203,218,89,216,94,247,189,104,8,207,214,111,9,197,156,213,168,7,5,25,34,36,58,99,90,102,117,120,130,149,157,164,264,219,280,317,263,290,411,374,409,416,397,360,446,445,363,447,477,490,496,523,612,590,70,148 +BaseHP|59 +BaseAttack|74 +BaseDefense|50 +BaseSpAttack|35 +BaseSpDefense|50 +BaseSpeed|35 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Ancient science fashioned this Pokémon from clay. It's been active for thousands of years.\Automaton Pokémon\92\1\0,148,0 +Scale|1 +Move|1,1 +Move|1,111 +Move|1,310 +Move|5,189 +Move|9,205 +Move|13,325 +Move|17,334 +Move|21,5 +Move|25,222 +Move|30,223 +Move|35,101 +Move|40,174 +Move|45,89 +Move|50,359 +Move|55,264 +EvolutionCondition|623,Level,43,Level +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/623.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/623.dat index 5ccf7decb..7291d975f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/623.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/623.dat @@ -1 +1,56 @@ -{"Name":"Golurk","Number":623,"ExperienceType":"MediumFast","BaseExperience":169,"Type1":"Ground","Type2":"Ghost","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":622,"Devolution":622,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[89,103],"HiddenAbility":99,"EggMoves":[],"Machines":[223,174,205,92,249,237,173,63,196,182,240,203,218,76,89,216,94,247,189,104,8,207,214,111,9,197,156,213,168,7,5,25,34,36,38,58,99,85,90,102,117,120,130,149,157,164,264,219,280,317,263,290,411,374,451,409,416,397,444,360,446,445,363,447,477,490,496,523,612,590,19,70,148,431,560],"TutorMoves":[],"BaseStats":{"HP":89,"Atk":124,"Def":80,"SpAtk":55,"SpDef":80,"Speed":55},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Golurk were created to protect people and Pokémon. They run on a mysterious energy.","Species":"Automaton Pokémon","Height":2.8,"Weight":330,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.72,"Y":1.72,"Z":1.72},"TradeValue":50,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":111},{"Level":3,"ID":189},{"Level":4,"ID":264},{"Level":5,"ID":310},{"Level":6,"ID":1},{"Level":7,"ID":189},{"Level":9,"ID":205},{"Level":13,"ID":325},{"Level":17,"ID":334},{"Level":21,"ID":5},{"Level":25,"ID":222},{"Level":30,"ID":223},{"Level":35,"ID":101},{"Level":40,"ID":174},{"Level":43,"ID":484},{"Level":50,"ID":89},{"Level":60,"ID":359},{"Level":70,"ID":264},{"Level":75,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Golurk +Number|623 +ExperienceType|1 +BaseExperience|169 +Type1|Ground +Type2|Ghost +CatchRate|90 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|622 +Devolution|622 +IsGenderLess|1 +IsMale|0.0 +Ability1|89 +Ability2|103 +HiddenAbility|99 +Machines|223,174,205,92,249,237,173,63,196,182,240,203,218,76,89,216,94,247,189,104,8,207,214,111,9,197,156,213,168,7,5,25,34,36,38,58,99,85,90,102,117,120,130,149,157,164,264,219,280,317,263,290,411,374,451,409,416,397,444,360,446,445,363,447,477,490,496,523,612,590,19,70,148,431,560 +BaseHP|89 +BaseAttack|124 +BaseDefense|80 +BaseSpAttack|55 +BaseSpDefense|80 +BaseSpeed|55 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Golurk were created to protect people and Pokémon. They run on a mysterious energy.\Automaton Pokémon\330\2.8\0,148,0 +Scale|1.72 +Move|1,1 +Move|1,111 +Move|1,189 +Move|1,264 +Move|1,310 +Move|1,566 +Move|5,189 +Move|9,205 +Move|13,325 +Move|17,334 +Move|21,5 +Move|25,222 +Move|30,223 +Move|35,101 +Move|40,174 +Move|43,484 +Move|50,89 +Move|60,359 +Move|70,264 +Move|75,566 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/624.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/624.dat index 6071f5700..4a5258599 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/624.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/624.dat @@ -1 +1,55 @@ -{"Name":"Pawniard","Number":624,"ExperienceType":"MediumFast","BaseExperience":68,"Type1":"Dark","Type2":"Steel","CatchRate":120,"BaseFriendship":35,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":624,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[128,39],"HiddenAbility":46,"EggMoves":[29,212,427,228,501,279,446,389],"Machines":[223,174,92,249,237,173,63,182,240,203,218,216,91,189,104,207,214,201,197,156,213,168,210,171,14,32,34,36,66,68,69,99,102,117,130,86,164,269,280,317,332,263,290,289,206,374,373,421,371,416,397,446,445,399,404,363,398,447,468,490,496,514,555,612,590,15],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":85,"Def":70,"SpAtk":40,"SpDef":40,"Speed":60},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Ignoring their injuries, groups attack by sinking the blades that cover their bodies into their prey.","Species":"Sharp Blade Pokémon","Height":0.5,"Weight":10.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":30,"Moves":[{"Level":1,"ID":10},{"Level":6,"ID":43},{"Level":9,"ID":210},{"Level":14,"ID":259},{"Level":17,"ID":185},{"Level":22,"ID":184},{"Level":25,"ID":232},{"Level":30,"ID":163},{"Level":33,"ID":372},{"Level":38,"ID":319},{"Level":41,"ID":373},{"Level":46,"ID":334},{"Level":49,"ID":400},{"Level":54,"ID":442},{"Level":57,"ID":14},{"Level":62,"ID":12}],"EvolutionConditions":[{"Condition":"52","ConditionType":"Level","Evolution":625,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Pawniard +Number|624 +ExperienceType|1 +BaseExperience|68 +Type1|Dark +Type2|Steel +CatchRate|120 +BaseFriendship|35 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|624 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|128 +Ability2|39 +HiddenAbility|46 +EggMoves|29,212,427,228,501,279,446,389 +Machines|223,174,92,249,237,173,63,182,240,203,218,216,91,189,104,207,214,201,197,156,213,168,210,171,14,32,34,36,66,68,69,99,102,117,130,86,164,269,280,317,332,263,290,289,206,374,373,421,371,416,397,446,445,399,404,363,398,447,468,490,496,514,555,612,590,15 +BaseHP|45 +BaseAttack|85 +BaseDefense|70 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|60 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Ignoring their injuries, groups attack by sinking the blades that cover their bodies into their prey.\Sharp Blade Pokémon\10.2\0.5\0,148,0 +Scale|0.7 +Move|1,10 +Move|6,43 +Move|9,210 +Move|14,259 +Move|17,185 +Move|22,184 +Move|25,232 +Move|30,163 +Move|33,372 +Move|38,319 +Move|41,373 +Move|46,334 +Move|49,400 +Move|54,442 +Move|57,14 +Move|62,12 +TradeValue|30 +EvolutionCondition|625,level,52,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/625.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/625.dat index 29dd012f6..266ea8838 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/625.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/625.dat @@ -1 +1,60 @@ -{"Name":"Bisharp","Number":625,"ExperienceType":"MediumFast","BaseExperience":172,"Type1":"Dark","Type2":"Steel","CatchRate":45,"BaseFriendship":35,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":624,"Devolution":624,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[128,39],"HiddenAbility":46,"EggMoves":[29,212,427,228,501,279,446,389],"Machines":[223,174,92,249,237,173,63,182,240,203,218,216,91,189,104,207,214,201,197,156,213,168,210,171,5,14,25,32,34,36,38,66,68,69,99,102,117,130,86,164,264,269,280,317,332,263,290,289,411,206,374,373,421,371,416,397,444,446,445,399,404,363,398,447,468,490,496,514,555,612,590,15,431],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":125,"Def":100,"SpAtk":60,"SpDef":70,"Speed":70},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This pitiless Pokémon commands a group of Pawniard to hound prey into immobility. It then moves in to finish the prey off.","Species":"Sword Blade Pokémon","Height":1.6,"Weight":70,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":50,"Moves":[{"Level":1,"ID":12},{"Level":2,"ID":442},{"Level":3,"ID":368},{"Level":4,"ID":10},{"Level":5,"ID":43},{"Level":6,"ID":210},{"Level":7,"ID":259},{"Level":8,"ID":43},{"Level":9,"ID":210},{"Level":14,"ID":259},{"Level":17,"ID":185},{"Level":22,"ID":184},{"Level":25,"ID":232},{"Level":30,"ID":163},{"Level":33,"ID":372},{"Level":38,"ID":319},{"Level":41,"ID":373},{"Level":46,"ID":334},{"Level":49,"ID":400},{"Level":57,"ID":442},{"Level":63,"ID":14},{"Level":71,"ID":12}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Bisharp +Number|625 +ExperienceType|1 +BaseExperience|172 +Type1|Dark +Type2|Steel +CatchRate|45 +BaseFriendship|35 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|624 +IsGenderLess|0 +CanBreed|1 +Devolution|624 +IsMale|50 +Ability1|128 +Ability2|39 +HiddenAbility|46 +EggMoves|29,212,427,228,501,279,446,389 +Machines|223,174,92,249,237,173,63,182,240,203,218,216,91,189,104,207,214,201,197,156,213,168,210,171,5,14,25,32,34,36,38,66,68,69,99,102,117,130,86,164,264,269,280,317,332,263,290,289,411,206,374,373,421,371,416,397,444,446,445,399,404,363,398,447,468,490,496,514,555,612,590,15,431 +BaseHP|65 +BaseAttack|125 +BaseDefense|100 +BaseSpAttack|60 +BaseSpDefense|70 +BaseSpeed|70 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This pitiless Pokémon commands a group of Pawniard to hound prey into immobility. It then moves in to finish the prey off.\Sword Blade Pokémon\70\1.6\0,148,0 +Scale|1.24 +Move|1,12 +Move|1,442 +Move|1,368 +Move|1,10 +Move|1,43 +Move|1,210 +Move|1,259 +Move|6,43 +Move|9,210 +Move|14,259 +Move|17,185 +Move|22,184 +Move|25,232 +Move|30,163 +Move|33,372 +Move|38,319 +Move|41,373 +Move|46,334 +Move|49,400 +Move|57,442 +Move|63,14 +Move|71,12 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/626.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/626.dat index 3a6ec7bb3..316b771cd 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/626.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/626.dat @@ -1 +1,52 @@ -{"Name":"Bouffalant","Number":626,"ExperienceType":"MediumFast","BaseExperience":172,"Type1":"Normal","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":626,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[120,157],"HiddenAbility":43,"EggMoves":[133,562,29,442,341,189,431,130,23],"Machines":[174,92,249,237,173,63,182,203,218,89,216,104,207,214,197,156,213,25,32,34,36,38,99,102,117,130,164,263,290,416,445,363,496,523,526,528,590,15,57,70,431],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":110,"Def":95,"SpAtk":40,"SpDef":95,"Speed":55},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They are known to charge so wildly that if a trainer were toenter their territory, they would send it flying.","Species":"Bash Buffalo Pokémon","Height":1.6,"Weight":94.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":45,"Moves":[{"Level":1,"ID":228},{"Level":2,"ID":43},{"Level":6,"ID":99},{"Level":11,"ID":31},{"Level":16,"ID":30},{"Level":21,"ID":184},{"Level":26,"ID":279},{"Level":31,"ID":543},{"Level":36,"ID":116},{"Level":41,"ID":224},{"Level":46,"ID":179},{"Level":51,"ID":37},{"Level":56,"ID":14},{"Level":61,"ID":416}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Bouffalant +Number|626 +ExperienceType|1 +BaseExperience|172 +Type1|Normal +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|626 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|100 +Ability1|120 +Ability2|157 +HiddenAbility|43 +EggMoves|133,562,29,442,341,189,431,130,23 +Machines|174,92,249,237,173,63,182,203,218,89,216,104,207,214,197,156,213,25,32,34,36,38,99,102,117,130,164,263,290,416,445,363,496,523,526,528,590,15,57,70,431 +BaseHP|95 +BaseAttack|110 +BaseDefense|95 +BaseSpAttack|40 +BaseSpDefense|95 +BaseSpeed|55 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They are known to charge so wildly that if a trainer were toenter their territory, they would send it flying.\Bash Buffalo Pokémon\94.6\1.6\0,148,0 +Scale|1.24 +Move|1,228 +Move|1,43 +Move|6,99 +Move|11,31 +Move|16,30 +Move|21,184 +Move|26,279 +Move|31,543 +Move|36,116 +Move|41,224 +Move|46,179 +Move|51,37 +Move|56,14 +Move|61,416 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/627.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/627.dat index 6a2fec0c1..5da4d451a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/627.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/627.dat @@ -1 +1,54 @@ -{"Name":"Rufflet","Number":627,"ExperienceType":"Slow","BaseExperience":70,"Type1":"Normal","Type2":"Flying","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":627,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[51,125],"HiddenAbility":55,"EggMoves":[],"Machines":[174,92,249,237,241,173,63,182,203,218,216,104,207,214,197,156,213,211,13,18,36,99,102,117,164,263,290,355,416,445,363,365,468,496,507,526,590,15,19,70],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":83,"Def":50,"SpAtk":37,"SpDef":50,"Speed":60},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It stands up to massive opponents, not out of courage, but out of recklessness. But that is how it gets stronger.","Species":"Eaglet Pokémon","Height":0.5,"Weight":10.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":64},{"Level":2,"ID":43},{"Level":5,"ID":31},{"Level":10,"ID":17},{"Level":14,"ID":468},{"Level":19,"ID":184},{"Level":23,"ID":332},{"Level":28,"ID":163},{"Level":32,"ID":432},{"Level":37,"ID":366},{"Level":41,"ID":403},{"Level":46,"ID":306},{"Level":50,"ID":1},{"Level":55,"ID":18},{"Level":59,"ID":413},{"Level":64,"ID":37}],"EvolutionConditions":[{"Condition":"54","ConditionType":"Level","Evolution":628,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Rufflet +Number|627 +ExperienceType|3 +BaseExperience|70 +Type1|Normal +Type2|Flying +CatchRate|190 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|627 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|100 +Ability1|51 +Ability2|125 +HiddenAbility|55 +Machines|174,92,249,237,241,173,63,182,203,218,216,104,207,214,197,156,213,211,13,18,36,99,102,117,164,263,290,355,416,445,363,365,468,496,507,526,590,15,19,70 +BaseHP|70 +BaseAttack|83 +BaseDefense|50 +BaseSpAttack|37 +BaseSpDefense|50 +BaseSpeed|60 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It stands up to massive opponents, not out of courage, but out of recklessness. But that is how it gets stronger.\Eaglet Pokémon\10.5\0.5\0,148,0 +Scale|0.7 +Move|1,64 +Move|1,43 +Move|5,31 +Move|10,17 +Move|14,468 +Move|19,184 +Move|23,332 +Move|28,163 +Move|32,432 +Move|37,366 +Move|41,403 +Move|46,306 +Move|50,507 +Move|55,18 +Move|59,413 +Move|64,37 +TradeValue|35 +EvolutionCondition|628,level,54,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/628.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/628.dat index 2a51b5d6a..eae9248b4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/628.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/628.dat @@ -1 +1,60 @@ -{"Name":"Braviary","Number":628,"ExperienceType":"Slow","BaseExperience":179,"Type1":"Normal","Type2":"Flying","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":627,"Devolution":627,"CanBreed":true,"IsGenderless":false,"IsMale":100,"Abilities":[51,125],"HiddenAbility":128,"EggMoves":[],"Machines":[174,92,249,237,241,173,63,182,203,218,216,104,207,214,197,156,213,211,13,18,36,38,69,99,102,117,143,164,332,263,290,355,416,432,445,363,365,468,496,507,526,590,15,19,70],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":123,"Def":75,"SpAtk":57,"SpDef":75,"Speed":80},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"For the sake of its friends, this brave warrior of the sky will not stop battling, even if injured.","Species":"Valiant Pokémon","Height":1.5,"Weight":41,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":60,"Moves":[{"Level":1,"ID":37},{"Level":2,"ID":413},{"Level":3,"ID":18},{"Level":4,"ID":276},{"Level":5,"ID":64},{"Level":6,"ID":43},{"Level":7,"ID":31},{"Level":8,"ID":17},{"Level":9,"ID":31},{"Level":10,"ID":17},{"Level":14,"ID":468},{"Level":19,"ID":184},{"Level":23,"ID":332},{"Level":28,"ID":163},{"Level":32,"ID":432},{"Level":37,"ID":366},{"Level":41,"ID":403},{"Level":46,"ID":306},{"Level":50,"ID":1},{"Level":51,"ID":276},{"Level":57,"ID":18},{"Level":63,"ID":413},{"Level":70,"ID":37}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Braviary +Number|628 +ExperienceType|3 +BaseExperience|179 +Type1|Normal +Type2|Flying +CatchRate|60 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|627 +IsGenderLess|0 +CanBreed|1 +Devolution|627 +IsMale|100 +Ability1|51 +Ability2|125 +HiddenAbility|128 +Machines|174,92,249,237,241,173,63,182,203,218,216,104,207,214,197,156,213,211,13,18,36,38,69,99,102,117,143,164,332,263,290,355,416,432,445,363,365,468,496,507,526,590,15,19,70 +BaseHP|100 +BaseAttack|123 +BaseDefense|75 +BaseSpAttack|57 +BaseSpDefense|75 +BaseSpeed|80 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|For the sake of its friends, this brave warrior of the sky will not stop battling, even if injured.\Valiant Pokémon\41\1.5\0,148,0 +Scale|1.2 +Move|1,37 +Move|1,413 +Move|1,18 +Move|1,276 +Move|1,64 +Move|1,43 +Move|1,31 +Move|1,17 +Move|5,31 +Move|10,17 +Move|14,468 +Move|19,184 +Move|23,332 +Move|28,163 +Move|32,432 +Move|37,366 +Move|41,403 +Move|46,306 +Move|50,507 +Move|51,276 +Move|57,18 +Move|63,413 +Move|70,37 +TradeValue|60 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/629.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/629.dat index 10ed794ad..d1dd25a9b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/629.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/629.dat @@ -1 +1,55 @@ -{"Name":"Vullaby","Number":629,"ExperienceType":"Slow","BaseExperience":74,"Type1":"Dark","Type2":"Flying","CatchRate":190,"BaseFriendship":35,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":629,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[145,142],"HiddenAbility":133,"EggMoves":[313,492,282,212,355,184,211],"Machines":[174,92,249,244,237,241,173,63,182,203,218,216,247,104,207,214,197,156,213,168,211,171,13,18,36,99,102,117,121,164,263,290,289,355,373,416,432,445,399,363,365,496,555,590,15,19],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":55,"Def":75,"SpAtk":45,"SpDef":65,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Their wings are too tiny to allow them to fly. They guard their posteriors with bones that were gathered by Mandibuzz.","Species":"Diapered Pokémon","Height":0.5,"Weight":9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":16},{"Level":2,"ID":43},{"Level":5,"ID":31},{"Level":10,"ID":365},{"Level":14,"ID":417},{"Level":19,"ID":260},{"Level":23,"ID":185},{"Level":28,"ID":386},{"Level":32,"ID":432},{"Level":37,"ID":366},{"Level":41,"ID":403},{"Level":46,"ID":399},{"Level":50,"ID":373},{"Level":55,"ID":18},{"Level":59,"ID":413},{"Level":64,"ID":119}],"EvolutionConditions":[{"Condition":"54","ConditionType":"Level","Evolution":630,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Vullaby +Number|629 +ExperienceType|3 +BaseExperience|74 +Type1|Dark +Type2|Flying +CatchRate|190 +BaseFriendship|35 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|629 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|0 +Ability1|145 +Ability2|142 +HiddenAbility|133 +EggMoves|313,492,282,212,355,184,211 +Machines|174,92,249,244,237,241,173,63,182,203,218,216,247,104,207,214,197,156,213,168,211,171,13,18,36,99,102,117,121,164,263,290,289,355,373,416,432,445,399,363,365,496,555,590,15,19 +BaseHP|70 +BaseAttack|55 +BaseDefense|75 +BaseSpAttack|45 +BaseSpDefense|65 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Their wings are too tiny to allow them to fly. They guard their posteriors with bones that were gathered by Mandibuzz.\Diapered Pokémon\9\0.5\0,148,0 +Scale|0.7 +Move|1,16 +Move|1,43 +Move|5,31 +Move|10,365 +Move|14,417 +Move|19,260 +Move|23,185 +Move|28,386 +Move|32,432 +Move|37,366 +Move|41,403 +Move|46,399 +Move|50,373 +Move|55,18 +Move|59,413 +Move|64,119 +TradeValue|35 +EvolutionCondition|630,Level,54,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/63.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/63.dat index 993fbc13a..374c548e1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/63.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/63.dat @@ -1 +1,41 @@ -{"Name":"Abra","Number":63,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Psychic","Type2":"Blank","CatchRate":200,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":63,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[28,39],"HiddenAbility":98,"EggMoves":[502,112,227,7,470,385,8,282,379,375,285,94,9,113],"Machines":[223,29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,34,36,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,351,259,263,290,285,289,412,374,451,409,373,278,416,445,363,447,433,473,477,496,502,605,590,148],"TutorMoves":[],"BaseStats":{"HP":25,"Atk":20,"Def":15,"SpAtk":105,"SpDef":55,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It senses impending attacks and teleports away to safety before the actual attacks can strike.","Species":"Psi Pokémon","Height":0.9,"Weight":19.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":25,"Moves":[{"Level":1,"ID":100}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":64,"Trigger":"LevelUp"}],"Items":[{"Id":96,"Chance":5}]} \ No newline at end of file +Name|Abra +Number|63 +ExperienceType|2 +BaseExperience|62 +Type1|Psychic +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|63 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|75 +Ability1|28 +Ability2|39 +HiddenAbility|98 +EggMoves|502,112,227,7,470,385,8,282,379,375,285,94,9,113 +Machines|223,29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,34,36,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,351,259,263,290,285,289,412,374,451,409,373,278,416,445,363,447,433,473,477,496,502,605,590,148 +BaseHP|25 +BaseAttack|20 +BaseDefense|15 +BaseSpAttack|105 +BaseSpDefense|55 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It senses impending attacks and teleports away to safety before the actual attacks can strike.\Psi Pokémon\19.5\0.9\0,148,0 +Scale|0.96 +Move|1,100 +TradeValue|25 +Item|5,96 +EvolutionCondition|64,Level,16,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/630.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/630.dat index 218fa8422..a0df12a16 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/630.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/630.dat @@ -1 +1,61 @@ -{"Name":"Mandibuzz","Number":630,"ExperienceType":"Slow","BaseExperience":179,"Type1":"Dark","Type2":"Flying","CatchRate":60,"BaseFriendship":35,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":629,"Devolution":629,"CanBreed":true,"IsGenderless":false,"IsMale":0,"Abilities":[145,142],"HiddenAbility":133,"EggMoves":[313,492,282,212,355,184,211],"Machines":[174,92,249,244,237,241,173,63,182,203,218,216,247,104,207,214,197,156,213,168,211,171,13,18,36,38,69,99,102,117,143,164,332,263,290,289,355,373,416,432,445,399,363,365,496,555,590,15,19],"TutorMoves":[],"BaseStats":{"HP":110,"Atk":65,"Def":105,"SpAtk":55,"SpDef":95,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They fly in circles around the sky. When they spot prey, they attack and carry it back to their nest with ease.","Species":"Bone Vulture Pokémon","Height":1.2,"Weight":39.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":55,"Moves":[{"Level":1,"ID":119},{"Level":2,"ID":413},{"Level":3,"ID":18},{"Level":4,"ID":198},{"Level":5,"ID":16},{"Level":6,"ID":43},{"Level":7,"ID":31},{"Level":8,"ID":365},{"Level":9,"ID":31},{"Level":10,"ID":365},{"Level":14,"ID":417},{"Level":19,"ID":260},{"Level":23,"ID":185},{"Level":28,"ID":386},{"Level":32,"ID":432},{"Level":37,"ID":366},{"Level":41,"ID":403},{"Level":46,"ID":399},{"Level":50,"ID":373},{"Level":51,"ID":198},{"Level":57,"ID":18},{"Level":63,"ID":413},{"Level":70,"ID":119}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Mandibuzz +Number|630 +ExperienceType|3 +BaseExperience|179 +Type1|Dark +Type2|Flying +CatchRate|60 +BaseFriendship|35 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|629 +IsGenderLess|0 +CanBreed|1 +Devolution|629 +IsMale|0 +Ability1|145 +Ability2|142 +HiddenAbility|133 +EggMoves|313,492,282,212,355,184,211 +Machines|174,92,249,244,237,241,173,63,182,203,218,216,247,104,207,214,197,156,213,168,211,171,13,18,36,38,69,99,102,117,143,164,332,263,290,289,355,373,416,432,445,399,363,365,496,555,590,15,19 +BaseHP|110 +BaseAttack|65 +BaseDefense|105 +BaseSpAttack|55 +BaseSpDefense|95 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They fly in circles around the sky. When they spot prey, they attack and carry it back to their nest with ease.\Bone Vulture Pokémon\39.5\1.2\0,148,0 +Scale|1.08 +Move|1,119 +Move|1,413 +Move|1,18 +Move|1,198 +Move|1,16 +Move|1,43 +Move|1,31 +Move|1,365 +Move|5,31 +Move|10,365 +Move|14,417 +Move|19,260 +Move|23,185 +Move|28,386 +Move|32,432 +Move|37,366 +Move|41,403 +Move|46,399 +Move|50,373 +Move|51,198 +Move|57,18 +Move|63,413 +Move|70,119 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/631.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/631.dat index 3f917794d..6c2949c05 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/631.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/631.dat @@ -1 +1,57 @@ -{"Name":"Heatmor","Number":631,"ExperienceType":"MediumFast","BaseExperience":169,"Type1":"Fire","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":631,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[82,18],"HiddenAbility":73,"EggMoves":[562,34,174,185,257,400,228,214,389,321,35],"Machines":[174,92,249,237,241,173,63,182,202,203,218,76,216,91,104,207,214,126,111,9,197,156,213,168,7,5,25,34,36,38,66,69,99,102,117,120,130,164,264,269,53,317,332,263,290,289,411,374,261,421,278,416,445,363,468,496,510,612,590,15,560],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":97,"Def":66,"SpAtk":105,"SpDef":66,"Speed":65},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It draws in air through its tail, transforms it into fire, and uses it like a tongue. It melts Durant and eats them.","Species":"Anteater Pokémon","Height":1.4,"Weight":58,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":35,"Moves":[{"Level":1,"ID":517},{"Level":2,"ID":468},{"Level":3,"ID":33},{"Level":4,"ID":1},{"Level":5,"ID":122},{"Level":6,"ID":316},{"Level":11,"ID":20},{"Level":16,"ID":83},{"Level":21,"ID":154},{"Level":26,"ID":289},{"Level":31,"ID":481},{"Level":36,"ID":450},{"Level":41,"ID":163},{"Level":44,"ID":133},{"Level":47,"ID":53},{"Level":50,"ID":254},{"Level":51,"ID":255},{"Level":52,"ID":256},{"Level":61,"ID":517}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Heatmor +Number|631 +ExperienceType|1 +BaseExperience|169 +Type1|Fire +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|631 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|82 +Ability2|18 +HiddenAbility|73 +EggMoves|562,34,174,185,257,400,228,214,389,321,35 +Machines|174,92,249,237,241,173,63,182,202,203,218,76,216,91,104,207,214,126,111,9,197,156,213,168,7,5,25,34,36,38,66,69,99,102,117,120,130,164,264,269,53,317,332,263,290,289,411,374,261,421,278,416,445,363,468,496,510,612,590,15,560 +BaseHP|85 +BaseAttack|97 +BaseDefense|66 +BaseSpAttack|105 +BaseSpDefense|66 +BaseSpeed|65 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It draws in air through its tail, transforms it into fire, and uses it like a tongue. It melts Durant and eats them.\Anteater Pokémon\58.0\1.4\0,148,0 +Scale|1.0 +Move|1,517 +Move|1,468 +Move|1,33 +Move|1,510 +Move|1,122 +Move|6,316 +Move|11,20 +Move|16,83 +Move|21,154 +Move|26,289 +Move|31,481 +Move|36,450 +Move|41,163 +Move|44,133 +Move|47,53 +Move|50,254 +Move|50,255 +Move|50,256 +Move|61,517 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/632.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/632.dat index 2647a333c..cdb6b3942 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/632.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/632.dat @@ -1 +1,56 @@ -{"Name":"Durant","Number":632,"ExperienceType":"MediumFast","BaseExperience":169,"Type1":"Bug","Type2":"Steel","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":632,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[68,55],"HiddenAbility":54,"EggMoves":[226,203,185,431,103,422],"Machines":[15,70,86,91,92,104,156,157,164,182,201,207,213,216,218,237,249,263,317,332,397,404,412,416,421,430,444,468,496,514,522],"TutorMoves":[],"BaseStats":{"HP":58,"Atk":109,"Def":112,"SpAtk":48,"SpDef":48,"Speed":109},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Individuals each play different roles in driving Heatmor, their natural predator, away from their colony.","Species":"Iron Ant Pokémon","Height":0.3,"Weight":33,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":35,"Moves":[{"Level":1,"ID":12},{"Level":2,"ID":334},{"Level":3,"ID":319},{"Level":4,"ID":11},{"Level":5,"ID":28},{"Level":6,"ID":210},{"Level":11,"ID":44},{"Level":16,"ID":97},{"Level":21,"ID":232},{"Level":26,"ID":450},{"Level":31,"ID":242},{"Level":36,"ID":442},{"Level":41,"ID":91},{"Level":46,"ID":1},{"Level":51,"ID":404},{"Level":56,"ID":334},{"Level":61,"ID":12},{"Level":66,"ID":319}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Durant +Number|632 +ExperienceType|1 +BaseExperience|169 +Type1|Bug +Type2|Steel +CatchRate|90 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|632 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|68 +Ability2|55 +HiddenAbility|54 +EggMoves|226,203,185,431,103,422 +Machines|15,70,86,91,92,104,156,157,164,182,201,207,213,216,218,237,249,263,317,332,397,404,412,416,421,430,444,468,496,514,522 +BaseHP|58 +BaseAttack|109 +BaseDefense|112 +BaseSpAttack|48 +BaseSpDefense|48 +BaseSpeed|109 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Individuals each play different roles in driving Heatmor, their natural predator, away from their colony.\Iron Ant Pokémon\33\0.3\0,148,0 +Scale|0.7 +Move|1,12 +Move|1,334 +Move|1,319 +Move|1,11 +Move|1,28 +Move|6,210 +Move|11,44 +Move|16,97 +Move|21,232 +Move|26,450 +Move|31,242 +Move|36,442 +Move|41,91 +Move|46,494 +Move|51,404 +Move|56,334 +Move|61,12 +Move|66,319 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/633.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/633.dat index 1c517a9a0..ae6395c0b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/633.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/633.dat @@ -1 +1,56 @@ -{"Name":"Deino","Number":633,"ExperienceType":"Slow","BaseExperience":60,"Type1":"Dark","Type2":"Dragon","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Dragon","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":633,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[55],"HiddenAbility":-1,"EggMoves":[372,310,399,458,414,424,457,423,103,422],"Machines":[29,174,46,92,249,244,237,241,173,63,182,240,203,218,225,216,104,207,214,197,156,213,168,171,34,36,99,82,102,117,130,86,164,269,259,263,290,406,416,445,399,363,496,510,525,526,590,70],"TutorMoves":[434],"BaseStats":{"HP":52,"Atk":65,"Def":50,"SpAtk":45,"SpDef":50,"Speed":38},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Lacking sight, it's unaware of its surroundings, so it bumps into things and eats anything that moves.","Species":"Irate Pokémon","Height":0.8,"Weight":17.3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":40,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":82},{"Level":4,"ID":116},{"Level":9,"ID":44},{"Level":12,"ID":29},{"Level":17,"ID":225},{"Level":20,"ID":46},{"Level":25,"ID":242},{"Level":28,"ID":21},{"Level":32,"ID":406},{"Level":38,"ID":526},{"Level":42,"ID":407},{"Level":48,"ID":34},{"Level":50,"ID":184},{"Level":58,"ID":304},{"Level":62,"ID":200}],"EvolutionConditions":[{"Condition":"50","ConditionType":"Level","Evolution":634,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Deino +Number|633 +ExperienceType|3 +BaseExperience|60 +Type1|Dark +Type2|Dragon +CatchRate|45 +BaseFriendship|35 +EggGroup1|Dragon +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|633 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|55 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|372,310,399,458,414,424,457,423,103,422 +Machines|29,174,46,92,249,244,237,241,173,63,182,240,203,218,225,216,104,207,214,197,156,213,168,171,34,36,99,82,102,117,130,86,164,269,259,263,290,406,416,445,399,363,496,510,525,526,590,70 +TutorMoves|434 +BaseHP|52 +BaseAttack|65 +BaseDefense|50 +BaseSpAttack|45 +BaseSpDefense|50 +BaseSpeed|38 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Lacking sight, it's unaware of its surroundings, so it bumps into things and eats anything that moves.\Irate Pokémon\17.3\0.8\0,148,0 +Scale|0.92 +Move|1,33 +Move|1,82 +Move|4,116 +Move|9,44 +Move|12,29 +Move|17,225 +Move|20,46 +Move|25,242 +Move|28,21 +Move|32,406 +Move|38,526 +Move|42,407 +Move|48,34 +Move|50,184 +Move|58,304 +Move|62,200 +TradeValue|40 +EvolutionCondition|634,Level,50,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/634.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/634.dat index a87a86a16..0f6f4e3c5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/634.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/634.dat @@ -1 +1,58 @@ -{"Name":"Zweilous","Number":634,"ExperienceType":"Slow","BaseExperience":147,"Type1":"Dark","Type2":"Dragon","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Dragon","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":633,"Devolution":633,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[55],"HiddenAbility":-1,"EggMoves":[372,310,399,458,414,424,457,423,103,422],"Machines":[29,174,46,92,192,249,244,237,241,173,63,182,240,203,218,225,216,104,207,214,197,156,213,168,171,34,36,38,99,82,102,117,130,86,164,352,269,259,263,290,406,416,445,399,363,496,510,525,526,590,70,560],"TutorMoves":[434],"BaseStats":{"HP":72,"Atk":85,"Def":70,"SpAtk":65,"SpDef":70,"Speed":58},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The two heads do not get along. Whichever head eats more than the other gets to be their leader.","Species":"Hostile Pokémon","Height":1.4,"Weight":50,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":60,"Moves":[{"Level":1,"ID":458},{"Level":2,"ID":82},{"Level":3,"ID":116},{"Level":4,"ID":44},{"Level":5,"ID":116},{"Level":9,"ID":44},{"Level":12,"ID":29},{"Level":17,"ID":225},{"Level":20,"ID":46},{"Level":25,"ID":242},{"Level":28,"ID":21},{"Level":32,"ID":406},{"Level":38,"ID":526},{"Level":42,"ID":407},{"Level":48,"ID":34},{"Level":55,"ID":184},{"Level":64,"ID":304},{"Level":71,"ID":200}],"EvolutionConditions":[{"Condition":"64","ConditionType":"Level","Evolution":635,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Zweilous +Number|634 +ExperienceType|3 +BaseExperience|147 +Type1|Dark +Type2|Dragon +CatchRate|45 +BaseFriendship|35 +EggGroup1|Dragon +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|633 +IsGenderLess|0 +CanBreed|1 +Devolution|633 +IsMale|50 +Ability1|55 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|372,310,399,458,414,424,457,423,103,422 +Machines|29,174,46,92,192,249,244,237,241,173,63,182,240,203,218,225,216,104,207,214,197,156,213,168,171,34,36,38,99,82,102,117,130,86,164,352,269,259,263,290,406,416,445,399,363,496,510,525,526,590,70,560 +TutorMoves|434 +BaseHP|72 +BaseAttack|85 +BaseDefense|70 +BaseSpAttack|65 +BaseSpDefense|70 +BaseSpeed|58 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The two heads do not get along. Whichever head eats more than the other gets to be their leader.\Hostile Pokémon\50\1.4\0,148,0 +Scale|1.16 +Move|1,458 +Move|1,82 +Move|1,116 +Move|1,44 +Move|4,116 +Move|9,44 +Move|12,29 +Move|17,225 +Move|20,46 +Move|25,242 +Move|28,21 +Move|32,406 +Move|38,526 +Move|42,407 +Move|48,34 +Move|55,184 +Move|64,304 +Move|71,200 +TradeValue|60 +EvolutionCondition|635,Level,64,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/635.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/635.dat index 9d78a6831..3a0284266 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/635.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/635.dat @@ -1 +1,59 @@ -{"Name":"Hydreigon","Number":635,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Dark","Type2":"Dragon","CatchRate":45,"BaseFriendship":35,"EggGroup1":"Dragon","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":633,"Devolution":634,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[372,310,399,458,414,424,457,423,103,422],"Machines":[29,174,46,92,192,249,244,237,241,173,63,182,240,203,218,231,225,89,216,104,207,214,126,197,156,213,168,211,171,34,36,38,66,68,69,99,82,102,115,117,130,86,157,161,164,352,269,351,53,317,259,263,290,355,411,451,406,371,416,432,445,399,363,369,430,496,497,510,512,523,525,526,590,19,57,70,250,560],"TutorMoves":[434],"BaseStats":{"HP":92,"Atk":105,"Def":90,"SpAtk":125,"SpDef":90,"Speed":98},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It responds to movement by attacking. This scary, three-headed Pokémon devours everything in its path!","Species":"Brutal Pokémon","Height":1.8,"Weight":160,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":75,"Moves":[{"Level":1,"ID":200},{"Level":2,"ID":304},{"Level":3,"ID":161},{"Level":4,"ID":82},{"Level":5,"ID":116},{"Level":6,"ID":44},{"Level":7,"ID":116},{"Level":9,"ID":44},{"Level":12,"ID":29},{"Level":17,"ID":225},{"Level":20,"ID":46},{"Level":25,"ID":242},{"Level":28,"ID":21},{"Level":32,"ID":406},{"Level":38,"ID":526},{"Level":42,"ID":407},{"Level":48,"ID":34},{"Level":55,"ID":184},{"Level":68,"ID":304},{"Level":79,"ID":200}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Hydreigon +Number|635 +ExperienceType|3 +BaseExperience|270 +Type1|Dark +Type2|Dragon +CatchRate|45 +BaseFriendship|35 +EggGroup1|Dragon +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|633 +IsGenderLess|0 +CanBreed|1 +Devolution|634 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|372,310,399,458,414,424,457,423,103,422 +Machines|29,174,46,92,192,249,244,237,241,173,63,182,240,203,218,231,225,89,216,104,207,214,126,197,156,213,168,211,171,34,36,38,66,68,69,99,82,102,115,117,130,86,157,161,164,352,269,351,53,317,259,263,290,355,411,451,406,371,416,432,445,399,363,369,430,496,497,510,512,523,525,526,590,19,57,70,250,560 +TutorMoves|434 +BaseHP|92 +BaseAttack|105 +BaseDefense|90 +BaseSpAttack|125 +BaseSpDefense|90 +BaseSpeed|98 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It responds to movement by attacking. This scary, three-headed Pokémon devours everything in its path!\Brutal Pokémon\160\1.8\0,148,0 +Scale|1.32 +Move|1,200 +Move|1,304 +Move|1,161 +Move|1,82 +Move|1,116 +Move|1,44 +Move|4,116 +Move|9,44 +Move|12,29 +Move|17,225 +Move|20,46 +Move|25,242 +Move|28,21 +Move|32,406 +Move|38,526 +Move|42,407 +Move|48,34 +Move|55,184 +Move|68,304 +Move|79,200 +TradeValue|75 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/636.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/636.dat index aa7bf458d..25fc84188 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/636.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/636.dat @@ -1 +1,52 @@ -{"Name":"Larvesta","Number":636,"ExperienceType":"Slow","BaseExperience":72,"Type1":"Bug","Type2":"Fire","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":636,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[49],"HiddenAbility":68,"EggMoves":[203,193,106,393,234,428,81],"Machines":[174,92,237,241,173,63,182,202,203,218,76,216,94,104,207,214,126,197,156,213,36,99,72,102,117,164,347,113,219,53,263,290,315,261,416,445,363,369,488,496,510,512,522,528,590],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":85,"Def":55,"SpAtk":50,"SpDef":55,"Speed":60},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Said to have been born from the sun, it spews fire from its horns and encases itself in a cocoon of fire when it evolves.","Species":"Torch Pokémon","Height":1.1,"Weight":28.8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":45,"Moves":[{"Level":1,"ID":52},{"Level":2,"ID":81},{"Level":10,"ID":141},{"Level":20,"ID":36},{"Level":30,"ID":488},{"Level":40,"ID":450},{"Level":50,"ID":38},{"Level":60,"ID":172},{"Level":70,"ID":405},{"Level":80,"ID":133},{"Level":90,"ID":37},{"Level":100,"ID":394}],"EvolutionConditions":[{"Condition":"59","ConditionType":"Level","Evolution":637,"Trigger":"LevelUp"}],"Items":[{"Id":88,"Chance":100}]} \ No newline at end of file +Name|Larvesta +Number|636 +ExperienceType|3 +BaseExperience|72 +Type1|Bug +Type2|Fire +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|636 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|49 +Ability2|Nothing +HiddenAbility|68 +EggMoves|203,193,106,393,234,428,81 +Machines|174,92,237,241,173,63,182,202,203,218,76,216,94,104,207,214,126,197,156,213,36,99,72,102,117,164,347,113,219,53,263,290,315,261,416,445,363,369,488,496,510,512,522,528,590 +BaseHP|55 +BaseAttack|85 +BaseDefense|55 +BaseSpAttack|50 +BaseSpDefense|55 +BaseSpeed|60 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Said to have been born from the sun, it spews fire from its horns and encases itself in a cocoon of fire when it evolves.\Torch Pokémon\28.8\1.1\0,148,0 +Scale|1.04 +Move|1,52 +Move|1,81 +Move|10,141 +Move|20,36 +Move|30,488 +Move|40,450 +Move|50,38 +Move|60,172 +Move|70,405 +Move|80,133 +Move|90,37 +Move|100,394 +TradeValue|45 +Item|100,88 +EvolutionCondition|637,Level,59,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/637.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/637.dat index 30df61d6d..8fb93a7a2 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/637.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/637.dat @@ -1 +1,64 @@ -{"Name":"Volcarona","Number":637,"ExperienceType":"Slow","BaseExperience":248,"Type1":"Bug","Type2":"Fire","CatchRate":15,"BaseFriendship":70,"EggGroup1":"Bug","EggGroup2":"None","BaseEggSteps":10455,"EggPokemon":636,"Devolution":636,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[49],"HiddenAbility":68,"EggMoves":[203,193,106,393,234,428,81],"Machines":[174,92,237,241,173,63,182,202,203,218,76,216,94,104,207,214,126,197,156,213,13,18,34,36,38,99,72,102,117,164,347,113,219,53,332,263,290,315,355,261,318,416,432,445,363,398,369,488,496,510,512,522,528,590,19,560],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":60,"Def":65,"SpAtk":135,"SpDef":105,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Thought to be an emobiment of the sun, it appeared during a bitterly cold winter and saved Pokémon from freezing.","Species":"Sun Pokémon","Height":1.6,"Weight":46,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":75,"Moves":[{"Level":1,"ID":552},{"Level":2,"ID":542},{"Level":3,"ID":1},{"Level":4,"ID":257},{"Level":5,"ID":483},{"Level":6,"ID":394},{"Level":7,"ID":37},{"Level":8,"ID":133},{"Level":9,"ID":405},{"Level":10,"ID":172},{"Level":11,"ID":52},{"Level":12,"ID":81},{"Level":13,"ID":141},{"Level":14,"ID":16},{"Level":15,"ID":141},{"Level":20,"ID":16},{"Level":30,"ID":83},{"Level":40,"ID":18},{"Level":50,"ID":318},{"Level":59,"ID":483},{"Level":60,"ID":257},{"Level":70,"ID":405},{"Level":80,"ID":1},{"Level":90,"ID":542},{"Level":100,"ID":552}],"EvolutionConditions":[],"Items":[{"Id":88,"Chance":100}]} \ No newline at end of file +Name|Volcarona +Number|637 +ExperienceType|3 +BaseExperience|248 +Type1|Bug +Type2|Fire +CatchRate|15 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|10455 +EggPokemon|636 +IsGenderLess|0 +CanBreed|1 +Devolution|636 +IsMale|50 +Ability1|49 +Ability2|Nothing +HiddenAbility|68 +EggMoves|203,193,106,393,234,428,81 +Machines|174,92,237,241,173,63,182,202,203,218,76,216,94,104,207,214,126,197,156,213,13,18,34,36,38,99,72,102,117,164,347,113,219,53,332,263,290,315,355,261,318,416,432,445,363,398,369,488,496,510,512,522,528,590,19,560 +BaseHP|85 +BaseAttack|60 +BaseDefense|65 +BaseSpAttack|135 +BaseSpDefense|105 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Thought to be an emobiment of the sun, it appeared during a bitterly cold winter and saved Pokémon from freezing.\Sun Pokémon\46\1.6\0,148,0 +Scale|1.24 +Move|1,552 +Move|1,542 +Move|1,476 +Move|1,257 +Move|1,483 +Move|1,394 +Move|1,37 +Move|1,133 +Move|1,405 +Move|1,172 +Move|1,52 +Move|1,81 +Move|1,141 +Move|1,16 +Move|10,141 +Move|20,16 +Move|30,83 +Move|40,18 +Move|50,318 +Move|59,483 +Move|60,257 +Move|70,405 +Move|80,476 +Move|90,542 +Move|100,552 +TradeValue|75 +Item|100,88 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/638.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/638.dat index 444cb0cb6..a35c0aa9f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/638.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/638.dat @@ -1 +1,55 @@ -{"Name":"Cobalion","Number":638,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Steel","Type2":"Fighting","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":638,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[154],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,46,92,249,244,237,173,63,182,203,218,216,104,207,214,201,129,197,156,213,14,25,32,34,36,38,68,99,102,115,117,130,86,164,347,269,219,332,263,290,411,206,416,397,444,446,445,404,363,398,430,468,496,514,521,526,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":91,"Atk":90,"Def":129,"SpAtk":90,"SpDef":72,"Speed":108},"RewardEV":{"HP":0,"Atk":0,"Def":3,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It has a body and heart of steel. It worked with its allies to punish people when they hurt Pokémon.","Species":"Iron Will Pokémon","Height":2.1,"Weight":250,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.44,"Y":1.44,"Z":1.44},"TradeValue":85,"Moves":[{"Level":1,"ID":370},{"Level":2,"ID":368},{"Level":3,"ID":526},{"Level":4,"ID":1},{"Level":5,"ID":98},{"Level":6,"ID":43},{"Level":7,"ID":24},{"Level":13,"ID":232},{"Level":19,"ID":36},{"Level":25,"ID":1},{"Level":31,"ID":1},{"Level":37,"ID":442},{"Level":42,"ID":1},{"Level":49,"ID":14},{"Level":55,"ID":1},{"Level":61,"ID":526},{"Level":67,"ID":368},{"Level":73,"ID":370}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Cobalion +Number|638 +ExperienceType|3 +BaseExperience|261 +Type1|Steel +Type2|Fighting +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|638 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|154 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,249,244,237,173,63,182,203,218,216,104,207,214,201,129,197,156,213,14,25,32,34,36,38,68,99,102,115,117,130,86,164,347,269,219,332,263,290,411,206,416,397,444,446,445,404,363,398,430,468,496,514,521,526,590,15,70,431,560 +BaseHP|91 +BaseAttack|90 +BaseDefense|129 +BaseSpAttack|90 +BaseSpDefense|72 +BaseSpeed|108 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It has a body and heart of steel. It worked with its allies to punish people when they hurt Pokémon.\Iron Will Pokémon\250\2.1\0,148,0 +Scale|1.44 +Move|1,370 +Move|1,368 +Move|1,526 +Move|1,501 +Move|1,98 +Move|1,43 +Move|7,24 +Move|13,232 +Move|19,36 +Move|25,270 +Move|31,514 +Move|37,442 +Move|42,533 +Move|49,14 +Move|55,501 +Move|61,526 +Move|67,368 +Move|73,370 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/639.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/639.dat index 6db970757..9231863eb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/639.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/639.dat @@ -1 +1,54 @@ -{"Name":"Terrakion","Number":639,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Rock","Type2":"Fighting","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":639,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[154],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,205,46,92,249,244,237,173,63,182,203,218,89,216,104,207,214,201,129,111,197,156,213,14,25,32,34,36,38,68,99,90,102,115,117,130,157,164,347,269,219,317,332,263,290,411,206,416,397,444,446,445,404,363,398,479,496,514,523,526,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":91,"Atk":129,"Def":90,"SpAtk":72,"SpDef":90,"Speed":108},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Spoken of in legend, this Pokémon used its phenomenal power to destroy a castle in its effort to protect Pokémon.","Species":"Cavern Pokémon","Height":1.9,"Weight":260,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.36,"Y":1.36,"Z":1.36},"TradeValue":85,"Moves":[{"Level":1,"ID":370},{"Level":2,"ID":526},{"Level":3,"ID":1},{"Level":4,"ID":98},{"Level":5,"ID":43},{"Level":7,"ID":24},{"Level":13,"ID":479},{"Level":19,"ID":36},{"Level":25,"ID":1},{"Level":31,"ID":1},{"Level":37,"ID":157},{"Level":42,"ID":1},{"Level":49,"ID":14},{"Level":55,"ID":1},{"Level":61,"ID":526},{"Level":67,"ID":444},{"Level":73,"ID":370}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Terrakion +Number|639 +ExperienceType|3 +BaseExperience|261 +Type1|Rock +Type2|Fighting +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|639 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|154 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,205,46,92,249,244,237,173,63,182,203,218,89,216,104,207,214,201,129,111,197,156,213,14,25,32,34,36,38,68,99,90,102,115,117,130,157,164,347,269,219,317,332,263,290,411,206,416,397,444,446,445,404,363,398,479,496,514,523,526,590,15,70,431,560 +BaseHP|91 +BaseAttack|129 +BaseDefense|90 +BaseSpAttack|72 +BaseSpDefense|90 +BaseSpeed|108 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Spoken of in legend, this Pokémon used its phenomenal power to destroy a castle in its effort to protect Pokémon.\Cavern Pokémon\260\1.9\0,148,0 +Scale|1.36 +Move|1,370 +Move|1,526 +Move|1,501 +Move|1,98 +Move|1,43 +Move|7,24 +Move|13,479 +Move|19,36 +Move|25,270 +Move|31,514 +Move|37,157 +Move|42,533 +Move|49,14 +Move|55,501 +Move|61,526 +Move|67,444 +Move|73,370 +TradeValue|85 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/64.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/64.dat index e5d7e47bd..ec6ef105f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/64.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/64.dat @@ -1 +1,56 @@ -{"Name":"Kadabra","Number":64,"ExperienceType":"MediumSlow","BaseExperience":140,"Type1":"Psychic","Type2":"Blank","CatchRate":100,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":63,"Devolution":63,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[28,39],"HiddenAbility":98,"EggMoves":[502,112,227,7,470,385,8,282,379,375,285,94,9,113],"Machines":[223,29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,25,34,36,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,351,259,263,290,285,289,412,374,451,409,373,278,416,445,363,447,433,473,477,496,502,605,590,148],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":35,"Def":30,"SpAtk":120,"SpDef":70,"Speed":105},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It possesses strong spiritual power. The more danger it faces, the stronger its psychic power.","Species":"Psi Pokémon","Height":1.3,"Weight":56.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":40,"Moves":[{"Level":1,"ID":100},{"Level":2,"ID":134},{"Level":3,"ID":93},{"Level":16,"ID":93},{"Level":18,"ID":1},{"Level":22,"ID":357},{"Level":24,"ID":1},{"Level":28,"ID":60},{"Level":30,"ID":115},{"Level":34,"ID":1},{"Level":36,"ID":105},{"Level":40,"ID":427},{"Level":42,"ID":272},{"Level":46,"ID":94},{"Level":48,"ID":248},{"Level":50,"ID":271}],"EvolutionConditions":[{"Condition":"0","ConditionType":"Trade","Evolution":65,"Trigger":"Trading"}],"Items":[{"Id":96,"Chance":5}]} \ No newline at end of file +Name|Kadabra +Number|64 +ExperienceType|2 +BaseExperience|140 +Type1|Psychic +Type2| +CatchRate|100 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|63 +IsGenderLess|0 +CanBreed|1 +Devolution|63 +IsMale|75 +Ability1|28 +Ability2|39 +HiddenAbility|98 +EggMoves|502,112,227,7,470,385,8,282,379,375,285,94,9,113 +Machines|223,29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,25,34,36,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,351,259,263,290,285,289,412,374,451,409,373,278,416,445,363,447,433,473,477,496,502,605,590,148 +BaseHP|40 +BaseAttack|35 +BaseDefense|30 +BaseSpAttack|120 +BaseSpDefense|70 +BaseSpeed|105 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It possesses strong spiritual power. The more danger it faces, the stronger its psychic power.\Psi Pokémon\56.5\1.3\0,148,0 +Scale|1.12 +Move|1,100 +Move|1,134 +Move|1,93 +Move|16,93 +Move|18,50 +Move|22,357 +Move|24,502 +Move|28,60 +Move|30,115 +Move|34,477 +Move|36,105 +Move|40,427 +Move|42,272 +Move|46,94 +Move|48,248 +Move|50,271 +TradeValue|40 +Item|5,96 +EvolutionCondition|65,trade,0,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/640.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/640.dat index 9ab5688c2..3b7a6f30e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/640.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/640.dat @@ -1 +1,54 @@ -{"Name":"Virizion","Number":640,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Grass","Type2":"Fighting","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":640,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[154],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,46,92,249,244,237,241,230,173,63,182,202,203,218,76,216,104,207,214,129,197,156,213,14,25,32,34,36,38,68,99,72,102,115,117,130,164,347,331,269,113,219,332,263,290,411,412,206,416,444,445,404,363,447,496,514,526,267,590,15,70,148,431,560],"TutorMoves":[],"BaseStats":{"HP":91,"Atk":90,"Def":72,"SpAtk":90,"SpDef":129,"Speed":108},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Legends say this Pokémon confounded opponents with its swift movements.","Species":"Grassland Pokémon","Height":2,"Weight":200,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.4,"Y":1.4,"Z":1.4},"TradeValue":10,"Moves":[{"Level":1,"ID":370},{"Level":2,"ID":348},{"Level":3,"ID":526},{"Level":4,"ID":1},{"Level":5,"ID":98},{"Level":6,"ID":43},{"Level":7,"ID":24},{"Level":13,"ID":345},{"Level":19,"ID":36},{"Level":25,"ID":1},{"Level":31,"ID":1},{"Level":37,"ID":202},{"Level":42,"ID":1},{"Level":49,"ID":14},{"Level":55,"ID":1},{"Level":61,"ID":526},{"Level":67,"ID":348},{"Level":73,"ID":370}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Virizion +Number|640 +ExperienceType|3 +BaseExperience|261 +Type1|Grass +Type2|Fighting +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|640 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|154 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,249,244,237,241,230,173,63,182,202,203,218,76,216,104,207,214,129,197,156,213,14,25,32,34,36,38,68,99,72,102,115,117,130,164,347,331,269,113,219,332,263,290,411,412,206,416,444,445,404,363,447,496,514,526,267,590,15,70,148,431,560 +BaseHP|91 +BaseAttack|90 +BaseDefense|72 +BaseSpAttack|90 +BaseSpDefense|129 +BaseSpeed|108 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Legends say this Pokémon confounded opponents with its swift movements.\Grassland Pokémon\200\2\0,148,0 +Scale|1.4 +Move|1,370 +Move|1,348 +Move|1,526 +Move|1,501 +Move|1,98 +Move|1,43 +Move|7,24 +Move|13,345 +Move|19,36 +Move|25,270 +Move|31,514 +Move|37,202 +Move|42,533 +Move|49,14 +Move|55,501 +Move|61,526 +Move|67,348 +Move|73,370 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/641.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/641.dat index 8fbdc90de..4f2ae2d84 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/641.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/641.dat @@ -1 +1,58 @@ -{"Name":"Tornadus","Number":641,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Flying","Type2":"Blank","CatchRate":3,"BaseFriendship":90,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":641,"Devolution":0,"CanBreed":false,"IsGenderless":false,"IsMale":100,"Abilities":[158],"HiddenAbility":128,"EggMoves":[],"Machines":[174,92,249,237,173,63,196,182,240,203,218,231,216,94,104,207,214,188,197,156,213,168,171,13,18,36,38,99,102,117,164,269,280,332,259,263,290,411,374,373,371,416,432,445,399,363,447,369,479,482,496,507,510,512,590,19,70,250,560],"TutorMoves":[],"BaseStats":{"HP":79,"Atk":115,"Def":70,"SpAtk":125,"SpDef":80,"Speed":111},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"In every direction it flies, creating winds so powerful, they blow everything away.","Species":"Cyclone Pokémon","Height":1.5,"Weight":63,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":90,"Moves":[{"Level":1,"ID":359},{"Level":2,"ID":37},{"Level":3,"ID":542},{"Level":4,"ID":366},{"Level":5,"ID":253},{"Level":6,"ID":310},{"Level":7,"ID":16},{"Level":8,"ID":207},{"Level":13,"ID":44},{"Level":19,"ID":279},{"Level":25,"ID":314},{"Level":31,"ID":326},{"Level":37,"ID":97},{"Level":43,"ID":403},{"Level":49,"ID":242},{"Level":55,"ID":366},{"Level":61,"ID":240},{"Level":67,"ID":542},{"Level":73,"ID":399},{"Level":79,"ID":359},{"Level":85,"ID":37}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Tornadus +Number|641 +ExperienceType|3 +BaseExperience|261 +Type1|Flying +Type2| +CatchRate|3 +BaseFriendship|90 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|641 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|100 +Ability1|158 +Ability2|Nothing +HiddenAbility|128 +Machines|174,92,249,237,173,63,196,182,240,203,218,231,216,94,104,207,214,188,197,156,213,168,171,13,18,36,38,99,102,117,164,269,280,332,259,263,290,411,374,373,371,416,432,445,399,363,447,369,479,482,496,507,510,512,590,19,70,250,560 +BaseHP|79 +BaseAttack|115 +BaseDefense|70 +BaseSpAttack|125 +BaseSpDefense|80 +BaseSpeed|111 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|In every direction it flies, creating winds so powerful, they blow everything away.\Cyclone Pokémon\63\1.5\0,148,0 +Scale|1.2 +Move|1,359 +Move|1,37 +Move|1,542 +Move|1,366 +Move|1,253 +Move|1,310 +Move|1,16 +Move|7,207 +Move|13,44 +Move|19,279 +Move|25,314 +Move|31,326 +Move|37,97 +Move|43,403 +Move|49,242 +Move|55,366 +Move|61,240 +Move|67,542 +Move|73,399 +Move|79,359 +Move|85,37 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/641_therian.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/641_therian.dat index 465b5a397..dd55dd9b3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/641_therian.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/641_therian.dat @@ -1 +1,58 @@ -{"Name":"Tornadus","Number":641,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Flying","Type2":"Blank","CatchRate":3,"BaseFriendship":90,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":641,"Devolution":0,"CanBreed":false,"IsGenderless":false,"IsMale":100,"Abilities":[144],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,249,237,173,63,196,182,240,203,218,231,216,94,104,207,214,188,197,156,213,168,171,13,18,36,38,99,102,117,164,269,280,332,259,263,290,411,374,373,371,416,432,445,399,363,447,369,479,482,496,507,510,512,590,19,70,250,560],"TutorMoves":[],"BaseStats":{"HP":79,"Atk":100,"Def":80,"SpAtk":110,"SpDef":90,"Speed":121},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"In every direction it flies, creating winds so powerful, they blow everything away.","Species":"Cyclone Pokémon","Height":1.5,"Weight":63,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":90,"Moves":[{"Level":1,"ID":359},{"Level":2,"ID":37},{"Level":3,"ID":542},{"Level":4,"ID":366},{"Level":5,"ID":253},{"Level":6,"ID":310},{"Level":7,"ID":16},{"Level":8,"ID":207},{"Level":13,"ID":44},{"Level":19,"ID":279},{"Level":25,"ID":314},{"Level":31,"ID":326},{"Level":37,"ID":97},{"Level":43,"ID":403},{"Level":49,"ID":242},{"Level":55,"ID":366},{"Level":61,"ID":240},{"Level":67,"ID":542},{"Level":73,"ID":399},{"Level":79,"ID":359},{"Level":85,"ID":37}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Tornadus +Number|641 +ExperienceType|3 +BaseExperience|261 +Type1|Flying +Type2| +CatchRate|3 +BaseFriendship|90 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|641 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|100 +Ability1|144 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,249,237,173,63,196,182,240,203,218,231,216,94,104,207,214,188,197,156,213,168,171,13,18,36,38,99,102,117,164,269,280,332,259,263,290,411,374,373,371,416,432,445,399,363,447,369,479,482,496,507,510,512,590,19,70,250,560 +BaseHP|79 +BaseAttack|100 +BaseDefense|80 +BaseSpAttack|110 +BaseSpDefense|90 +BaseSpeed|121 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|In every direction it flies, creating winds so powerful, they blow everything away.\Cyclone Pokémon\63\1.5\0,148,0 +Scale|1.2 +Move|1,359 +Move|1,37 +Move|1,542 +Move|1,366 +Move|1,253 +Move|1,310 +Move|1,16 +Move|7,207 +Move|13,44 +Move|19,279 +Move|25,314 +Move|31,326 +Move|37,97 +Move|43,403 +Move|49,242 +Move|55,366 +Move|61,240 +Move|67,542 +Move|73,399 +Move|79,359 +Move|85,37 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/642.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/642.dat index a0dc1a04e..13822c264 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/642.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/642.dat @@ -1 +1,58 @@ -{"Name":"Thundurus","Number":642,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Electric","Type2":"Flying","CatchRate":3,"BaseFriendship":90,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":642,"Devolution":0,"CanBreed":false,"IsGenderless":false,"IsMale":100,"Abilities":[158],"HiddenAbility":128,"EggMoves":[],"Machines":[174,92,192,249,237,173,63,182,240,203,218,231,216,94,104,207,214,188,9,197,156,213,168,171,13,18,36,38,99,85,102,117,86,164,269,280,351,259,263,290,411,451,373,371,416,432,445,399,363,447,369,430,479,482,496,507,510,521,528,590,19,70,250,560],"TutorMoves":[],"BaseStats":{"HP":79,"Atk":115,"Def":70,"SpAtk":125,"SpDef":80,"Speed":111},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"As it flies around, it shoots lightning all over the place and causes forest fires. It is therefore disliked.","Species":"Bolt Strike Pokémon","Height":1.5,"Weight":61,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":90,"Moves":[{"Level":1,"ID":37},{"Level":2,"ID":359},{"Level":3,"ID":417},{"Level":4,"ID":268},{"Level":5,"ID":253},{"Level":6,"ID":310},{"Level":7,"ID":84},{"Level":8,"ID":207},{"Level":13,"ID":44},{"Level":19,"ID":279},{"Level":25,"ID":351},{"Level":31,"ID":377},{"Level":37,"ID":97},{"Level":43,"ID":435},{"Level":49,"ID":242},{"Level":55,"ID":268},{"Level":61,"ID":417},{"Level":67,"ID":87},{"Level":73,"ID":399},{"Level":79,"ID":359},{"Level":85,"ID":37}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Thundurus +Number|642 +ExperienceType|3 +BaseExperience|261 +Type1|Electric +Type2|Flying +CatchRate|3 +BaseFriendship|90 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|642 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|100 +Ability1|158 +Ability2|Nothing +HiddenAbility|128 +Machines|174,92,192,249,237,173,63,182,240,203,218,231,216,94,104,207,214,188,9,197,156,213,168,171,13,18,36,38,99,85,102,117,86,164,269,280,351,259,263,290,411,451,373,371,416,432,445,399,363,447,369,430,479,482,496,507,510,521,528,590,19,70,250,560 +BaseHP|79 +BaseAttack|115 +BaseDefense|70 +BaseSpAttack|125 +BaseSpDefense|80 +BaseSpeed|111 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|As it flies around, it shoots lightning all over the place and causes forest fires. It is therefore disliked.\Bolt Strike Pokémon\61\1.5\0,148,0 +Scale|1.2 +Move|1,37 +Move|1,359 +Move|1,417 +Move|1,268 +Move|1,253 +Move|1,310 +Move|1,84 +Move|7,207 +Move|13,44 +Move|19,279 +Move|25,351 +Move|31,377 +Move|37,97 +Move|43,435 +Move|49,242 +Move|55,268 +Move|61,417 +Move|67,87 +Move|73,399 +Move|79,359 +Move|85,37 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/642_therian.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/642_therian.dat index d3e568e5b..2890a1741 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/642_therian.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/642_therian.dat @@ -1 +1,58 @@ -{"Name":"Thundurus","Number":642,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Electric","Type2":"Flying","CatchRate":3,"BaseFriendship":90,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":642,"Devolution":0,"CanBreed":false,"IsGenderless":false,"IsMale":100,"Abilities":[10],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,249,237,173,63,182,240,203,218,231,216,94,104,207,214,188,9,197,156,213,168,171,13,18,36,38,99,85,102,117,86,164,269,280,351,259,263,290,411,451,373,371,416,432,445,399,363,447,369,430,479,482,496,507,510,521,528,590,19,70,250,560],"TutorMoves":[],"BaseStats":{"HP":79,"Atk":105,"Def":70,"SpAtk":145,"SpDef":80,"Speed":101},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"As it flies around, it shoots lightning all over the place and causes forest fires. It is therefore disliked.","Species":"Bolt Strike Pokémon","Height":1.5,"Weight":61,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":90,"Moves":[{"Level":1,"ID":37},{"Level":2,"ID":359},{"Level":3,"ID":417},{"Level":4,"ID":268},{"Level":5,"ID":253},{"Level":6,"ID":310},{"Level":7,"ID":84},{"Level":8,"ID":207},{"Level":13,"ID":44},{"Level":19,"ID":279},{"Level":25,"ID":351},{"Level":31,"ID":377},{"Level":37,"ID":97},{"Level":43,"ID":435},{"Level":49,"ID":242},{"Level":55,"ID":268},{"Level":61,"ID":417},{"Level":67,"ID":87},{"Level":73,"ID":399},{"Level":79,"ID":359},{"Level":85,"ID":37}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Thundurus +Number|642 +ExperienceType|3 +BaseExperience|261 +Type1|Electric +Type2|Flying +CatchRate|3 +BaseFriendship|90 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|642 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|100 +Ability1|10 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,249,237,173,63,182,240,203,218,231,216,94,104,207,214,188,9,197,156,213,168,171,13,18,36,38,99,85,102,117,86,164,269,280,351,259,263,290,411,451,373,371,416,432,445,399,363,447,369,430,479,482,496,507,510,521,528,590,19,70,250,560 +BaseHP|79 +BaseAttack|105 +BaseDefense|70 +BaseSpAttack|145 +BaseSpDefense|80 +BaseSpeed|101 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|As it flies around, it shoots lightning all over the place and causes forest fires. It is therefore disliked.\Bolt Strike Pokémon\61\1.5\0,148,0 +Scale|1.2 +Move|1,37 +Move|1,359 +Move|1,417 +Move|1,268 +Move|1,253 +Move|1,310 +Move|1,84 +Move|7,207 +Move|13,44 +Move|19,279 +Move|25,351 +Move|31,377 +Move|37,97 +Move|43,435 +Move|49,242 +Move|55,268 +Move|61,417 +Move|67,87 +Move|73,399 +Move|79,359 +Move|85,37 +TradeValue|90 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/643.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/643.dat index 62c1afc8b..27393be9f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/643.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/643.dat @@ -1 +1,54 @@ -{"Name":"Reshiram","Number":643,"ExperienceType":"Slow","BaseExperience":306,"Type1":"Dragon","Type2":"Fire","CatchRate":45,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":643,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[163],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,249,237,241,173,63,182,203,218,225,216,104,207,214,126,197,156,213,211,210,5,13,18,25,34,36,38,66,68,69,99,82,102,117,130,143,161,164,264,337,53,263,290,315,355,411,406,261,416,432,445,363,468,488,496,510,525,590,15,19,70,431,560],"TutorMoves":[434],"BaseStats":{"HP":100,"Atk":120,"Def":100,"SpAtk":150,"SpDef":120,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This legendary Pokémon can scorch the world with fire. It helps those who want to build a world of truth.","Species":"Vast White Pokémon","Height":3.2,"Weight":330,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":424},{"Level":2,"ID":82},{"Level":8,"ID":1},{"Level":15,"ID":246},{"Level":22,"ID":53},{"Level":29,"ID":225},{"Level":36,"ID":163},{"Level":43,"ID":326},{"Level":50,"ID":558},{"Level":54,"ID":406},{"Level":64,"ID":1},{"Level":71,"ID":242},{"Level":78,"ID":126},{"Level":85,"ID":200},{"Level":92,"ID":304},{"Level":100,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Reshiram +Number|643 +ExperienceType|3 +BaseExperience|306 +Type1|Dragon +Type2|Fire +CatchRate|45 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|643 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|163 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,249,237,241,173,63,182,203,218,225,216,104,207,214,126,197,156,213,211,210,5,13,18,25,34,36,38,66,68,69,99,82,102,117,130,143,161,164,264,337,53,263,290,315,355,411,406,261,416,432,445,363,468,488,496,510,525,590,15,19,70,431,560 +TutorMoves|434 +BaseHP|100 +BaseAttack|120 +BaseDefense|100 +BaseSpAttack|150 +BaseSpDefense|120 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This legendary Pokémon can scorch the world with fire. It helps those who want to build a world of truth.\Vast White Pokémon\330\3.2\0,148,0 +Scale|2 +Move|1,424 +Move|1,82 +Move|8,286 +Move|15,246 +Move|22,53 +Move|29,225 +Move|36,163 +Move|43,326 +Move|50,558 +Move|54,406 +Move|64,286 +Move|71,242 +Move|78,126 +Move|85,200 +Move|92,304 +Move|100,551 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/644.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/644.dat index dbfb60293..fc7f1967d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/644.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/644.dat @@ -1 +1,54 @@ -{"Name":"Zekrom","Number":644,"ExperienceType":"Slow","BaseExperience":306,"Type1":"Dragon","Type2":"Electric","CatchRate":45,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":644,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[164],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,192,249,237,241,173,63,182,203,218,225,87,216,104,207,214,9,197,156,213,211,210,5,13,18,25,34,36,38,66,68,69,99,82,85,102,117,130,143,86,161,164,264,337,351,263,290,355,411,406,416,432,445,363,468,496,521,525,528,590,15,19,70,148,431,560],"TutorMoves":[434],"BaseStats":{"HP":100,"Atk":150,"Def":120,"SpAtk":120,"SpDef":100,"Speed":90},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This legendary Pokémon can scorch the world with lightning. It assists those who want to build an ideal world.","Species":"Deep Black Pokémon","Height":2.9,"Weight":345,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.76,"Y":1.76,"Z":1.76},"TradeValue":100,"Moves":[{"Level":1,"ID":422},{"Level":2,"ID":82},{"Level":8,"ID":1},{"Level":15,"ID":246},{"Level":22,"ID":85},{"Level":29,"ID":225},{"Level":36,"ID":163},{"Level":43,"ID":428},{"Level":50,"ID":559},{"Level":54,"ID":337},{"Level":64,"ID":1},{"Level":71,"ID":242},{"Level":78,"ID":87},{"Level":85,"ID":200},{"Level":92,"ID":304},{"Level":100,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Zekrom +Number|644 +ExperienceType|3 +BaseExperience|306 +Type1|Dragon +Type2|Electric +CatchRate|45 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|644 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|164 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,192,249,237,241,173,63,182,203,218,225,87,216,104,207,214,9,197,156,213,211,210,5,13,18,25,34,36,38,66,68,69,99,82,85,102,117,130,143,86,161,164,264,337,351,263,290,355,411,406,416,432,445,363,468,496,521,525,528,590,15,19,70,148,431,560 +TutorMoves|434 +BaseHP|100 +BaseAttack|150 +BaseDefense|120 +BaseSpAttack|120 +BaseSpDefense|100 +BaseSpeed|90 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This legendary Pokémon can scorch the world with lightning. It assists those who want to build an ideal world.\Deep Black Pokémon\345\2.9\0,148,0 +Scale|1.76 +Move|1,422 +Move|1,82 +Move|8,286 +Move|15,246 +Move|22,85 +Move|29,225 +Move|36,163 +Move|43,428 +Move|50,559 +Move|54,337 +Move|64,286 +Move|71,242 +Move|78,87 +Move|85,200 +Move|92,304 +Move|100,550 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/645.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/645.dat index d4f0fab50..3ffac0b50 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/645.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/645.dat @@ -1 +1,57 @@ -{"Name":"Landorus","Number":645,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Ground","Type2":"Flying","CatchRate":3,"BaseFriendship":90,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":645,"Devolution":0,"CanBreed":false,"IsGenderless":false,"IsMale":100,"Abilities":[159],"HiddenAbility":125,"EggMoves":[],"Machines":[174,92,249,237,173,63,182,203,218,231,89,216,104,207,214,201,197,156,213,171,13,18,36,38,99,90,102,117,164,263,290,411,416,432,446,445,363,479,496,528,590,19,70,560],"TutorMoves":[],"BaseStats":{"HP":89,"Atk":125,"Def":90,"SpAtk":115,"SpDef":80,"Speed":101},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"From the forces of lightning and wind, it creates energy to give nutrients to the soil and make the land abundant.","Species":"Abundance Pokémon","Height":1.5,"Weight":68,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":95,"Moves":[{"Level":1,"ID":200},{"Level":2,"ID":359},{"Level":3,"ID":90},{"Level":4,"ID":335},{"Level":5,"ID":341},{"Level":6,"ID":317},{"Level":7,"ID":1},{"Level":13,"ID":386},{"Level":19,"ID":523},{"Level":25,"ID":88},{"Level":31,"ID":326},{"Level":37,"ID":14},{"Level":43,"ID":414},{"Level":49,"ID":157},{"Level":55,"ID":89},{"Level":61,"ID":201},{"Level":67,"ID":90},{"Level":73,"ID":444},{"Level":79,"ID":359},{"Level":85,"ID":200}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Landorus +Number|645 +ExperienceType|3 +BaseExperience|270 +Type1|Ground +Type2|Flying +CatchRate|3 +BaseFriendship|90 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|645 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|100 +Ability1|159 +Ability2|Nothing +HiddenAbility|125 +Machines|174,92,249,237,173,63,182,203,218,231,89,216,104,207,214,201,197,156,213,171,13,18,36,38,99,90,102,117,164,263,290,411,416,432,446,445,363,479,496,528,590,19,70,560 +BaseHP|89 +BaseAttack|125 +BaseDefense|90 +BaseSpAttack|115 +BaseSpDefense|80 +BaseSpeed|101 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|From the forces of lightning and wind, it creates energy to give nutrients to the soil and make the land abundant.\Abundance Pokémon\68\1.5\0,148,0 +Scale|1.2 +Move|1,200 +Move|1,359 +Move|1,90 +Move|1,335 +Move|1,341 +Move|1,317 +Move|7,286 +Move|13,386 +Move|19,523 +Move|25,88 +Move|31,326 +Move|37,14 +Move|43,414 +Move|49,157 +Move|55,89 +Move|61,201 +Move|67,90 +Move|73,444 +Move|79,359 +Move|85,200 +TradeValue|95 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/645_therian.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/645_therian.dat index 9feb87e93..23bd6f6b8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/645_therian.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/645_therian.dat @@ -1 +1,57 @@ -{"Name":"Landorus","Number":645,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Ground","Type2":"Flying","CatchRate":3,"BaseFriendship":90,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":645,"Devolution":0,"CanBreed":false,"IsGenderless":false,"IsMale":100,"Abilities":[22],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,249,237,173,63,182,203,218,231,89,216,104,207,214,201,197,156,213,171,13,18,36,38,99,90,102,117,164,263,290,411,416,432,446,445,363,479,496,528,590,19,70,560],"TutorMoves":[],"BaseStats":{"HP":89,"Atk":145,"Def":90,"SpAtk":105,"SpDef":80,"Speed":91},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"From the forces of lightning and wind, it creates energy to give nutrients to the soil and make the land abundant.","Species":"Abundance Pokémon","Height":1.5,"Weight":68,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":95,"Moves":[{"Level":1,"ID":200},{"Level":2,"ID":359},{"Level":3,"ID":90},{"Level":4,"ID":335},{"Level":5,"ID":341},{"Level":6,"ID":317},{"Level":7,"ID":1},{"Level":13,"ID":386},{"Level":19,"ID":523},{"Level":25,"ID":88},{"Level":31,"ID":326},{"Level":37,"ID":14},{"Level":43,"ID":414},{"Level":49,"ID":157},{"Level":55,"ID":89},{"Level":61,"ID":201},{"Level":67,"ID":90},{"Level":73,"ID":444},{"Level":79,"ID":359},{"Level":85,"ID":200}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Landorus +Number|645 +ExperienceType|3 +BaseExperience|270 +Type1|Ground +Type2|Flying +CatchRate|3 +BaseFriendship|90 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|645 +IsGenderLess|0 +CanBreed|0 +Devolution|0 +IsMale|100 +Ability1|22 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,249,237,173,63,182,203,218,231,89,216,104,207,214,201,197,156,213,171,13,18,36,38,99,90,102,117,164,263,290,411,416,432,446,445,363,479,496,528,590,19,70,560 +BaseHP|89 +BaseAttack|145 +BaseDefense|90 +BaseSpAttack|105 +BaseSpDefense|80 +BaseSpeed|91 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|From the forces of lightning and wind, it creates energy to give nutrients to the soil and make the land abundant.\Abundance Pokémon\68\1.5\0,148,0 +Scale|1.2 +Move|1,200 +Move|1,359 +Move|1,90 +Move|1,335 +Move|1,341 +Move|1,317 +Move|7,286 +Move|13,386 +Move|19,523 +Move|25,88 +Move|31,326 +Move|37,14 +Move|43,414 +Move|49,157 +Move|55,89 +Move|61,201 +Move|67,90 +Move|73,444 +Move|79,359 +Move|85,200 +TradeValue|95 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646.dat index 3c0a39ccf..67899591f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646.dat @@ -1 +1,53 @@ -{"Name":"Kyurem","Number":646,"ExperienceType":"Slow","BaseExperience":297,"Type1":"Dragon","Type2":"Ice","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":646,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[46],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,249,237,173,59,63,196,182,203,218,225,216,104,207,214,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,130,143,161,164,337,352,258,263,290,355,411,406,416,432,419,445,363,468,496,525,590,15,19,70,250,431,560],"TutorMoves":[434],"BaseStats":{"HP":125,"Atk":130,"Def":90,"SpAtk":130,"SpDef":90,"Speed":95},"RewardEV":{"HP":1,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This legendary ice Pokémon waits for a hero to fill in the missing parts of its body with truth or ideals..","Species":"Boundary Pokémon","Height":3,"Weight":325,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":196},{"Level":2,"ID":82},{"Level":8,"ID":1},{"Level":15,"ID":246},{"Level":22,"ID":58},{"Level":29,"ID":225},{"Level":36,"ID":163},{"Level":43,"ID":184},{"Level":50,"ID":1},{"Level":57,"ID":406},{"Level":64,"ID":1},{"Level":71,"ID":283},{"Level":78,"ID":59},{"Level":85,"ID":200},{"Level":92,"ID":304}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Kyurem +Number|646 +ExperienceType|3 +BaseExperience|297 +Type1|Dragon +Type2|Ice +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|646 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|46 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,249,237,173,59,63,196,182,203,218,225,216,104,207,214,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,130,143,161,164,337,352,258,263,290,355,411,406,416,432,419,445,363,468,496,525,590,15,19,70,250,431,560 +TutorMoves|434 +BaseHP|125 +BaseAttack|130 +BaseDefense|90 +BaseSpAttack|130 +BaseSpDefense|90 +BaseSpeed|95 +FPHP|1 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This legendary ice Pokémon waits for a hero to fill in the missing parts of its body with truth or ideals..\Boundary Pokémon\325\3\0,148,0 +Scale|2 +Move|1,196 +Move|1,82 +Move|8,286 +Move|15,246 +Move|22,58 +Move|29,225 +Move|36,163 +Move|43,184 +Move|50,549 +Move|57,406 +Move|64,286 +Move|71,283 +Move|78,59 +Move|85,200 +Move|92,304 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646_black.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646_black.dat index 00c45dfd5..766c2fda8 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646_black.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646_black.dat @@ -1 +1,53 @@ -{"Name":"Kyurem","Number":646,"ExperienceType":"Slow","BaseExperience":297,"Type1":"Dragon","Type2":"Ice","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":646,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[164],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,249,237,173,59,63,196,182,203,218,225,216,104,207,214,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,130,143,161,164,337,352,258,263,290,355,411,406,416,432,419,445,363,468,496,525,590,15,19,70,250,431,560],"TutorMoves":[434],"BaseStats":{"HP":125,"Atk":170,"Def":90,"SpAtk":120,"SpDef":100,"Speed":95},"RewardEV":{"HP":1,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This legendary ice Pokémon waits for a hero to fill in the missing parts of its body with truth or ideals..","Species":"Boundary Pokémon","Height":3,"Weight":325,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":196},{"Level":2,"ID":82},{"Level":8,"ID":1},{"Level":15,"ID":246},{"Level":22,"ID":58},{"Level":29,"ID":225},{"Level":36,"ID":163},{"Level":43,"ID":559},{"Level":50,"ID":553},{"Level":57,"ID":406},{"Level":64,"ID":1},{"Level":71,"ID":283},{"Level":78,"ID":59},{"Level":85,"ID":200},{"Level":92,"ID":304}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Kyurem +Number|646 +ExperienceType|3 +BaseExperience|297 +Type1|Dragon +Type2|Ice +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|646 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|164 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,249,237,173,59,63,196,182,203,218,225,216,104,207,214,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,130,143,161,164,337,352,258,263,290,355,411,406,416,432,419,445,363,468,496,525,590,15,19,70,250,431,560 +TutorMoves|434 +BaseHP|125 +BaseAttack|170 +BaseDefense|90 +BaseSpAttack|120 +BaseSpDefense|100 +BaseSpeed|95 +FPHP|1 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This legendary ice Pokémon waits for a hero to fill in the missing parts of its body with truth or ideals..\Boundary Pokémon\325\3\0,148,0 +Scale|2 +Move|1,196 +Move|1,82 +Move|8,286 +Move|15,246 +Move|22,58 +Move|29,225 +Move|36,163 +Move|43,559 +Move|50,553 +Move|57,406 +Move|64,286 +Move|71,283 +Move|78,59 +Move|85,200 +Move|92,304 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646_white.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646_white.dat index 19d0fbff2..7ffa2565d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646_white.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/646_white.dat @@ -1 +1,53 @@ -{"Name":"Kyurem","Number":646,"ExperienceType":"Slow","BaseExperience":297,"Type1":"Dragon","Type2":"Ice","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":646,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[163],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,92,192,249,237,173,59,63,196,182,203,218,225,216,104,207,214,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,130,143,161,164,337,352,258,263,290,355,411,406,416,432,419,445,363,468,496,525,590,15,19,70,250,431,560],"TutorMoves":[434],"BaseStats":{"HP":125,"Atk":120,"Def":90,"SpAtk":170,"SpDef":100,"Speed":95},"RewardEV":{"HP":1,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This legendary ice Pokémon waits for a hero to fill in the missing parts of its body with truth or ideals..","Species":"Boundary Pokémon","Height":3,"Weight":325,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":100,"Moves":[{"Level":1,"ID":196},{"Level":2,"ID":82},{"Level":8,"ID":1},{"Level":15,"ID":246},{"Level":22,"ID":58},{"Level":29,"ID":225},{"Level":36,"ID":163},{"Level":43,"ID":558},{"Level":50,"ID":554},{"Level":57,"ID":406},{"Level":64,"ID":1},{"Level":71,"ID":283},{"Level":78,"ID":59},{"Level":85,"ID":200},{"Level":92,"ID":304}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Kyurem +Number|646 +ExperienceType|3 +BaseExperience|297 +Type1|Dragon +Type2|Ice +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|646 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|163 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,249,237,173,59,63,196,182,203,218,225,216,104,207,214,197,156,213,211,210,13,18,34,36,38,58,99,82,102,117,130,143,161,164,337,352,258,263,290,355,411,406,416,432,419,445,363,468,496,525,590,15,19,70,250,431,560 +TutorMoves|434 +BaseHP|125 +BaseAttack|120 +BaseDefense|90 +BaseSpAttack|170 +BaseSpDefense|100 +BaseSpeed|95 +FPHP|1 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This legendary ice Pokémon waits for a hero to fill in the missing parts of its body with truth or ideals..\Boundary Pokémon\325\3\0,148,0 +Scale|2 +Move|1,196 +Move|1,82 +Move|8,286 +Move|15,246 +Move|22,58 +Move|29,225 +Move|36,163 +Move|43,558 +Move|50,554 +Move|57,406 +Move|64,286 +Move|71,283 +Move|78,59 +Move|85,200 +Move|92,304 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/647.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/647.dat index ba06f5a42..576daed10 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/647.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/647.dat @@ -1 +1,51 @@ -{"Name":"Keldeo","Number":647,"ExperienceType":"Slow","BaseExperience":261,"Type1":"Water","Type2":"Fighting","CatchRate":3,"BaseFriendship":35,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":20655,"EggPokemon":647,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[154],"HiddenAbility":-1,"EggMoves":[],"Machines":[174,46,92,249,244,237,173,63,196,182,203,218,216,104,207,214,129,197,156,213,14,25,32,34,36,38,61,55,99,102,117,130,164,352,263,290,411,206,362,416,445,363,496,503,526,590,15,57,70,250,431,560],"TutorMoves":[],"BaseStats":{"HP":91,"Atk":72,"Def":90,"SpAtk":129,"SpDef":90,"Speed":108},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it is resolute, its body fills with power and it becomes swifter. Its jumps are then too fast to follow.","Species":"Colt Pokémon","Height":1.4,"Weight":48.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":120,"Moves":[{"Level":1,"ID":453},{"Level":2,"ID":43},{"Level":7,"ID":24},{"Level":13,"ID":61},{"Level":19,"ID":36},{"Level":25,"ID":1},{"Level":31,"ID":1},{"Level":37,"ID":401},{"Level":43,"ID":1},{"Level":49,"ID":14},{"Level":55,"ID":1},{"Level":61,"ID":526},{"Level":67,"ID":56},{"Level":73,"ID":370}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Keldeo +Number|647 +ExperienceType|3 +BaseExperience|261 +Type1|Water +Type2|Fighting +CatchRate|3 +BaseFriendship|35 +EggGroup1|None +EggGroup2|None +BaseEggSteps|20655 +EggPokemon|647 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|154 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,249,244,237,173,63,196,182,203,218,216,104,207,214,129,197,156,213,14,25,32,34,36,38,61,55,99,102,117,130,164,352,263,290,411,206,362,416,445,363,496,503,526,590,15,57,70,250,431,560 +BaseHP|91 +BaseAttack|72 +BaseDefense|90 +BaseSpAttack|129 +BaseSpDefense|90 +BaseSpeed|108 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it is resolute, its body fills with power and it becomes swifter. Its jumps are then too fast to follow.\Colt Pokémon\48.5\1.4\0,148,0 +Scale|1.16 +Move|1,453 +Move|1,43 +Move|7,24 +Move|13,61 +Move|19,36 +Move|25,270 +Move|31,514 +Move|37,401 +Move|43,533 +Move|49,14 +Move|55,501 +Move|61,526 +Move|67,56 +Move|73,370 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/648.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/648.dat index e79063dc0..faf219c1a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/648.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/648.dat @@ -1 +1,52 @@ -{"Name":"Meloetta","Number":648,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Normal","Type2":"Psychic","CatchRate":3,"BaseFriendship":100,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":648,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[32],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,249,244,237,241,230,173,63,182,240,203,218,87,216,94,104,8,207,214,9,138,197,156,213,7,171,5,25,34,36,66,68,69,99,85,100,102,117,118,130,86,149,164,264,347,280,351,263,290,285,289,411,412,409,373,421,371,278,416,445,363,468,473,477,490,496,497,512,526,612,605,590,70,148],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":77,"Def":77,"SpAtk":128,"SpDef":128,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":1,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The melodies sung by Meloetta have the power to make Pokémon that hear them happy or sad.","Species":"Melody Pokémon","Height":0.6,"Weight":6.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":120,"Moves":[{"Level":1,"ID":1},{"Level":6,"ID":98},{"Level":11,"ID":93},{"Level":16,"ID":47},{"Level":21,"ID":298},{"Level":26,"ID":512},{"Level":31,"ID":60},{"Level":36,"ID":1},{"Level":43,"ID":369},{"Level":50,"ID":358},{"Level":57,"ID":94},{"Level":64,"ID":304},{"Level":71,"ID":272},{"Level":78,"ID":370},{"Level":85,"ID":195}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Meloetta +Number|648 +ExperienceType|3 +BaseExperience|270 +Type1|Normal +Type2|Psychic +CatchRate|3 +BaseFriendship|100 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|648 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|32 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,249,244,237,241,230,173,63,182,240,203,218,87,216,94,104,8,207,214,9,138,197,156,213,7,171,5,25,34,36,66,68,69,99,85,100,102,117,118,130,86,149,164,264,347,280,351,263,290,285,289,411,412,409,373,421,371,278,416,445,363,468,473,477,490,496,497,512,526,612,605,590,70,148 +BaseHP|100 +BaseAttack|77 +BaseDefense|77 +BaseSpAttack|128 +BaseSpDefense|128 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|1 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|The melodies sung by Meloetta have the power to make Pokémon that hear them happy or sad.\Melody Pokémon\6.5\0.6\0,148,0 +Scale|0.84 +Move|1,496 +Move|6,98 +Move|11,93 +Move|16,47 +Move|21,298 +Move|26,512 +Move|31,60 +Move|36,497 +Move|43,369 +Move|50,358 +Move|57,94 +Move|64,304 +Move|71,272 +Move|78,370 +Move|85,195 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/648_pirouette.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/648_pirouette.dat index a13973f2c..b1b8feb83 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/648_pirouette.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/648_pirouette.dat @@ -1 +1,52 @@ -{"Name":"Meloetta","Number":648,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Normal","Type2":"Fighting","CatchRate":3,"BaseFriendship":100,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":648,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[32],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,249,244,237,241,230,173,63,182,240,203,218,87,216,94,104,8,207,214,9,138,197,156,213,7,171,5,25,34,36,66,68,69,99,85,100,102,117,118,130,86,149,164,264,347,280,351,263,290,285,289,411,412,409,373,421,371,278,416,445,363,468,473,477,490,496,497,512,526,612,605,590,70,148],"TutorMoves":[],"BaseStats":{"HP":100,"Atk":128,"Def":90,"SpAtk":77,"SpDef":77,"Speed":128},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":1,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The melodies sung by Meloetta have the power to make Pokémon that hear them happy or sad.","Species":"Melody Pokémon","Height":0.6,"Weight":6.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.84,"Y":0.84,"Z":0.84},"TradeValue":120,"Moves":[{"Level":1,"ID":1},{"Level":6,"ID":98},{"Level":11,"ID":93},{"Level":16,"ID":47},{"Level":21,"ID":298},{"Level":26,"ID":512},{"Level":31,"ID":60},{"Level":36,"ID":1},{"Level":43,"ID":369},{"Level":50,"ID":358},{"Level":57,"ID":94},{"Level":64,"ID":304},{"Level":71,"ID":272},{"Level":78,"ID":370},{"Level":85,"ID":195}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Meloetta +Number|648 +ExperienceType|3 +BaseExperience|270 +Type1|Normal +Type2|Fighting +CatchRate|3 +BaseFriendship|100 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|648 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|32 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,249,244,237,241,230,173,63,182,240,203,218,87,216,94,104,8,207,214,9,138,197,156,213,7,171,5,25,34,36,66,68,69,99,85,100,102,117,118,130,86,149,164,264,347,280,351,263,290,285,289,411,412,409,373,421,371,278,416,445,363,468,473,477,490,496,497,512,526,612,605,590,70,148 +BaseHP|100 +BaseAttack|128 +BaseDefense|90 +BaseSpAttack|77 +BaseSpDefense|77 +BaseSpeed|128 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|1 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|The melodies sung by Meloetta have the power to make Pokémon that hear them happy or sad.\Melody Pokémon\6.5\0.6\0,148,0 +Scale|0.84 +Move|1,496 +Move|6,98 +Move|11,93 +Move|16,47 +Move|21,298 +Move|26,512 +Move|31,60 +Move|36,497 +Move|43,369 +Move|50,358 +Move|57,94 +Move|64,304 +Move|71,272 +Move|78,370 +Move|85,195 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/649.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/649.dat index 6fd9c9836..ddc371595 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/649.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/649.dat @@ -1 +1,57 @@ -{"Name":"Genesect","Number":649,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Bug","Type2":"Steel","CatchRate":3,"BaseFriendship":0,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":30855,"EggPokemon":649,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0.0,"Abilities":[88],"HiddenAbility":-1,"EggMoves":[],"Machines":[223,174,92,192,237,173,59,63,182,202,203,218,216,104,207,214,197,156,213,210,5,25,34,36,38,58,66,68,69,99,102,117,120,130,164,264,351,263,290,412,318,278,416,445,399,363,468,496,590,19],"TutorMoves":[],"BaseStats":{"HP":71,"Atk":120,"Def":95,"SpAtk":120,"SpDef":95,"Speed":99},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":1,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokémon existed 300 million years ago. Team Plasma altered it and attached a cannon to its back.","Species":"Paleozoic Pokemon","Height":1.5,"Weight":85.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.1,"Y":1.1,"Z":1.1},"TradeValue":120,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":1},{"Level":3,"ID":98},{"Level":4,"ID":1},{"Level":5,"ID":232},{"Level":6,"ID":103},{"Level":7,"ID":210},{"Level":11,"ID":199},{"Level":18,"ID":488},{"Level":22,"ID":443},{"Level":29,"ID":163},{"Level":33,"ID":319},{"Level":40,"ID":324},{"Level":44,"ID":161},{"Level":51,"ID":404},{"Level":55,"ID":405},{"Level":62,"ID":1},{"Level":66,"ID":192},{"Level":73,"ID":63},{"Level":77,"ID":120}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Genesect +Number|649 +ExperienceType|3 +BaseExperience|270 +Type1|Bug +Type2|Steel +CatchRate|3 +BaseFriendship|0 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|649 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0.0 +Ability1|88 +Ability2|Nothing +HiddenAbility|Nothing +Machines|223,174,92,192,237,173,59,63,182,202,203,218,216,104,207,214,197,156,213,210,5,25,34,36,38,58,66,68,69,99,102,117,120,130,164,264,351,263,290,412,318,278,416,445,399,363,468,496,590,19 +BaseHP|71 +BaseAttack|120 +BaseDefense|95 +BaseSpAttack|120 +BaseSpDefense|95 +BaseSpeed|99 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|This Pokémon existed 300 million years ago. Team Plasma altered it and attached a cannon to its back.\Paleozoic Pokemon\85.2\1.5\0,148,0 +Scale|1.10 +Move|1,565 +Move|1,546 +Move|1,98 +Move|1,393 +Move|1,232 +Move|1,103 +Move|7,210 +Move|11,199 +Move|18,488 +Move|22,443 +Move|29,163 +Move|33,319 +Move|40,324 +Move|44,161 +Move|51,404 +Move|55,405 +Move|62,493 +Move|66,192 +Move|73,63 +Move|77,120 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/65.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/65.dat index 4fe0056c1..6cd3f22ee 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/65.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/65.dat @@ -1 +1,55 @@ -{"Name":"Alakazam","Number":65,"ExperienceType":"MediumSlow","BaseExperience":221,"Type1":"Psychic","Type2":"Blank","CatchRate":50,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":63,"Devolution":64,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[28,39],"HiddenAbility":98,"EggMoves":[502,112,227,7,470,385,8,282,379,375,285,94,9,113],"Machines":[223,29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,25,34,36,38,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,351,259,263,290,285,289,411,412,374,451,409,373,278,416,445,363,447,433,473,477,496,502,605,590,148],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":50,"Def":45,"SpAtk":135,"SpDef":95,"Speed":120},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Closing both its eyes heightens all its other senses. This enables it to use its abilities to their extremes.","Species":"Psi Pokémon","Height":1.5,"Weight":48,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":55,"Moves":[{"Level":1,"ID":100},{"Level":2,"ID":134},{"Level":3,"ID":93},{"Level":16,"ID":93},{"Level":18,"ID":1},{"Level":22,"ID":357},{"Level":24,"ID":1},{"Level":28,"ID":60},{"Level":30,"ID":115},{"Level":34,"ID":1},{"Level":36,"ID":105},{"Level":40,"ID":427},{"Level":42,"ID":347},{"Level":46,"ID":94},{"Level":48,"ID":248},{"Level":50,"ID":271}],"EvolutionConditions":[],"Items":[{"Id":96,"Chance":5}]} \ No newline at end of file +Name|Alakazam +Number|65 +ExperienceType|2 +BaseExperience|221 +Type1|Psychic +Type2| +CatchRate|50 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|63 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|75 +Ability1|28 +Ability2|39 +HiddenAbility|98 +EggMoves|502,112,227,7,470,385,8,282,379,375,285,94,9,113 +Machines|223,29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,25,34,36,38,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,351,259,263,290,285,289,411,412,374,451,409,373,278,416,445,363,447,433,473,477,496,502,605,590,148 +BaseHP|55 +BaseAttack|50 +BaseDefense|45 +BaseSpAttack|135 +BaseSpDefense|95 +BaseSpeed|120 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Closing both its eyes heightens all its other senses. This enables it to use its abilities to their extremes.\Psi Pokémon\48\1.5\0,148,0 +Scale|1.2 +Move|1,100 +Move|1,134 +Move|1,93 +Move|16,93 +Move|18,50 +Move|22,357 +Move|24,502 +Move|28,60 +Move|30,115 +Move|34,477 +Move|36,105 +Move|40,427 +Move|42,347 +Move|46,94 +Move|48,248 +Move|50,271 +TradeValue|55 +Item|5,96 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/650.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/650.dat new file mode 100644 index 000000000..26a3c5aab --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/650.dat @@ -0,0 +1,53 @@ +Name|Chespin +Number|650 +ExperienceType|2 +BaseExperience|63 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|650 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|171 +EggMoves|187,174,111,501,205,191,235 +Machines|223,174,205,46,92,249,237,241,173,63,182,202,203,218,76,231,216,91,104,207,214,188,111,9,197,156,213,210,14,34,36,99,72,102,115,117,130,157,164,339,331,269,280,317,332,263,290,412,374,421,371,416,444,360,445,363,398,447,479,490,496,514,523,526,267,612,590,15,70,148 +BaseHP|56 +BaseAttack|61 +BaseDefense|65 +BaseSpAttack|48 +BaseSpDefense|45 +BaseSpeed|38 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The quills on its head are usually soft. When it flexes them, the points become so hard and sharp that they can pierce rock.\Spiny Nut Pokémon\9.0\0.4\0,148,0 +Scale|0.75 +Move|1,33 +Move|1,45 +Move|5,22 +Move|8,205 +Move|11,44 +Move|15,73 +Move|18,42 +Move|27,36 +Move|32,402 +Move|35,341 +Move|39,339 +Move|42,34 +Move|45,220 +Move|48,452 +TradeValue|50 +EvolutionCondition|651,level,16,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/651.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/651.dat new file mode 100644 index 000000000..261d94043 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/651.dat @@ -0,0 +1,54 @@ +Name|Quilladin +Number|651 +ExperienceType|2 +BaseExperience|142 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|650 +IsGenderLess|0 +CanBreed|1 +Devolution|650 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|171 +EggMoves|187,174,111,501,205,191,235 +Machines|223,174,205,46,92,249,237,241,173,63,182,202,203,218,76,231,216,91,104,207,214,188,111,9,197,156,213,210,5,14,25,32,34,36,66,68,69,99,72,102,115,117,130,157,164,264,339,331,269,280,317,332,263,290,412,374,421,371,416,444,360,445,363,398,447,468,479,490,496,514,523,526,267,612,590,15,70,148 +BaseHP|61 +BaseAttack|78 +BaseDefense|95 +BaseSpAttack|56 +BaseSpDefense|58 +BaseSpeed|57 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They strengthen their lower bodies by running into one another. They are very kind and won't start fights.\Spiny Armor Pokémon\29.0\0.7\0,148,0 +Scale|0.75 +Move|1,33 +Move|1,45 +Move|5,22 +Move|8,205 +Move|11,44 +Move|15,73 +Move|20,42 +Move|26,302 +Move|30,36 +Move|35,402 +Move|39,341 +Move|44,339 +Move|48,34 +Move|52,220 +Move|55,452 +TradeValue|60 +EvolutionCondition|652,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/652.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/652.dat new file mode 100644 index 000000000..2df5da73d --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/652.dat @@ -0,0 +1,59 @@ +Name|Chesnaught +Number|652 +ExperienceType|2 +BaseExperience|239 +Type1|Grass +Type2|Fighting +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|650 +IsGenderLess|0 +CanBreed|1 +Devolution|651 +IsMale|87.5 +Ability1|65 +Ability2|Nothing +HiddenAbility|171 +EggMoves|187,174,111,501,205,191,235 +Machines|223,174,205,46,92,249,237,241,173,63,182,202,203,218,76,231,89,216,91,104,207,214,188,111,9,197,156,213,210,5,14,25,32,34,36,38,66,68,69,99,72,102,115,117,120,130,157,164,264,337,339,331,269,280,317,332,263,290,411,412,374,409,421,371,416,444,360,445,363,398,447,468,479,490,496,514,523,526,267,612,590,15,70,148,431 +TutorMoves|338 +BaseHP|88 +BaseAttack|107 +BaseDefense|122 +BaseSpAttack|74 +BaseSpDefense|75 +BaseSpeed|64 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its Tackle is forceful enough to flip a 50-ton tank. It shields its allies from danger with its own body.\Spiny Armor Pokémon\90.0\1.6\0,148,0 +Scale|1.1 +Move|1,364 +Move|1,359 +Move|1,187 +Move|1,33 +Move|1,45 +Move|5,22 +Move|8,205 +Move|11,44 +Move|15,73 +Move|20,42 +Move|26,302 +Move|30,36 +Move|35,402 +Move|41,341 +Move|44,339 +Move|48,34 +Move|52,220 +Move|55,452 +Move|60,359 +Move|70,416 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/653.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/653.dat new file mode 100644 index 000000000..9da7c1570 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/653.dat @@ -0,0 +1,55 @@ +Name|Fennekin +Number|653 +ExperienceType|2 +BaseExperience|61 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|653 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|170 +EggMoves|257,95,277,273 +Machines|174,92,244,237,241,173,63,182,203,218,76,216,94,104,207,214,126,138,197,156,213,168,34,36,99,102,117,164,113,219,53,263,290,315,261,373,416,445,363,447,473,488,496,497,510,612,590,15 +BaseHP|40 +BaseAttack|45 +BaseDefense|40 +BaseSpAttack|62 +BaseSpDefense|60 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Eating a twig fills it with energy, and its roomy ears give vent to air hotter than 390 degrees Fahrenheit.\Fox Pokémon\9.4\0.4\0,148,0 +Scale|0.75 +Move|1,10 +Move|1,39 +Move|5,52 +Move|11,336 +Move|14,488 +Move|17,60 +Move|20,83 +Move|25,381 +Move|27,113 +Move|31,473 +Move|35,53 +Move|38,261 +Move|41,94 +Move|43,241 +Move|46,478 +Move|48,126 +TradeValue|50 +EvolutionCondition|654,level,16,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/654.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/654.dat new file mode 100644 index 000000000..be6e3204e --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/654.dat @@ -0,0 +1,55 @@ +Name|Braixen +Number|654 +ExperienceType|2 +BaseExperience|143 +Type1|Fire +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|653 +IsGenderLess|0 +CanBreed|1 +Devolution|653 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|170 +EggMoves|257,95,277,273 +Machines|174,92,244,237,241,173,63,182,203,218,76,216,94,104,207,214,126,129,138,197,156,213,168,7,210,5,34,36,66,68,69,99,102,117,130,164,264,113,219,53,263,290,315,261,373,416,445,363,447,473,488,496,497,510,612,590,15 +BaseHP|59 +BaseAttack|59 +BaseDefense|58 +BaseSpAttack|90 +BaseSpDefense|70 +BaseSpeed|73 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When the twig is plucked from its tail, friction sets the twig alight. The flame is used to send signals to its allies.\Fox Pokémon\14.5\1.0\0,148,0 +Scale|1.0 +Move|1,10 +Move|1,39 +Move|5,52 +Move|11,336 +Move|14,488 +Move|18,60 +Move|22,83 +Move|27,381 +Move|30,113 +Move|34,473 +Move|41,53 +Move|45,261 +Move|48,94 +Move|51,241 +Move|53,478 +Move|55,126 +TradeValue|60 +EvolutionCondition|655,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/655.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/655.dat new file mode 100644 index 000000000..bd4ee2573 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/655.dat @@ -0,0 +1,63 @@ +Name|Delphox +Number|655 +ExperienceType|2 +BaseExperience|240 +Type1|Fire +Type2|Psychic +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|653 +IsGenderLess|0 +CanBreed|1 +Devolution|654 +IsMale|87.5 +Ability1|66 +Ability2|Nothing +HiddenAbility|170 +EggMoves|257,95,277,273 +Machines|174,92,244,237,241,173,63,182,203,218,76,216,94,247,104,207,214,126,129,9,138,197,156,213,168,7,210,171,5,34,36,38,66,68,69,99,100,102,117,118,130,149,161,164,264,347,113,219,53,263,290,285,289,315,261,373,278,416,445,363,447,433,473,477,488,496,497,503,510,612,590,15,431 +TutorMoves|307 +BaseHP|75 +BaseAttack|69 +BaseDefense|72 +BaseSpAttack|114 +BaseSpDefense|100 +BaseSpeed|104 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Using psychic power, it generates a fiery vortex of 5,400 degree Fahrenheit, incinerating foes swept into this whirl of flame.\Fox Pokémon\39.0\1.5\0,148,0 +Scale|1.1 +Move|1,248 +Move|1,272 +Move|1,415 +Move|1,247 +Move|1,10 +Move|1,39 +Move|5,52 +Move|11,336 +Move|14,488 +Move|18,60 +Move|22,83 +Move|27,381 +Move|30,113 +Move|34,473 +Move|36,595 +Move|42,53 +Move|47,261 +Move|51,94 +Move|55,241 +Move|58,478 +Move|61,126 +Move|69,248 +Move|75,595 +TradeValue|70 +EvolutionCondition|650,level,16,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/656.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/656.dat new file mode 100644 index 000000000..4d2a1c481 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/656.dat @@ -0,0 +1,53 @@ +Name|Froakie +Number|656 +ExperienceType|2 +BaseExperience|63 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|656 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|168 +EggMoves|516,293,170,300,390,346 +Machines|174,92,249,237,173,59,63,182,240,203,218,216,91,189,104,8,207,214,197,156,213,168,34,36,61,55,58,99,102,117,157,164,352,269,317,332,263,290,362,374,416,445,363,447,369,479,496,497,503,512,612,590,15,57,70,250,127,291 +BaseHP|41 +BaseAttack|56 +BaseDefense|40 +BaseSpAttack|62 +BaseSpDefense|44 +BaseSpeed|71 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It secretes flexible bubbles from its chest and back. The bubbles reduce the damage it would otherwise take when attacked.\Bubble Frog Pokémon\7.0\0.3\0,148,0 +Scale|0.6 +Move|1,1 +Move|1,45 +Move|5,145 +Move|8,98 +Move|10,122 +Move|14,352 +Move|18,108 +Move|21,496 +Move|25,374 +Move|29,479 +Move|35,164 +Move|39,340 +Move|43,104 +Move|48,56 +TradeValue|50 +EvolutionCondition|657,level,16,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/657.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/657.dat new file mode 100644 index 000000000..55ece3a1a --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/657.dat @@ -0,0 +1,53 @@ +Name|Frogadier +Number|657 +ExperienceType|2 +BaseExperience|142 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|656 +IsGenderLess|0 +CanBreed|1 +Devolution|656 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|168 +EggMoves|516,293,170,300,390,346 +Machines|174,92,249,237,173,59,63,182,240,203,218,216,91,189,104,8,207,214,197,156,213,168,5,34,36,61,55,58,66,68,69,99,102,117,130,157,164,264,352,269,317,332,263,290,362,374,416,445,399,363,447,369,479,496,497,503,512,612,590,15,57,70,250,127,291 +BaseHP|54 +BaseAttack|63 +BaseDefense|52 +BaseSpAttack|83 +BaseSpDefense|56 +BaseSpeed|97 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It can throw bubble-covered pebbles with precise control, hitting empty cans up to a hundred feet away.\Bubble Frog Pokémon\10.9\0.6\0,148,0 +Scale|0.8 +Move|1,1 +Move|1,45 +Move|5,145 +Move|8,98 +Move|10,122 +Move|14,352 +Move|20,108 +Move|23,496 +Move|28,374 +Move|33,479 +Move|38,164 +Move|44,340 +Move|48,104 +Move|55,56 +TradeValue|60 +EvolutionCondition|658,level,36,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/658.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/658.dat new file mode 100644 index 000000000..290b68b5b --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/658.dat @@ -0,0 +1,60 @@ +Name|Greninja +Number|658 +ExperienceType|2 +BaseExperience|239 +Type1|Water +Type2|Dark +CatchRate|45 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|656 +IsGenderLess|0 +CanBreed|1 +Devolution|657 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|168 +EggMoves|516,293,170,300,390,346 +Machines|174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,8,207,214,129,197,156,213,168,171,5,25,34,36,38,61,55,58,66,68,69,99,102,117,118,130,157,164,264,352,269,317,332,263,290,289,362,374,416,445,399,363,447,369,479,496,497,503,512,612,590,15,57,70,250,127,431,291 +TutorMoves|308 +BaseHP|72 +BaseAttack|95 +BaseDefense|67 +BaseSpAttack|403 +BaseSpDefense|71 +BaseSpeed|122 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|0 +CanSwim|0 +Pokedex|It creates throwing stars out of compressed water. When it spins them and throws them at high speed, these stars can split metal in two.\Ninja Pokémon\40.0\1.5\0,148,0 +Scale|0.8 +Move|1,400 +Move|1,272 +Move|1,561 +Move|1,1 +Move|1,45 +Move|5,145 +Move|8,98 +Move|10,122 +Move|14,352 +Move|20,108 +Move|23,425 +Move|28,191 +Move|33,185 +Move|36,594 +Move|43,164 +Move|49,326 +Move|52,104 +Move|56,114 +Move|60,56 +Move|70,400 +Move|75,594 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/659.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/659.dat new file mode 100644 index 000000000..47c2a9ddd --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/659.dat @@ -0,0 +1,55 @@ +Name|Bunnelby +Number|659 +ExperienceType|1 +BaseExperience|47 +Type1|Normal +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|659 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|167 +HiddenAbility|37 +EggMoves|111,205,191 +Machines|223,174,92,249,237,173,63,182,203,218,89,216,91,189,104,8,207,214,188,201,111,9,197,156,213,168,7,5,14,25,34,36,61,55,58,6,99,102,117,120,130,157,164,264,339,280,351,317,259,263,290,289,374,409,371,278,416,444,446,445,363,447,369,479,496,523,526,528,267,612,590,15,57 +BaseHP|38 +BaseAttack|36 +BaseDefense|38 +BaseSpAttack|32 +BaseSpDefense|36 +BaseSpeed|57 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|They use their large ears to dig burrows. They will dig the whole night through.\Digging Pokémon\5.0\0.4\0,148,0 +Scale|0.6 +Move|1,33 +Move|1,97 +Move|1,43 +Move|7,98 +Move|10,3 +Move|13,189 +Move|15,36 +Move|18,341 +Move|20,24 +Move|25,316 +Move|29,175 +Move|33,91 +Move|38,340 +Move|42,162 +Move|47,263 +Move|49,89 +TradeValue|15 +EvolutionCondition|660,level,20,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/65_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/65_mega.dat new file mode 100644 index 000000000..66069554b --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/65_mega.dat @@ -0,0 +1,55 @@ +Name|Mega Alakazam +Number|65 +ExperienceType|2 +BaseExperience|221 +Type1|Psychic +Type2| +CatchRate|50 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|63 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|75 +Ability1|36 +Ability2|Nothing +HiddenAbility|36 +EggMoves|502,112,227,7,470,385,8,282,379,375,285,94,9,113 +Machines|223,29,174,92,192,244,237,241,173,63,182,240,203,218,231,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,25,34,36,38,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,351,259,263,290,285,289,411,412,374,451,409,373,278,416,445,363,447,433,473,477,496,502,605,590,148 +BaseHP|55 +BaseAttack|50 +BaseDefense|65 +BaseSpAttack|175 +BaseSpDefense|95 +BaseSpeed|150 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Closing both its eyes heightens all its other senses. This enables it to use its abilities to their extremes.\Psi Pokémon\48\1.2\0,148,0 +Scale|1.2 +Move|1,100 +Move|1,134 +Move|1,93 +Move|16,93 +Move|18,50 +Move|22,357 +Move|24,502 +Move|28,60 +Move|30,115 +Move|34,477 +Move|36,105 +Move|40,427 +Move|42,347 +Move|46,94 +Move|48,248 +Move|50,271 +TradeValue|55 +Item|5,96 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/66.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/66.dat index c5229568b..b9351a759 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/66.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/66.dat @@ -1 +1,53 @@ -{"Name":"Machop","Number":66,"ExperienceType":"MediumSlow","BaseExperience":61,"Type1":"Fighting","Type2":"Blank","CatchRate":180,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":66,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[62,99],"HiddenAbility":80,"EggMoves":[418,370,68,227,7,484,8,282,96,379,501,27,265,9,321,113,157],"Machines":[223,29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,126,9,197,156,213,168,7,5,25,34,36,38,66,68,69,99,90,102,117,118,130,157,164,264,339,113,280,53,317,263,290,411,374,371,416,445,363,398,479,490,496,510,514,523,526,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":70,"Atk":80,"Def":50,"SpAtk":35,"SpDef":35,"Speed":35},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Always brimming with power, it passes time by lifting boulders. Doing so makes it even stronger.","Species":"Superpower Pokémon","Height":0.8,"Weight":19.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":15,"Moves":[{"Level":1,"ID":67},{"Level":2,"ID":43},{"Level":7,"ID":116},{"Level":10,"ID":2},{"Level":13,"ID":490},{"Level":19,"ID":193},{"Level":22,"ID":69},{"Level":25,"ID":279},{"Level":31,"ID":233},{"Level":34,"ID":66},{"Level":37,"ID":358},{"Level":43,"ID":238},{"Level":46,"ID":184},{"Level":49,"ID":223}],"EvolutionConditions":[{"Condition":"28","ConditionType":"Level","Evolution":67,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Machop +Number|66 +ExperienceType|2 +BaseExperience|61 +Type1|Fighting +Type2| +CatchRate|180 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|66 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|75 +Ability1|62 +Ability2|99 +HiddenAbility|80 +EggMoves|418,370,68,227,7,484,8,282,96,379,501,27,265,9,321,113,157 +Machines|223,29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,126,9,197,156,213,168,7,5,25,34,36,38,66,68,69,99,90,102,117,118,130,157,164,264,339,113,280,53,317,263,290,411,374,371,416,445,363,398,479,490,496,510,514,523,526,612,590,70,431 +BaseHP|70 +BaseAttack|80 +BaseDefense|50 +BaseSpAttack|35 +BaseSpDefense|35 +BaseSpeed|35 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Always brimming with power, it passes time by lifting boulders. Doing so makes it even stronger.\Superpower Pokémon\19.5\0.8\0,148,0 +Scale|0.92 +Move|1,67 +Move|1,43 +Move|7,116 +Move|10,2 +Move|13,490 +Move|19,193 +Move|22,69 +Move|25,279 +Move|31,233 +Move|34,66 +Move|37,358 +Move|43,238 +Move|46,184 +Move|49,223 +TradeValue|15 +EvolutionCondition|67,Level,28,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/660.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/660.dat new file mode 100644 index 000000000..eed9625ce --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/660.dat @@ -0,0 +1,58 @@ +Name|Diggersby +Number|660 +ExperienceType|1 +BaseExperience|148 +Type1|Normal +Type2|Ground +CatchRate|127 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|659 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|167 +HiddenAbility|37 +EggMoves|111,205,191 +Machines|223,174,205,92,249,237,173,63,182,203,218,89,216,91,189,104,8,207,214,188,201,111,9,197,156,213,168,7,5,14,25,34,36,38,61,55,58,6,66,68,69,99,90,102,117,118,120,130,157,161,164,264,339,280,351,317,259,263,290,289,374,409,371,278,416,444,446,445,363,447,369,479,496,523,526,528,267,612,590,15,57,70,431,560 +BaseHP|85 +BaseAttack|56 +BaseDefense|77 +BaseSpAttack|50 +BaseSpDefense|77 +BaseSpeed|78 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|With their powerful ears, they can heft boulders of a ton or more with ease. They can be a big help at construction sites.\Digging Pokémon\42.4\1.0\0,148,0 +Scale|1.0 +Move|1,359 +Move|1,563 +Move|1,523 +Move|1,14 +Move|1,33 +Move|1,97 +Move|1,43 +Move|7,98 +Move|13,189 +Move|15,36 +Move|18,341 +Move|20,24 +Move|26,316 +Move|31,175 +Move|37,91 +Move|42,340 +Move|48,162 +Move|53,263 +Move|57,89 +Move|60,359 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/661.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/661.dat index ec16c10a5..2b4e5feed 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/661.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/661.dat @@ -1 +1,53 @@ -{"Name":"Fletchling","Number":661,"ExperienceType":"MediumSlow","BaseExperience":56,"Type1":"Normal","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":3840,"EggPokemon":661,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[145],"HiddenAbility":177,"EggMoves":[501,289,366],"Machines":[174,92,237,241,173,63,182,203,218,216,104,207,214,126,129,197,156,213,168,211,13,14,18,36,99,102,117,164,269,332,263,290,315,355,261,416,432,445,363,365,369,488,496,512,590,19],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":50,"Def":43,"SpAtk":40,"SpDef":38,"Speed":62},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"These friendly Pokémon send signals to one another with beautiful chirps and tail-feather movements.","Species":"Tiny Robin Pokémon","Height":0.3,"Weight":1.7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":15,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":6,"ID":98},{"Level":10,"ID":64},{"Level":13,"ID":97},{"Level":16,"ID":175},{"Level":21,"ID":355},{"Level":25,"ID":13},{"Level":29,"ID":363},{"Level":34,"ID":488},{"Level":39,"ID":512},{"Level":41,"ID":1},{"Level":45,"ID":366},{"Level":48,"ID":211}],"EvolutionConditions":[{"Condition":"17","ConditionType":"Level","Evolution":662,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Fletchling +Number|661 +ExperienceType|2 +BaseExperience|56 +Type1|Normal +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|3840 +EggPokemon|661 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|145 +Ability2|Nothing +HiddenAbility|177 +EggMoves|501,289,366 +Machines|174,92,237,241,173,63,182,203,218,216,104,207,214,126,129,197,156,213,168,211,13,14,18,36,99,102,117,164,269,332,263,290,315,355,261,416,432,445,363,365,369,488,496,512,590,19 +BaseHP|45 +BaseAttack|50 +BaseDefense|43 +BaseSpAttack|40 +BaseSpDefense|38 +BaseSpeed|62 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|1 +CanSwim|0 +Pokedex|These friendly Pokémon send signals to one another with beautiful chirps and tail-feather movements.\Tiny Robin Pokémon\1.7\0.3\0,148,0 +Scale|1 +Move|1,33 +Move|1,45 +Move|6,98 +Move|10,64 +Move|13,97 +Move|16,175 +Move|21,355 +Move|25,13 +Move|29,363 +Move|34,488 +Move|39,512 +Move|41,382 +Move|45,366 +Move|48,211 +TradeValue|15 +EvolutionCondition|662,Level,17,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/662.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/662.dat index 6c8111c8d..2556d2ffd 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/662.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/662.dat @@ -1 +1,54 @@ -{"Name":"Fletchinder","Number":662,"ExperienceType":"MediumSlow","BaseExperience":112,"Type1":"Fire","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":3840,"EggPokemon":661,"Devolution":661,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[49],"HiddenAbility":177,"EggMoves":[501,289,366],"Machines":[174,92,237,241,173,63,182,203,218,216,104,207,214,126,129,197,156,213,168,211,13,14,18,36,99,102,117,143,164,269,53,332,263,290,315,355,261,416,432,445,363,365,369,488,496,510,512,590,19],"TutorMoves":[],"BaseStats":{"HP":62,"Atk":73,"Def":55,"SpAtk":56,"SpDef":52,"Speed":84},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"From its beak, it expels embers that set the tall grass on fire. Then it pounces on the bewildered prey that pop out of the grass.","Species":"Ember Pokémon","Height":0.7,"Weight":16,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":30,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":45},{"Level":6,"ID":98},{"Level":10,"ID":64},{"Level":13,"ID":97},{"Level":16,"ID":175},{"Level":17,"ID":52},{"Level":25,"ID":355},{"Level":27,"ID":13},{"Level":31,"ID":363},{"Level":38,"ID":488},{"Level":42,"ID":512},{"Level":46,"ID":1},{"Level":51,"ID":366},{"Level":55,"ID":211}],"EvolutionConditions":[{"Condition":"35","ConditionType":"Level","Evolution":663,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Fletchinder +Number|662 +ExperienceType|2 +BaseExperience|112 +Type1|Fire +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|3840 +EggPokemon|661 +IsGenderLess|0 +CanBreed|1 +Devolution|661 +IsMale|50 +Ability1|49 +Ability2|Nothing +HiddenAbility|177 +EggMoves|501,289,366 +Machines|174,92,237,241,173,63,182,203,218,216,104,207,214,126,129,197,156,213,168,211,13,14,18,36,99,102,117,143,164,269,53,332,263,290,315,355,261,416,432,445,363,365,369,488,496,510,512,590,19 +BaseHP|62 +BaseAttack|73 +BaseDefense|55 +BaseSpAttack|56 +BaseSpDefense|52 +BaseSpeed|84 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|1 +CanSwim|0 +Pokedex|From its beak, it expels embers that set the tall grass on fire. Then it pounces on the bewildered prey that pop out of the grass.\Ember Pokémon\16.0\0.7\0,148,0 +Scale|1 +Move|1,33 +Move|1,45 +Move|6,98 +Move|10,64 +Move|13,97 +Move|16,175 +Move|17,52 +Move|25,355 +Move|27,13 +Move|31,363 +Move|38,488 +Move|42,512 +Move|46,382 +Move|51,366 +Move|55,211 +TradeValue|30 +EvolutionCondition|663,Level,35,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/663.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/663.dat index f1405e9de..38795b6c0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/663.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/663.dat @@ -1 +1,56 @@ -{"Name":"Talonflame","Number":663,"ExperienceType":"MediumSlow","BaseExperience":175,"Type1":"Fire","Type2":"Flying","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":3840,"EggPokemon":661,"Devolution":662,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[49],"HiddenAbility":177,"EggMoves":[501,289,366],"Machines":[174,92,237,241,173,63,182,203,218,76,216,104,207,214,126,129,197,156,213,168,211,13,14,18,36,69,99,102,117,143,164,339,269,53,332,263,290,315,355,261,416,432,445,363,365,369,468,488,496,510,512,590,19],"TutorMoves":[],"BaseStats":{"HP":78,"Atk":81,"Def":71,"SpAtk":74,"SpDef":69,"Speed":126},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":3},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"In the fever of an exciting battle, it showers embers from the gaps between its feathers and takes to the air.","Species":"Ember Pokémon","Height":1.2,"Weight":24.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":30,"Moves":[{"Level":1,"ID":413},{"Level":2,"ID":394},{"Level":3,"ID":33},{"Level":4,"ID":45},{"Level":6,"ID":98},{"Level":10,"ID":64},{"Level":13,"ID":97},{"Level":16,"ID":175},{"Level":17,"ID":52},{"Level":25,"ID":355},{"Level":27,"ID":13},{"Level":31,"ID":363},{"Level":39,"ID":488},{"Level":44,"ID":512},{"Level":49,"ID":1},{"Level":55,"ID":366},{"Level":60,"ID":211},{"Level":64,"ID":413}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Talonflame +Number|663 +ExperienceType|2 +BaseExperience|175 +Type1|Fire +Type2|Flying +CatchRate|255 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|3840 +EggPokemon|661 +IsGenderLess|0 +CanBreed|1 +Devolution|662 +IsMale|50 +Ability1|49 +Ability2|Nothing +HiddenAbility|177 +EggMoves|501,289,366 +Machines|174,92,237,241,173,63,182,203,218,76,216,104,207,214,126,129,197,156,213,168,211,13,14,18,36,69,99,102,117,143,164,339,269,53,332,263,290,315,355,261,416,432,445,363,365,369,468,488,496,510,512,590,19 +BaseHP|78 +BaseAttack|81 +BaseDefense|71 +BaseSpAttack|74 +BaseSpDefense|69 +BaseSpeed|126 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|3 +CanFly|1 +CanSwim|0 +Pokedex|In the fever of an exciting battle, it showers embers from the gaps between its feathers and takes to the air.\Ember Pokémon\24.5\1.2\0,148,0 +Scale|1 +Move|1,413 +Move|1,394 +Move|1,33 +Move|1,45 +Move|6,98 +Move|10,64 +Move|13,97 +Move|16,175 +Move|17,52 +Move|25,355 +Move|27,13 +Move|31,363 +Move|39,488 +Move|44,512 +Move|49,382 +Move|55,366 +Move|60,211 +Move|64,413 +TradeValue|30 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/664.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/664.dat new file mode 100644 index 000000000..f91bddc3c --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/664.dat @@ -0,0 +1,43 @@ +Name|Scatterbug +Number|664 +ExperienceType|1 +BaseExperience|40 +Type1|Bug +Type2| +CatchRate|255 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|664 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|19 +Ability2|14 +HiddenAbility|132 +EggMoves|77,476,78 +Machines| +BaseHP|38 +BaseAttack|35 +BaseDefense|40 +BaseSpAttack|27 +BaseSpDefense|25 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When under attack from bird Pokémon, it spews a poisonous black powder that causes paralysis on contact.\Scatterdust Pokémon\2.5\0.3\0,148,0 +Scale|0.4 +Move|1,33 +Move|1,81 +Move|6,78 +Move|15,450 +TradeValue|10 +EvolutionCondition|665,level,9,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/665.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/665.dat new file mode 100644 index 000000000..5ef38869f --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/665.dat @@ -0,0 +1,41 @@ +Name|Spewpa +Number|665 +ExperienceType|1 +BaseExperience|75 +Type1|Bug +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|664 +IsGenderLess|0 +CanBreed|1 +Devolution|664 +IsMale|50 +Ability1|61 +Ability2|14 +HiddenAbility|132 +EggMoves|77,476,78 +Machines| +BaseHP|45 +BaseAttack|22 +BaseDefense|60 +BaseSpAttack|27 +BaseSpDefense|30 +BaseSpeed|29 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The beaks of birds can't begin to scratch its stalwart body. To defend itself, it spews powder.\Scatterdust Pokémon\8.4\0.3\0,148,0 +Scale|0.5 +Move|1,106 +Move|9,182 +TradeValue|25 +EvolutionCondition|666,level,12,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/666.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/666.dat new file mode 100644 index 000000000..db43efd21 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/666.dat @@ -0,0 +1,42 @@ +Name|Vivillon +Number|666 +ExperienceType|1 +BaseExperience|185 +Type1|Bug +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Bug +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|664 +IsGenderLess|0 +CanBreed|1 +Devolution|665 +IsMale|50 +Ability1|19 +Ability2|14 +HiddenAbility|132 +EggMoves|77,476,78 +Machines|174,92,244,237,241,230,173,63,182,240,202,203,218,76,216,94,104,207,214,129,138,197,156,213,168,13,18,36,99,72,102,117,164,347,113,219,332,263,290,355,412,318,416,432,445,363,365,369,496,512,522,611,590,148 +BaseHP|80 +BaseAttack|52 +BaseDefense|50 +BaseSpAttack|90 +BaseSpDefense|50 +BaseSpeed|89 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|The patterns on this Pokémon’s wings depend on the climate and topography of its habitat. It scatters colorful scales.\Scale Pokémon\17.0\1.2\0,148,0 +Scale|1.0 +Move|1,33 +Move|1,81 +Move|6,78 +Move|15,450 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/667.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/667.dat new file mode 100644 index 000000000..b6a7d1def --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/667.dat @@ -0,0 +1,49 @@ +Name|Litleo +Number|667 +ExperienceType|2 +BaseExperience|74 +Type1|Fire +Type2|Normal +CatchRate|220 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|667 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|25 +Ability1|79 +Ability2|127 +HiddenAbility|153 +EggMoves|494,83,289,281 +Machines|29,174,46,92,249,237,241,173,63,182,203,218,76,231,216,91,189,104,207,214,126,129,111,197,156,213,168,210,34,36,68,99,102,117,164,269,53,263,290,315,261,371,416,445,399,363,488,496,497,510,514,523,528,590,70 +BaseHP|62 +BaseAttack|50 +BaseDefense|58 +BaseSpAttack|73 +BaseSpDefense|54 +BaseSpeed|72 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The stronger the opponent it faces, the more heat surges from its mane and the more power flows through its body.\Lion Cub Pokémon\13.5\0.6\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,43 +Move|5,52 +Move|11,29 +Move|20,36 +Move|33,497 +Move|36,53 +Move|43,304 +Move|46,510 +Move|50,315 +TradeValue|25 +EvolutionCondition|668,level,35,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/668.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/668.dat new file mode 100644 index 000000000..8c8850fb0 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/668.dat @@ -0,0 +1,54 @@ +Name|Pyroar +Number|668 +ExperienceType|2 +BaseExperience|177 +Type1|Fire +Type2|Normal +CatchRate|65 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|667 +IsGenderLess|0 +CanBreed|1 +Devolution|667 +IsMale|25 +Ability1|79 +Ability2|127 +HiddenAbility|153 +EggMoves|494,83,289,281 +Machines|29,174,46,92,249,237,241,173,63,182,203,218,76,231,216,91,189,104,207,214,126,129,111,197,156,213,168,210,25,34,36,38,68,99,102,117,130,164,269,53,263,290,315,261,371,416,445,399,363,488,496,497,510,514,523,528,590,70,431,560 +BaseHP|86 +BaseAttack|68 +BaseDefense|72 +BaseSpAttack|109 +BaseSpDefense|66 +BaseSpeed|106 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|With fiery breath of more than 10,000 degrees Fahrenheit, they viciously threaten any challenger. The females protect the pride’s cubs.\Royal Pokémon\81.5\1.5\0,148,0 +Scale|0.7 +Move|1,63 +Move|1,33 +Move|1,43 +Move|5,52 +Move|8,526 +Move|11,29 +Move|15,568 +Move|20,36 +Move|23,424 +Move|28,283 +Move|33,497 +Move|38,53 +Move|42,242 +Move|48,304 +Move|51,510 +Move|57,315 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/669.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/669.dat new file mode 100644 index 000000000..e5bb80d01 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/669.dat @@ -0,0 +1,53 @@ +Name|Flabébé +Number|669 +ExperienceType|1 +BaseExperience|61 +Type1|Fairy +Type2| +CatchRate|225 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|669 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|0 +Ability1|166 +Ability2|Nothing +HiddenAbility|180 +EggMoves|293,445,383 +Machines|174,92,237,241,230,173,63,182,240,202,203,218,76,216,94,104,207,214,197,156,213,99,72,102,117,164,347,219,263,290,412,416,445,363,447,496,497,267,605,590,148 +BaseHP|44 +BaseAttack|38 +BaseDefense|39 +BaseSpAttack|61 +BaseSpDefense|79 +BaseSpeed|42 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It draws out and controls the hidden power of flowers. The flower Flabébé holds is most likely part of its body.\Single Bloom Pokémon\0.1\0.1\0,148,0 +Scale|0.2 +Move|1,33 +Move|1,22 +Move|6,584 +Move|10,381 +Move|15,75 +Move|20,273 +Move|22,345 +Move|24,580 +Move|28,572 +Move|33,312 +Move|37,581 +Move|41,585 +Move|45,80 +Move|48,76 +TradeValue|25 +EvolutionCondition|670,level,19,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/67.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/67.dat index 70755540b..88c9c67ec 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/67.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/67.dat @@ -1 +1,55 @@ -{"Name":"Machoke","Number":67,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Fighting","Type2":"Blank","CatchRate":90,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":66,"Devolution":66,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[62,99],"HiddenAbility":80,"EggMoves":[418,370,68,227,7,484,8,282,96,379,501,27,265,9,321,113,157],"Machines":[223,29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,126,9,197,156,213,168,7,5,25,34,36,38,66,68,69,99,90,102,117,118,130,157,164,264,339,113,280,53,317,263,290,411,374,371,416,445,363,398,479,490,496,510,514,523,526,612,590,70,431],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":100,"Def":70,"SpAtk":50,"SpDef":60,"Speed":45},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It always goes at its full power but this very tough and durable Pokémon never gets tired.","Species":"Superpower Pokémon","Height":1.5,"Weight":70.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":25,"Moves":[{"Level":1,"ID":67},{"Level":2,"ID":43},{"Level":3,"ID":116},{"Level":4,"ID":2},{"Level":7,"ID":116},{"Level":10,"ID":2},{"Level":13,"ID":490},{"Level":19,"ID":193},{"Level":22,"ID":69},{"Level":25,"ID":279},{"Level":32,"ID":233},{"Level":36,"ID":66},{"Level":40,"ID":358},{"Level":44,"ID":238},{"Level":51,"ID":184},{"Level":55,"ID":223}],"EvolutionConditions":[{"Condition":"0","ConditionType":"Trade","Evolution":68,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Machoke +Number|67 +ExperienceType|2 +BaseExperience|142 +Type1|Fighting +Type2| +CatchRate|90 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|66 +IsGenderLess|0 +CanBreed|1 +Devolution|66 +IsMale|75 +Ability1|62 +Ability2|99 +HiddenAbility|80 +EggMoves|418,370,68,227,7,484,8,282,96,379,501,27,265,9,321,113,157 +Machines|223,29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,126,9,197,156,213,168,7,5,25,34,36,38,66,68,69,99,90,102,117,118,130,157,164,264,339,113,280,53,317,263,290,411,374,371,416,445,363,398,479,490,496,510,514,523,526,612,590,70,431 +BaseHP|80 +BaseAttack|100 +BaseDefense|70 +BaseSpAttack|50 +BaseSpDefense|60 +BaseSpeed|45 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It always goes at its full power but this very tough and durable Pokémon never gets tired.\Superpower Pokémon\70.5\1.5\0,148,0 +Scale|1.2 +Move|1,67 +Move|1,43 +Move|1,116 +Move|1,2 +Move|7,116 +Move|10,2 +Move|13,490 +Move|19,193 +Move|22,69 +Move|25,279 +Move|32,233 +Move|36,66 +Move|40,358 +Move|44,238 +Move|51,184 +Move|55,223 +TradeValue|25 +EvolutionCondition|68,trade,0,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/670.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/670.dat new file mode 100644 index 000000000..2c7ca6721 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/670.dat @@ -0,0 +1,53 @@ +Name|Floette +Number|670 +ExperienceType|1 +BaseExperience|130 +Type1|Fairy +Type2| +CatchRate|120 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|669 +IsGenderLess|0 +CanBreed|1 +Devolution|669 +IsMale|0 +Ability1|166 +Ability2|Nothing +HiddenAbility|180 +EggMoves|293,445,383 +Machines|174,92,237,241,230,173,63,182,240,202,203,218,76,216,94,104,207,214,197,156,213,171,99,72,102,117,118,164,347,219,263,290,412,416,445,363,447,496,497,267,605,590,148 +BaseHP|54 +BaseAttack|45 +BaseDefense|47 +BaseSpAttack|75 +BaseSpDefense|98 +BaseSpeed|52 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It flutters around fields of flowers and cares for flowers that are starting to wilt. It draws out the power of flowers to battle.\Single Bloom Pokémon\0.9\0.2\0,148,0 +Scale|0.2 +Move|1,33 +Move|1,22 +Move|6,584 +Move|10,381 +Move|15,75 +Move|20,273 +Move|25,345 +Move|27,580 +Move|33,572 +Move|38,312 +Move|43,581 +Move|46,585 +Move|51,80 +Move|58,76 +TradeValue|40 +EvolutionCondition|671,item,135,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/671.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/671.dat new file mode 100644 index 000000000..ba5b8b044 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/671.dat @@ -0,0 +1,50 @@ +Name|Florges +Number|671 +ExperienceType|1 +BaseExperience|248 +Type1|Fairy +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|669 +IsGenderLess|0 +CanBreed|1 +Devolution|670 +IsMale|0 +Ability1|166 +Ability2|Nothing +HiddenAbility|180 +EggMoves|293,445,383 +Machines|174,92,237,241,230,173,63,182,240,202,203,218,76,216,94,104,207,214,197,156,213,171,36,99,72,102,117,118,164,331,113,219,351,263,290,285,412,416,445,363,447,496,497,267,605,590,148 +BaseHP|78 +BaseAttack|65 +BaseDefense|68 +BaseSpAttack|112 +BaseSpDefense|154 +BaseSpeed|75 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It claims exquisite flower gardens as its territory, and it obtains power from basking in the energy emitted by flowering plants.\Garden Pokémon\10.0\1.1\0,148,0 +Scale|1.1 +Move|1,574 +Move|1,381 +Move|1,273 +Move|1,345 +Move|1,579 +Move|1,447 +Move|1,580 +Move|1,572 +Move|1,581 +Move|1,585 +Move|1,80 +Move|1,312 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/672.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/672.dat new file mode 100644 index 000000000..59ec1cca3 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/672.dat @@ -0,0 +1,55 @@ +Name|Skiddo +Number|672 +ExperienceType|1 +BaseExperience|70 +Type1|Grass +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|672 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|157 +Ability2|Nothing +HiddenAbility|179 +EggMoves|111,208,205 +Machines|174,46,92,249,237,241,173,63,182,202,203,218,76,216,91,189,104,207,214,129,197,156,213,25,32,34,36,99,72,102,117,130,157,164,347,339,331,269,280,263,290,412,371,416,445,363,447,496,514,523,528,267,590,57,431,560 +BaseHP|66 +BaseAttack|65 +BaseDefense|48 +BaseSpAttack|62 +BaseSpDefense|57 +BaseSpeed|52 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Thought to be one of the first Pokémon to live in harmony with humans, it has a placid disposition.\Mount Pokémon\31.0\0.9\0,148,0 +Scale|0.6 +Move|1,33 +Move|1,74 +Move|7,22 +Move|9,39 +Move|12,73 +Move|13,75 +Move|16,388 +Move|20,235 +Move|22,36 +Move|26,523 +Move|30,402 +Move|34,339 +Move|38,38 +Move|42,532 +Move|45,348 +Move|50,208 +TradeValue|30 +EvolutionCondition|673,level,32,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/673.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/673.dat new file mode 100644 index 000000000..b89ae2f7e --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/673.dat @@ -0,0 +1,57 @@ +Name|Gogoat +Number|673 +ExperienceType|1 +BaseExperience|186 +Type1|Grass +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|672 +IsGenderLess|0 +CanBreed|1 +Devolution|672 +IsMale|50 +Ability1|157 +Ability2|Nothing +HiddenAbility|179 +EggMoves|111,208,205 +Machines|174,46,92,249,237,241,173,63,182,202,203,218,76,89,216,91,189,104,207,214,129,197,156,213,25,32,34,36,38,68,99,72,102,117,130,157,164,339,331,269,280,332,263,290,412,371,416,445,363,447,496,514,523,528,267,590,57,70,431,560 +BaseHP|123 +BaseAttack|100 +BaseDefense|62 +BaseSpAttack|97 +BaseSpDefense|81 +BaseSpeed|68 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can tell how its trainer is feeling by subtle shifts in the grip on its horns. This empathetic sense lets them run as if one being.\Mount Pokémon\91.0\1.7\0,148,0 +Scale|0.6 +Move|1,332 +Move|1,33 +Move|1,74 +Move|7,22 +Move|9,39 +Move|12,73 +Move|13,75 +Move|16,388 +Move|20,235 +Move|22,36 +Move|26,523 +Move|30,402 +Move|34,339 +Move|40,38 +Move|47,532 +Move|55,348 +Move|58,208 +Move|60,89 +Move|65,332 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/674.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/674.dat index 29e2f1a24..b15b29b7c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/674.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/674.dat @@ -1 +1,54 @@ -{"Name":"Pancham","Number":674,"ExperienceType":"MediumFast","BaseExperience":70,"Type1":"Fighting","Type2":"Blank","CatchRate":128,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":6400,"EggPokemon":674,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[89,104],"HiddenAbility":113,"EggMoves":[492,382,511,501,480],"Machines":[14,15,46,57,70,91,92,104,156,157,164,182,188,206,207,213,216,218,237,240,241,249,259,263,280,317,332,339,365,371,374,421,444,447,490,496,497,514,523,590,612],"TutorMoves":[],"BaseStats":{"HP":67,"Atk":82,"Def":62,"SpAtk":46,"SpDef":48,"Speed":43},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It does its best to be taken seriously by its enemies, but its glare is not sufficiently intimidating. Chewing on a leaf is its trademark.","Species":"Playful Pokémon","Height":0.6,"Weight":8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":25,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":43},{"Level":7,"ID":292},{"Level":10,"ID":526},{"Level":12,"ID":2},{"Level":15,"ID":4},{"Level":20,"ID":163},{"Level":25,"ID":1},{"Level":27,"ID":233},{"Level":33,"ID":34},{"Level":39,"ID":242},{"Level":42,"ID":1},{"Level":45,"ID":1},{"Level":48,"ID":327}],"EvolutionConditions":[{"Condition":"32","ConditionType":"Level","Evolution":675,"Trigger":"LevelUp"},{"Condition":"dark","ConditionType":"InPartyType","Evolution":675,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Pancham +Number|674 +ExperienceType|1 +BaseExperience|70 +Type1|Fighting +Type2| +CatchRate|128 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Human-like +BaseEggSteps|6400 +EggPokemon|674 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|89 +Ability2|104 +HiddenAbility|113 +EggMoves|492,382,511,501,480 +Machines|14,15,46,57,70,91,92,104,156,157,164,182,188,206,207,213,216,218,237,240,241,249,259,263,280,317,332,339,365,371,374,421,444,447,490,496,497,514,523,590,612 +BaseHP|67 +BaseAttack|82 +BaseDefense|62 +BaseSpAttack|46 +BaseSpDefense|48 +BaseSpeed|43 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It does its best to be taken seriously by its enemies, but its glare is not sufficiently intimidating. Chewing on a leaf is its trademark.\Playful Pokémon\8.0\0.6\0,148,0 +Scale|1 +Move|1,33 +Move|1,43 +Move|7,292 +Move|10,526 +Move|12,2 +Move|15,4 +Move|20,163 +Move|25,509 +Move|27,233 +Move|33,34 +Move|39,242 +Move|42,494 +Move|45,575 +Move|48,327 +TradeValue|25 +EvolutionCondition|675,Level,32,Level +EvolutionCondition|675,inpartytype,dark,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/675.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/675.dat index a0f75f3c2..7cbdc837f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/675.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/675.dat @@ -1 +1,57 @@ -{"Name":"Pangoro","Number":675,"ExperienceType":"MediumFast","BaseExperience":173,"Type1":"Fighting","Type2":"Dark","CatchRate":128,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":6400,"EggPokemon":674,"Devolution":674,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[89,104],"HiddenAbility":113,"EggMoves":[492,382,511,501,480],"Machines":[14,15,46,57,63,70,89,91,92,104,156,157,164,168,182,188,206,207,213,216,218,237,240,241,249,259,263,269,280,317,332,337,339,365,371,373,374,398,404,411,416,421,444,447,468,490,496,497,511,514,523,526,555,612,590],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":124,"Def":78,"SpAtk":69,"SpDef":71,"Speed":58},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Although it posses a violent temperament, it won't put up with bullying. It uses the leaf in its mouth to sense the movements of its enemies.","Species":"Daunting Pokémon","Height":2.1,"Weight":136,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":45,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":359},{"Level":3,"ID":33},{"Level":4,"ID":43},{"Level":7,"ID":292},{"Level":10,"ID":526},{"Level":12,"ID":2},{"Level":15,"ID":4},{"Level":20,"ID":163},{"Level":25,"ID":1},{"Level":27,"ID":233},{"Level":35,"ID":34},{"Level":42,"ID":242},{"Level":45,"ID":1},{"Level":48,"ID":1},{"Level":52,"ID":327},{"Level":57,"ID":359},{"Level":65,"ID":269},{"Level":70,"ID":490}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Pangoro +Number|675 +ExperienceType|1 +BaseExperience|173 +Type1|Fighting +Type2|Dark +CatchRate|128 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Human-like +BaseEggSteps|6400 +EggPokemon|674 +IsGenderLess|0 +CanBreed|1 +Devolution|674 +IsMale|50 +Ability1|89 +Ability2|104 +HiddenAbility|113 +EggMoves|492,382,511,501,480 +Machines|14,15,46,57,63,70,89,91,92,104,156,157,164,168,182,188,206,207,213,216,218,237,240,241,249,259,263,269,280,317,332,337,339,365,371,373,374,398,404,411,416,421,444,447,468,490,496,497,511,514,523,526,555,612,590 +BaseHP|95 +BaseAttack|124 +BaseDefense|78 +BaseSpAttack|69 +BaseSpDefense|71 +BaseSpeed|58 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Although it posses a violent temperament, it won't put up with bullying. It uses the leaf in its mouth to sense the movements of its enemies.\Daunting Pokémon\136.0\2.1\0,148,0 +Scale|1 +Move|1,494 +Move|1,359 +Move|1,33 +Move|1,43 +Move|7,292 +Move|10,526 +Move|12,2 +Move|15,4 +Move|20,163 +Move|25,509 +Move|27,233 +Move|35,34 +Move|42,242 +Move|45,494 +Move|48,575 +Move|52,327 +Move|57,359 +Move|65,269 +Move|70,490 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/676.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/676.dat new file mode 100644 index 000000000..63062a927 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/676.dat @@ -0,0 +1,51 @@ +Name|Furfrou +Number|676 +ExperienceType|1 +BaseExperience|165 +Type1|Normal +Type2| +CatchRate|160 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|676 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|169 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|445,102,287,272,526 +Machines|29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,231,216,91,189,104,207,214,129,111,197,156,213,210,171,34,36,38,61,55,58,6,68,99,102,117,130,86,149,161,164,352,263,290,285,289,451,278,416,446,445,399,363,447,365,369,496,497,514,526,528,555,590,57,148,431,560 +BaseHP|75 +BaseAttack|80 +BaseDefense|60 +BaseSpAttack|65 +BaseSpDefense|90 +BaseSpeed|102 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|Historically, in the Kalos region, these Pokémon were the designated guardians of the king.\Poodle Pokémon\28.0\1.2\0,148,0 +Scale|0.8 +Move|1,33 +Move|1,45 +Move|5,28 +Move|9,608 +Move|12,29 +Move|15,39 +Move|22,44 +Move|27,316 +Move|33,514 +Move|35,36 +Move|38,204 +Move|42,389 +Move|48,538 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/677.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/677.dat new file mode 100644 index 000000000..2f407615c --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/677.dat @@ -0,0 +1,48 @@ +Name|Espurr +Number|677 +ExperienceType|1 +BaseExperience|71 +Type1|Psychic +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5100 +EggPokemon|677 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|51 +Ability2|151 +HiddenAbility|20 +EggMoves|274,112,271,281 +Machines|174,92,237,241,173,63,182,240,203,218,216,94,189,104,207,214,129,111,138,197,156,213,171,36,6,66,68,69,99,85,100,102,115,117,118,130,86,149,161,164,352,347,113,219,259,263,290,285,289,412,451,371,278,416,445,399,363,433,473,477,496,497,502,590,15,148 +BaseHP|62 +BaseAttack|48 +BaseDefense|54 +BaseSpAttack|63 +BaseSpDefense|60 +BaseSpeed|68 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It has enough psychic energy to blast everything within 300 feet of itself, but it has no control over its power.\Restraint Pokémon\3.5\0.3\0,148,0 +Scale|0.4 +Move|1,10 +Move|1,43 +Move|5,343 +Move|9,93 +Move|13,113 +Move|17,60 +Move|19,252 +Move|22,574 +Move|25,473 +TradeValue|30 +EvolutionCondition|678,level,25,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/678.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/678.dat new file mode 100644 index 000000000..e59ac5494 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/678.dat @@ -0,0 +1,59 @@ +Name|Meowstic +Number|678 +ExperienceType|1 +BaseExperience|163 +Type1|Psychic +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|677 +IsGenderLess|0 +CanBreed|1 +Devolution|677 +IsMale|100 +Ability1|51 +Ability2|151 +HiddenAbility|158 +EggMoves|274,112,271,281 +Machines|174,92,192,244,237,241,173,63,182,240,203,218,231,216,91,94,247,189,104,207,214,129,111,138,197,156,213,171,34,36,6,66,68,69,99,85,100,102,115,117,118,130,86,149,161,164,352,347,113,219,259,263,290,285,289,412,451,371,278,416,445,399,363,433,473,477,496,497,502,612,590,15,148 +BaseHP|74 +BaseAttack|48 +BaseDefense|76 +BaseSpAttack|83 +BaseSpDefense|81 +BaseSpeed|104 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|The eyeball patterns on the interior of its ears emit psychic energy. It keeps the patterns tightly covered because that power is too immense.\Constraint Pokémon\8.5\0.6\0,148,0 +Scale|0.75 +Move|1,501 +Move|1,212 +Move|1,270 +Move|1,10 +Move|1,43 +Move|5,343 +Move|9,93 +Move|13,113 +Move|17,60 +Move|19,252 +Move|22,574 +Move|25,473 +Move|28,204 +Move|31,357 +Move|35,115 +Move|40,94 +Move|43,272 +Move|45,286 +Move|48,389 +Move|50,581 +Move|53,501 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/678_f.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/678_f.dat new file mode 100644 index 000000000..cd41b23eb --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/678_f.dat @@ -0,0 +1,59 @@ +Name|Meowstic +Number|678 +ExperienceType|1 +BaseExperience|163 +Type1|Psychic +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|677 +IsGenderLess|0 +CanBreed|1 +Devolution|677 +IsMale|0 +Ability1|51 +Ability2|151 +HiddenAbility|172 +EggMoves|274,112,271,281 +Machines|174,92,192,244,237,241,173,63,182,240,203,218,231,216,91,94,247,189,104,207,214,129,111,138,197,156,213,171,34,36,6,66,68,69,99,85,100,102,115,117,118,130,86,149,161,164,352,347,113,219,259,263,290,285,289,412,451,371,278,416,445,399,363,433,473,477,496,497,502,612,590,15,148 +BaseHP|74 +BaseAttack|48 +BaseDefense|76 +BaseSpAttack|83 +BaseSpDefense|81 +BaseSpeed|104 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|The eyeball patterns on the interior of its ears emit psychic energy. It keeps the patterns tightly covered because that power is too immense.\Constraint Pokémon\8.5\0.6\0,148,0 +Scale|0.75 +Move|1,500 +Move|1,382 +Move|1,345 +Move|1,10 +Move|1,43 +Move|5,343 +Move|9,93 +Move|13,113 +Move|17,60 +Move|19,252 +Move|22,574 +Move|25,473 +Move|28,451 +Move|31,247 +Move|35,326 +Move|40,94 +Move|43,272 +Move|45,324 +Move|48,389 +Move|50,248 +Move|53,500 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/679.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/679.dat index 9203ceeba..8b74df811 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/679.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/679.dat @@ -1 +1,54 @@ -{"Name":"Honedge","Number":679,"ExperienceType":"MediumFast","BaseExperience":73,"Type1":"Steel","Type2":"Ghost","CatchRate":222,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5120,"EggPokemon":679,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[99],"HiddenAbility":-1,"EggMoves":[194,319,425,469],"Machines":[174,92,249,237,173,63,182,240,203,218,216,104,207,214,197,156,213,171,14,36,68,99,102,115,117,157,164,280,263,290,289,206,421,416,360,445,363,430,477,496,514,590,15],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":80,"Def":100,"SpAtk":35,"SpDef":37,"Speed":28},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Apparently this Pokémon is born when a departed spirit inhabits a sword. It attaches itself to people and drinks their life force.","Species":"Sword Pokémon","Height":0.8,"Weight":2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":35,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":14},{"Level":5,"ID":210},{"Level":8,"ID":319},{"Level":13,"ID":228},{"Level":18,"ID":1},{"Level":20,"ID":425},{"Level":22,"ID":332},{"Level":26,"ID":1},{"Level":29,"ID":163},{"Level":32,"ID":334},{"Level":35,"ID":400},{"Level":39,"ID":379},{"Level":42,"ID":442},{"Level":47,"ID":1}],"EvolutionConditions":[{"Condition":"35","ConditionType":"Level","Evolution":680,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Honedge +Number|679 +ExperienceType|1 +BaseExperience|73 +Type1|Steel +Type2|Ghost +CatchRate|222 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5120 +EggPokemon|679 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|99 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|194,319,425,469 +Machines|174,92,249,237,173,63,182,240,203,218,216,104,207,214,197,156,213,171,14,36,68,99,102,115,117,157,164,280,263,290,289,206,421,416,360,445,363,430,477,496,514,590,15 +BaseHP|45 +BaseAttack|80 +BaseDefense|100 +BaseSpAttack|35 +BaseSpDefense|37 +BaseSpeed|28 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Apparently this Pokémon is born when a departed spirit inhabits a sword. It attaches itself to people and drinks their life force.\Sword Pokémon\2.0\0.8\0,148,0 +Scale|1 +Move|1,33 +Move|1,14 +Move|5,210 +Move|8,319 +Move|13,228 +Move|18,475 +Move|20,425 +Move|22,332 +Move|26,514 +Move|29,163 +Move|32,334 +Move|35,400 +Move|39,379 +Move|42,442 +Move|47,533 +TradeValue|35 +EvolutionCondition|680,Level,35,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/68.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/68.dat index 6fd184d40..98d6d25b0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/68.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/68.dat @@ -1 +1,55 @@ -{"Name":"Machamp","Number":68,"ExperienceType":"MediumSlow","BaseExperience":227,"Type1":"Fighting","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":66,"Devolution":67,"CanBreed":true,"IsGenderless":false,"IsMale":75,"Abilities":[62,99],"HiddenAbility":80,"EggMoves":[418,370,68,227,7,484,8,282,96,379,501,27,265,9,321,113,157],"Machines":[53,63,70,89,91,92,104,113,126,156,157,164,168,182,207,213,216,218,237,240,241,249,263,280,317,339,371,374,398,411,416,444,479,490,496,510,514,523,526,29,9,7,8],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":130,"Def":80,"SpAtk":65,"SpDef":85,"Speed":55},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It quickly swings its four arms to rock its opponents with ceaseless punches and chops from all angles.","Species":"Superpower Pokémon","Height":1.6,"Weight":130,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":45,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":67},{"Level":3,"ID":43},{"Level":4,"ID":116},{"Level":5,"ID":2},{"Level":7,"ID":116},{"Level":10,"ID":2},{"Level":13,"ID":490},{"Level":19,"ID":193},{"Level":22,"ID":69},{"Level":25,"ID":279},{"Level":32,"ID":233},{"Level":36,"ID":66},{"Level":40,"ID":358},{"Level":44,"ID":238},{"Level":51,"ID":184},{"Level":55,"ID":223}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Machamp +Number|68 +ExperienceType|2 +BaseExperience|227 +Type1|Fighting +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|66 +IsGenderLess|0 +CanBreed|1 +Devolution|67 +IsMale|75 +Ability1|62 +Ability2|99 +HiddenAbility|80 +EggMoves|418,370,68,227,7,484,8,282,96,379,501,27,265,9,321,113,157 +Machines|53,63,70,89,91,92,104,113,126,156,157,164,168,182,207,213,216,218,237,240,241,249,263,280,317,339,371,374,398,411,416,444,479,490,496,510,514,523,526,29,9,7,8 +BaseHP|90 +BaseAttack|130 +BaseDefense|80 +BaseSpAttack|65 +BaseSpDefense|85 +BaseSpeed|55 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It quickly swings its four arms to rock its opponents with ceaseless punches and chops from all angles.\Superpower Pokémon\130\1.6\0,148,0 +Scale|1.24 +Move|1,469 +Move|1,67 +Move|1,43 +Move|1,116 +Move|1,2 +Move|7,116 +Move|10,2 +Move|13,490 +Move|19,193 +Move|22,69 +Move|25,279 +Move|32,233 +Move|36,66 +Move|40,358 +Move|44,238 +Move|51,184 +Move|55,223 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/680.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/680.dat index 167ec82ff..30f4819eb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/680.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/680.dat @@ -1 +1,54 @@ -{"Name":"Doublade","Number":680,"ExperienceType":"MediumFast","BaseExperience":126,"Type1":"Steel","Type2":"Ghost","CatchRate":222,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5120,"EggPokemon":679,"Devolution":679,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[99],"HiddenAbility":-1,"EggMoves":[194,319,425,469],"Machines":[174,92,249,237,173,63,182,240,203,218,216,104,207,214,197,156,213,171,14,36,68,99,102,115,117,157,164,280,263,290,289,206,421,416,360,445,363,430,477,496,514,590,15],"TutorMoves":[],"BaseStats":{"HP":59,"Atk":110,"Def":150,"SpAtk":45,"SpDef":49,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When Honedge evolves, it divides into two swords, which cooperate via telepathy to coordinate attacks and slash their enemies to ribbons.","Species":"Sword Pokémon","Height":0.8,"Weight":4.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":14},{"Level":5,"ID":210},{"Level":8,"ID":319},{"Level":13,"ID":228},{"Level":18,"ID":1},{"Level":20,"ID":425},{"Level":22,"ID":332},{"Level":26,"ID":1},{"Level":29,"ID":163},{"Level":32,"ID":334},{"Level":36,"ID":400},{"Level":41,"ID":379},{"Level":45,"ID":442},{"Level":51,"ID":1}],"EvolutionConditions":[{"Condition":"136","ConditionType":"Item","Evolution":681,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Doublade +Number|680 +ExperienceType|1 +BaseExperience|126 +Type1|Steel +Type2|Ghost +CatchRate|222 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5120 +EggPokemon|679 +IsGenderLess|0 +CanBreed|1 +Devolution|679 +IsMale|50 +Ability1|99 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|194,319,425,469 +Machines|174,92,249,237,173,63,182,240,203,218,216,104,207,214,197,156,213,171,14,36,68,99,102,115,117,157,164,280,263,290,289,206,421,416,360,445,363,430,477,496,514,590,15 +BaseHP|59 +BaseAttack|110 +BaseDefense|150 +BaseSpAttack|45 +BaseSpDefense|49 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When Honedge evolves, it divides into two swords, which cooperate via telepathy to coordinate attacks and slash their enemies to ribbons.\Sword Pokémon\4.5\0.8\0,148,0 +Scale|1 +Move|1,33 +Move|1,14 +Move|5,210 +Move|8,319 +Move|13,228 +Move|18,475 +Move|20,425 +Move|22,332 +Move|26,514 +Move|29,163 +Move|32,334 +Move|36,400 +Move|41,379 +Move|45,442 +Move|51,533 +TradeValue|50 +EvolutionCondition|681,Item,136,Item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/681.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/681.dat index c236d1b2a..4e602b42d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/681.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/681.dat @@ -1 +1,52 @@ -{"Name":"Aegislash","Number":681,"ExperienceType":"MediumFast","BaseExperience":194,"Type1":"Steel","Type2":"Ghost","CatchRate":222,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5120,"EggPokemon":679,"Devolution":680,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[176],"HiddenAbility":-1,"EggMoves":[194,319,425,469],"Machines":[174,92,249,237,173,63,182,240,203,218,216,247,104,207,214,197,156,213,171,14,34,36,68,99,102,115,117,157,161,164,280,351,263,290,289,206,421,416,360,445,363,430,477,496,514,590,15],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":50,"Def":150,"SpAtk":50,"SpDef":150,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":3,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Generations of kings were attended by these Pokémon, which used their spectral power to manipulate and control people and Pokémon.","Species":"Royal Sword Pokémon","Height":1.7,"Weight":53,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":65,"Moves":[{"Level":1,"ID":210},{"Level":2,"ID":228},{"Level":3,"ID":1},{"Level":4,"ID":425},{"Level":5,"ID":163},{"Level":6,"ID":334},{"Level":7,"ID":400},{"Level":8,"ID":379},{"Level":9,"ID":442},{"Level":10,"ID":457},{"Level":11,"ID":14},{"Level":12,"ID":332},{"Level":13,"ID":588},{"Level":14,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Aegislash +Number|681 +ExperienceType|1 +BaseExperience|194 +Type1|Steel +Type2|Ghost +CatchRate|222 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5120 +EggPokemon|679 +IsGenderLess|0 +CanBreed|1 +Devolution|680 +IsMale|50 +Ability1|176 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|194,319,425,469 +Machines|174,92,249,237,173,63,182,240,203,218,216,247,104,207,214,197,156,213,171,14,34,36,68,99,102,115,117,157,161,164,280,351,263,290,289,206,421,416,360,445,363,430,477,496,514,590,15 +BaseHP|60 +BaseAttack|50 +BaseDefense|150 +BaseSpAttack|50 +BaseSpDefense|150 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Generations of kings were attended by these Pokémon, which used their spectral power to manipulate and control people and Pokémon.\Royal Sword Pokémon\53.0\1.7\0,148,0 +Scale|1 +Move|1,210 +Move|1,228 +Move|1,475 +Move|1,425 +Move|1,163 +Move|1,334 +Move|1,400 +Move|1,379 +Move|1,442 +Move|1,457 +Move|1,14 +Move|1,332 +Move|1,588 +Move|1,533 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/681_blade.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/681_blade.dat index 0dad892a7..d6468713b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/681_blade.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/681_blade.dat @@ -1 +1,52 @@ -{"Name":"Aegislash","Number":681,"ExperienceType":"MediumFast","BaseExperience":194,"Type1":"Steel","Type2":"Ghost","CatchRate":222,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5120,"EggPokemon":679,"Devolution":680,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[176],"HiddenAbility":-1,"EggMoves":[194,319,425,469],"Machines":[174,92,249,237,173,63,182,240,203,218,216,247,104,207,214,197,156,213,171,14,34,36,68,99,102,115,117,157,161,164,280,351,263,290,289,206,421,416,360,445,363,430,477,496,514,590,15],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":150,"Def":50,"SpAtk":150,"SpDef":50,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":3,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Generations of kings were attended by these Pokemon, which used their spectral power to manipulate and control people and Pokemon.","Species":"Royal Sword Pokémon","Height":1.7,"Weight":53,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":65,"Moves":[{"Level":1,"ID":210},{"Level":2,"ID":228},{"Level":3,"ID":1},{"Level":4,"ID":425},{"Level":5,"ID":163},{"Level":6,"ID":334},{"Level":7,"ID":400},{"Level":8,"ID":379},{"Level":9,"ID":442},{"Level":10,"ID":457},{"Level":11,"ID":14},{"Level":12,"ID":332},{"Level":13,"ID":588},{"Level":14,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Aegislash +Number|681 +ExperienceType|1 +BaseExperience|194 +Type1|Steel +Type2|Ghost +CatchRate|222 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5120 +EggPokemon|679 +IsGenderLess|0 +CanBreed|1 +Devolution|680 +IsMale|50 +Ability1|176 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|194,319,425,469 +Machines|174,92,249,237,173,63,182,240,203,218,216,247,104,207,214,197,156,213,171,14,34,36,68,99,102,115,117,157,161,164,280,351,263,290,289,206,421,416,360,445,363,430,477,496,514,590,15 +BaseHP|60 +BaseAttack|150 +BaseDefense|50 +BaseSpAttack|150 +BaseSpDefense|50 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Generations of kings were attended by these Pokemon, which used their spectral power to manipulate and control people and Pokemon.\Royal Sword Pokémon\53.0\1.7\0,148,0 +Scale|1 +Move|1,210 +Move|1,228 +Move|1,475 +Move|1,425 +Move|1,163 +Move|1,334 +Move|1,400 +Move|1,379 +Move|1,442 +Move|1,457 +Move|1,14 +Move|1,332 +Move|1,588 +Move|1,533 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/682.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/682.dat new file mode 100644 index 000000000..12a9906f0 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/682.dat @@ -0,0 +1,55 @@ +Name|Spritzee +Number|682 +ExperienceType|1 +BaseExperience|68 +Type1|Fairy +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|682 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|131 +Ability2|Nothing +HiddenAbility|165 +EggMoves|445,50,287,273 +Machines|174,205,92,244,237,241,230,173,63,182,240,203,218,216,94,104,207,214,111,138,197,156,213,99,85,102,115,117,135,164,113,259,263,290,285,412,451,416,360,445,363,430,433,496,497,605,590,148 +BaseHP|78 +BaseAttack|52 +BaseDefense|60 +BaseSpAttack|63 +BaseSpDefense|65 +BaseSpeed|23 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It emits a scent that enraptures those who smell it. This fragrance changes depending on what it has eaten.\Perfume Pokemon\0.5\0.3\0,148,0 +Scale|0.3 +Move|1,230 +Move|1,584 +Move|6,186 +Move|8,316 +Move|13,497 +Move|17,347 +Move|21,577 +Move|25,312 +Move|29,213 +Move|31,585 +Move|35,204 +Move|38,175 +Move|42,581 +Move|44,285 +Move|48,94 +Move|50,574 +TradeValue|25 +EvolutionCondition|683,item,503,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/683.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/683.dat new file mode 100644 index 000000000..3d383d003 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/683.dat @@ -0,0 +1,58 @@ +Name|Aromatisse +Number|683 +ExperienceType|1 +BaseExperience|162 +Type1|Fairy +Type2| +CatchRate|140 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|682 +IsGenderLess|0 +CanBreed|1 +Devolution|682 +IsMale|50 +Ability1|131 +Ability2|Nothing +HiddenAbility|165 +EggMoves|445,50,287,273 +Machines|174,205,92,244,237,241,230,173,63,182,240,203,218,87,216,94,104,207,214,111,138,197,156,213,171,36,99,85,102,115,117,118,135,164,113,259,263,290,285,412,451,416,360,445,363,430,433,473,496,497,605,590,148 +BaseHP|101 +BaseAttack|72 +BaseDefense|72 +BaseSpAttack|99 +BaseSpDefense|89 +BaseSpeed|29 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It devises various scents, pleasant and unpleasant, and emits scents that its enemies dislike in order to gain an edge in battle.\Fragrance Pokémon\15.5\0.8\0,148,0 +Scale|0.9 +Move|1,597 +Move|1,505 +Move|1,230 +Move|1,584 +Move|6,186 +Move|8,316 +Move|13,497 +Move|17,347 +Move|21,577 +Move|25,312 +Move|29,213 +Move|31,585 +Move|35,204 +Move|38,175 +Move|42,581 +Move|44,285 +Move|48,94 +Move|50,574 +Move|57,115 +Move|64,244 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/684.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/684.dat new file mode 100644 index 000000000..3d53b549a --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/684.dat @@ -0,0 +1,55 @@ +Name|Swirlix +Number|684 +ExperienceType|1 +BaseExperience|68 +Type1|Fairy +Type2| +CatchRate|200 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|684 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|175 +Ability2|Nothing +HiddenAbility|84 +EggMoves|495,187,383,281 +Machines|174,205,92,244,237,241,230,173,63,182,240,203,218,216,94,104,207,214,111,138,197,156,213,168,99,85,102,117,135,164,347,113,219,53,263,290,412,416,445,363,496,605,590,57,148 +BaseHP|62 +BaseAttack|48 +BaseDefense|66 +BaseSpAttack|59 +BaseSpDefense|57 +BaseSpeed|49 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|To entangle its opponents in battle, it extrudes white threads as sweet and as sticky as cotton candy.\Cotton Candy Pokémon\3.5\0.4\0,148,0 +Scale|0.3 +Move|1,230 +Move|1,33 +Move|5,584 +Move|8,589 +Move|10,313 +Move|13,496 +Move|17,178 +Move|21,283 +Move|26,312 +Move|31,577 +Move|36,412 +Move|41,538 +Move|45,273 +Move|49,583 +Move|58,113 +Move|67,219 +TradeValue|25 +EvolutionCondition|685,item,504,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/685.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/685.dat new file mode 100644 index 000000000..59987fffe --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/685.dat @@ -0,0 +1,54 @@ +Name|Slurpuff +Number|685 +ExperienceType|1 +BaseExperience|68 +Type1|Fairy +Type2| +CatchRate|140 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|684 +IsGenderLess|0 +CanBreed|1 +Devolution|684 +IsMale|50 +Ability1|175 +Ability2|Nothing +HiddenAbility|84 +EggMoves|495,187,383,281 +Machines|174,205,92,244,237,241,230,173,63,182,240,203,218,216,94,104,207,214,111,138,197,156,213,168,171,36,99,85,102,117,118,135,164,347,113,219,53,263,290,412,416,445,363,496,605,590,57,148 +BaseHP|82 +BaseAttack|80 +BaseDefense|86 +BaseSpAttack|85 +BaseSpDefense|75 +BaseSpeed|72 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can distinguish the faintest of scents. It puts its sensitive sense of smell to use by helping pastry chefs in their work.\Meringue Pokémon\5.0\0.8\0,148,0 +Scale|0.9 +Move|1,230 +Move|1,33 +Move|5,584 +Move|8,589 +Move|10,313 +Move|13,496 +Move|17,178 +Move|21,283 +Move|26,312 +Move|31,577 +Move|36,412 +Move|41,538 +Move|45,273 +Move|49,583 +Move|58,113 +Move|67,219 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/686.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/686.dat new file mode 100644 index 000000000..ef49489d6 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/686.dat @@ -0,0 +1,57 @@ +Name|Inkay +Number|686 +ExperienceType|1 +BaseExperience|58 +Type1|Dark +Type2|Psychic +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water2 +BaseEggSteps|5355 +EggPokemon|686 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|21 +Ability2|126 +HiddenAbility|151 +EggMoves|293,194,260,471,493 +Machines|174,92,244,237,241,173,63,182,240,203,218,216,94,104,207,214,197,156,213,168,171,36,68,99,85,100,102,115,117,118,149,157,161,164,347,269,113,351,53,332,259,263,290,285,289,374,373,371,278,416,445,399,363,433,477,496,502,514,526,590,148,250,291 +BaseHP|53 +BaseAttack|54 +BaseDefense|53 +BaseSpAttack|37 +BaseSpDefense|46 +BaseSpeed|45 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Opponents who stare at the flashing of the light-emitting spots on its body become dazed and lose their will to fight.\Revolving Pokémon\3.5\0.4\0,148,0 +Scale|0.5 +Move|1,33 +Move|1,64 +Move|1,132 +Move|4,115 +Move|7,492 +Move|12,207 +Move|13,149 +Move|15,576 +Move|18,95 +Move|21,60 +Move|23,415 +Move|27,371 +Move|31,113 +Move|35,365 +Move|39,427 +Move|43,163 +Move|46,400 +Move|48,276 +TradeValue|30 +EvolutionCondition|687,level,30,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/687.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/687.dat new file mode 100644 index 000000000..4bc1be2d8 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/687.dat @@ -0,0 +1,58 @@ +Name|Malamar +Number|687 +ExperienceType|1 +BaseExperience|169 +Type1|Dark +Type2|Psychic +CatchRate|80 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water2 +BaseEggSteps|5355 +EggPokemon|686 +IsGenderLess|0 +CanBreed|1 +Devolution|686 +IsMale|50 +Ability1|21 +Ability2|126 +HiddenAbility|151 +EggMoves|293,194,260,471,493 +Machines|174,92,244,237,241,173,63,182,240,203,218,216,94,104,207,214,197,156,213,168,171,34,36,38,99,85,100,102,115,117,118,130,149,157,161,164,347,269,113,351,53,332,259,263,290,285,289,374,373,371,278,416,445,399,363,433,473,477,496,502,514,526,590,148,250,431,291 +BaseHP|86 +BaseAttack|92 +BaseDefense|88 +BaseSpAttack|68 +BaseSpDefense|75 +BaseSpeed|73 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It wields the most compelling hypnotic powers of any Pokémon, and it forces others to do whatever it wants.\Overturning Pokémon\47.0\1.5\0,148,0 +Scale|1.2 +Move|1,276 +Move|1,179 +Move|1,33 +Move|1,64 +Move|1,132 +Move|4,115 +Move|7,492 +Move|12,207 +Move|13,149 +Move|15,576 +Move|18,95 +Move|21,60 +Move|23,415 +Move|27,371 +Move|31,113 +Move|35,365 +Move|39,427 +Move|43,163 +Move|46,400 +Move|48,276 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/688.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/688.dat new file mode 100644 index 000000000..1f2fd45ad --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/688.dat @@ -0,0 +1,55 @@ +Name|Binacle +Number|688 +ExperienceType|1 +BaseExperience|61 +Type1|Rock +Type2|Water +CatchRate|120 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|688 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|97 +Ability2|181 +HiddenAbility|124 +EggMoves|270,415,321,346 +Machines|174,92,249,237,173,59,63,182,240,203,218,89,216,91,189,104,8,207,214,188,201,197,156,213,168,210,14,36,61,55,58,99,102,117,120,157,164,352,269,219,280,317,332,259,263,290,206,362,374,373,421,371,416,397,444,419,446,445,404,363,398,447,468,479,482,496,503,523,526,611,267,612,590,15,57,70,250,291 +BaseHP|42 +BaseAttack|52 +BaseDefense|67 +BaseSpAttack|39 +BaseSpDefense|56 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They stretch and then contract, yanking their rocks along with them in bold hops. They eat seaweed that washes up on the shoreline.\Two-Handed Pokémon\31.0\0.5\0,148,0 +Scale|0.6 +Move|1,504 +Move|1,10 +Move|1,28 +Move|4,55 +Move|7,110 +Move|10,154 +Move|13,163 +Move|18,189 +Move|20,128 +Move|24,397 +Move|28,246 +Move|32,468 +Move|37,210 +Move|41,400 +Move|45,534 +Move|49,238 +TradeValue|25 +EvolutionCondition|689,level,39,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/689.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/689.dat new file mode 100644 index 000000000..921a60519 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/689.dat @@ -0,0 +1,59 @@ +Name|Barbaracle +Number|689 +ExperienceType|1 +BaseExperience|175 +Type1|Rock +Type2|Water +CatchRate|120 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|688 +IsGenderLess|0 +CanBreed|1 +Devolution|688 +IsMale|50 +Ability1|97 +Ability2|181 +HiddenAbility|124 +EggMoves|270,415,321,346 +Machines|223,174,92,249,237,173,59,63,182,240,203,218,89,216,91,189,104,8,207,214,188,201,197,156,213,168,210,5,14,25,34,36,38,61,55,58,66,68,69,99,90,102,117,120,130,157,161,164,264,337,352,339,269,219,280,317,332,259,263,290,411,206,362,374,409,373,421,371,416,397,444,419,446,445,404,363,398,447,468,479,482,496,503,523,526,611,267,612,590,15,57,70,250,291 +BaseHP|72 +BaseAttack|105 +BaseDefense|115 +BaseSpAttack|54 +BaseSpDefense|86 +BaseSpeed|68 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Barbaracle's legs and hands have minds of their own, and they will move independently. But they usually follow the head's orders.\Collective Pokémon\96.0\1.3\0,148,0 +Scale|1.0 +Move|1,444 +Move|1,130 +Move|1,504 +Move|1,10 +Move|1,28 +Move|4,55 +Move|7,110 +Move|10,154 +Move|13,163 +Move|18,189 +Move|20,128 +Move|24,397 +Move|28,246 +Move|32,468 +Move|37,210 +Move|44,400 +Move|48,534 +Move|55,238 +Move|60,444 +Move|65,130 +TradeValue|50 + diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/69.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/69.dat index 5dd6edc38..4f2ef69bf 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/69.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/69.dat @@ -1 +1,52 @@ -{"Name":"Bellsprout","Number":69,"ExperienceType":"MediumSlow","BaseExperience":60,"Type1":"Grass","Type2":"Poison","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":69,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34],"HiddenAbility":82,"EggMoves":[223,29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,126,9,197,156,213,168,7,5,25,34,36,38,66,68,69,99,90,102,117,118,130,157,164,264,339,113,280,53,317,263,290,411,374,371,416,445,363,398,479,490,496,510,514,523,526,612,590,70,431],"Machines":[14,15,76,92,104,115,148,156,164,168,182,188,207,213,216,218,237,241,263,412,447,474,496],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":75,"Def":35,"SpAtk":70,"SpDef":30,"Speed":40},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Even though its body is extremely skinny, it is blindingly fast when catching its prey.","Species":"Flower Pokémon","Height":0.7,"Weight":4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.88,"Y":0.88,"Z":0.88},"TradeValue":10,"Moves":[{"Level":1,"ID":22},{"Level":7,"ID":74},{"Level":11,"ID":35},{"Level":13,"ID":79},{"Level":15,"ID":77},{"Level":17,"ID":78},{"Level":23,"ID":51},{"Level":27,"ID":282},{"Level":29,"ID":230},{"Level":35,"ID":1},{"Level":39,"ID":75},{"Level":41,"ID":21},{"Level":47,"ID":378}],"EvolutionConditions":[{"Condition":"21","ConditionType":"Level","Evolution":70,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Bellsprout +Number|69 +ExperienceType|2 +BaseExperience|60 +Type1|Grass +Type2|Poison +CatchRate|255 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|69 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|34 +Ability2|Nothing +HiddenAbility|82 +EggMoves|223,29,174,92,249,237,241,173,63,182,240,203,218,89,216,91,189,104,8,207,214,126,9,197,156,213,168,7,5,25,34,36,38,66,68,69,99,90,102,117,118,130,157,164,264,339,113,280,53,317,263,290,411,374,371,416,445,363,398,479,490,496,510,514,523,526,612,590,70,431 +Machines|14,15,76,92,104,115,148,156,164,168,182,188,207,213,216,218,237,241,263,412,447,474,496 +BaseHP|50 +BaseAttack|75 +BaseDefense|35 +BaseSpAttack|70 +BaseSpDefense|30 +BaseSpeed|40 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Even though its body is extremely skinny, it is blindingly fast when catching its prey.\Flower Pokémon\4\0.7\0,148,0 +Scale|0.88 +Move|1,22 +Move|7,74 +Move|11,35 +Move|13,79 +Move|15,77 +Move|17,78 +Move|23,51 +Move|27,282 +Move|29,230 +Move|35,380 +Move|39,75 +Move|41,21 +Move|47,378 +TradeValue|10 +EvolutionCondition|70,Level,21,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/690.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/690.dat new file mode 100644 index 000000000..85daf64db --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/690.dat @@ -0,0 +1,56 @@ +Name|Skrelp +Number|690 +ExperienceType|1 +BaseExperience|64 +Type1|Poison +Type2|Water +CatchRate|225 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Dragon +BaseEggSteps|5525 +EggPokemon|690 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|38 +Ability2|143 +HiddenAbility|91 +EggMoves|151,390,114,583,599 +Machines|92,237,182,240,258,474,85,218,216,247,104,482,188,156,263,213,496,503,207,214,164,290,590,57,127,291,401,340,406,441,196,231,200,351,173 +TutorMoves|401,340,406,441,196,231,200,351,173 +BaseHP|50 +BaseAttack|60 +BaseDefense|60 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|Camouflaged as rotten kelp, they spray liquid poison on prey that approaches unawares and then finish it off.\Mock Kelp Pokémon\7.3\0.5\0,148,0 +Scale|1.0 +Move|1,33 +Move|1,108 +Move|1,55 +Move|5,185 +Move|9,39 +Move|12,145 +Move|15,51 +Move|19,293 +Move|23,342 +Move|25,352 +Move|28,104 +Move|32,92 +Move|35,401 +Move|38,188 +Move|42,56 +Move|49,406 +TradeValue|45 +EvolutionCondition|691,level,48,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/691.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/691.dat new file mode 100644 index 000000000..e6b58ae76 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/691.dat @@ -0,0 +1,59 @@ +Name|Dragalge +Number|691 +ExperienceType|1 +BaseExperience|173 +Type1|Poison +Type2|Dragon +CatchRate|55 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Dragon +BaseEggSteps|5525 +EggPokemon|690 +IsGenderLess|0 +CanBreed|1 +Devolution|690 +IsMale|50 +Ability1|38 +Ability2|143 +HiddenAbility|91 +EggMoves|151,390,114,583,599 +Machines|63,87,411,525,416,92,237,182,240,258,474,85,218,216,247,104,482,188,156,263,213,496,503,207,214,164,290,590,57,127,291,401,340,434,406,441,196,231,200,351,173,352 +TutorMoves|401,340,434,406,441,196,231,200,351,173,352 +BaseHP|65 +BaseAttack|75 +BaseDefense|90 +BaseSpAttack|97 +BaseSpDefense|123 +BaseSpeed|44 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|Tales are told of ships that wander into seas where Dragalge live, never to return.\Mock Kelp Pokémon\81.5\1.8\0,148,0 +Scale|1.1 +Move|1,525 +Move|1,239 +Move|1,33 +Move|1,108 +Move|1,55 +Move|5,185 +Move|9,39 +Move|12,145 +Move|15,51 +Move|19,293 +Move|23,342 +Move|25,352 +Move|28,104 +Move|32,92 +Move|35,401 +Move|38,188 +Move|42,56 +Move|53,406 +Move|59,525 +Move|67,239 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/692.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/692.dat new file mode 100644 index 000000000..c74166b42 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/692.dat @@ -0,0 +1,53 @@ +Name|Clauncher +Number|692 +ExperienceType|3 +BaseExperience|66 +Type1|Water +Type2| +CatchRate|225 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|4240 +EggPokemon|692 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|178 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|453,152,203,494 +Machines|92,474,237,58,182,240,218,479,216,247,104,482,188,263,156,213,496,411,503,416,14,157,207,214,369,164,430,399,290,590,15,57,127,291,401,340,406,270,196,231,173,352 +TutorMoves|401,340,406,270,196,231,173,352 +BaseHP|50 +BaseAttack|53 +BaseDefense|62 +BaseSpAttack|58 +BaseSpDefense|63 +BaseSpeed|44 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|Through controlled expulsions of internal gas, it can expel water like a pistol shot. At close distances, it can shatter rock.\Water Gun Pokémon\8.3\0.5\0,148,0 +Scale|0.9 +Move|1,150 +Move|1,55 +Move|7,346 +Move|9,11 +Move|12,145 +Move|16,175 +Move|20,61 +Move|25,14 +Move|30,152 +Move|34,352 +Move|39,479 +Move|43,453 +Move|48,330 +TradeValue|25 +EvolutionCondition|693,Level,37,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/693.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/693.dat new file mode 100644 index 000000000..c3926ecb1 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/693.dat @@ -0,0 +1,59 @@ +Name|Clawitzer +Number|693 +ExperienceType|3 +BaseExperience|100 +Type1|Water +Type2| +CatchRate|55 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Water3 +BaseEggSteps|4240 +EggPokemon|692 +IsGenderLess|0 +CanBreed|1 +Devolution|692 +IsMale|50 +Ability1|178 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|453,152,203,494 +Machines|92,474,237,58,182,240,218,479,216,104,482,188,263,156,213,496,503,14,157,207,214,369,164,430,290,590,15,57,127,291,401,340,406,270,196,231,173,352 +TutorMoves|401,340,406,270,196,231,173,352 +BaseHP|71 +BaseAttack|73 +BaseDefense|88 +BaseSpAttack|120 +BaseSpDefense|89 +BaseSpeed|59 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|By expelling water from the nozzle in the back of its claw, it can move at a speed of 60 knots.\Howitzer Pokémon\35.3\1.3\0,148,0 +Scale|1 +Move|1,505 +Move|1,399 +Move|1,406 +Move|1,396 +Move|1,150 +Move|1,55 +Move|7,346 +Move|9,11 +Move|12,145 +Move|16,175 +Move|20,61 +Move|25,14 +Move|30,152 +Move|34,352 +Move|42,479 +Move|47,453 +Move|53,330 +Move|57,399 +Move|63,406 +Move|67,396 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/694.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/694.dat new file mode 100644 index 000000000..949a8ee0a --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/694.dat @@ -0,0 +1,52 @@ +Name|Helioptile +Number|694 +ExperienceType|1 +BaseExperience|58 +Type1|Electric +Type2|Normal +CatchRate|190 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|694 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|87 +Ability2|8 +HiddenAbility|94 +EggMoves|97,293,604,137 +Machines|174,92,192,244,237,173,63,182,240,203,218,87,216,91,189,104,8,207,214,201,129,9,197,156,213,7,34,36,6,66,68,69,99,85,102,117,118,130,86,157,164,113,351,317,263,290,451,416,445,399,363,447,369,490,496,521,523,525,526,528,590,15,57,148 +BaseHP|44 +BaseAttack|38 +BaseDefense|33 +BaseSpAttack|61 +BaseSpDefense|43 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|They make their home in deserts. They can generate their energy from basking in the sun, so eating food is not a requirement.\Generator Pokémon\6.0\0.5\0,148,0 +Scale|0.8 +Move|1,1 +Move|1,39 +Move|6,84 +Move|11,268 +Move|13,189 +Move|17,98 +Move|22,13 +Move|25,570 +Move|31,86 +Move|35,523 +Move|40,521 +Move|45,582 +Move|49,85 +TradeValue|25 +EvolutionCondition|695,item,169,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/695.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/695.dat new file mode 100644 index 000000000..2f924d982 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/695.dat @@ -0,0 +1,45 @@ +Name|Heliolisk +Number|695 +ExperienceType|1 +BaseExperience|168 +Type1|Electric +Type2|Normal +CatchRate|75 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|694 +IsGenderLess|0 +CanBreed|1 +Devolution|694 +IsMale|50 +Ability1|87 +Ability2|8 +HiddenAbility|94 +EggMoves|97,293,604,137 +Machines|174,92,192,244,237,173,63,182,240,203,218,231,216,91,189,104,8,207,214,201,129,9,197,156,213,7,210,5,25,34,36,6,66,68,69,99,85,102,117,118,130,86,157,164,264,113,351,317,263,290,411,451,409,416,445,399,363,447,369,490,496,521,523,525,526,528,590,15,57,148,560 +BaseHP|62 +BaseAttack|55 +BaseDefense|52 +BaseSpAttack|109 +BaseSpDefense|94 +BaseSpeed|109 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|They flare their frills and generate energy. A single Heliolisk can generate sufficient electricity to power a skyscraper.\Generator Pokémon\21.0\1.0\0,148,0 +Scale|1.0 +Move|1,598 +Move|1,582 +Move|1,13 +Move|1,98 +Move|1,87 +Move|1,268 +Move|1,570 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/696.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/696.dat index 0f80a7d04..f7cc6bbb2 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/696.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/696.dat @@ -1 +1,55 @@ -{"Name":"Tyrunt","Number":696,"ExperienceType":"MediumFast","BaseExperience":78,"Type1":"Rock","Type2":"Dragon","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":7680,"EggPokemon":696,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[173],"HiddenAbility":5,"EggMoves":[174,349,422,423,424,305],"Machines":[174,46,92,249,237,241,173,63,182,203,218,225,89,216,91,189,104,207,214,201,197,156,213,168,210,34,36,99,82,102,117,130,157,164,337,280,317,332,363,290,416,397,444,446,445,399,363,468,496,523,525,526,590,70],"TutorMoves":[434],"BaseStats":{"HP":58,"Atk":89,"Def":77,"SpAtk":45,"SpDef":45,"Speed":48},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This Pokemon was restored from a fossil. If something happens that it doesn't like, it throws a tantrum and runs wild.","Species":"Royal Heir Pokémon","Height":0.8,"Weight":26,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":45,"Moves":[{"Level":1,"ID":39},{"Level":2,"ID":33},{"Level":6,"ID":46},{"Level":10,"ID":23},{"Level":12,"ID":117},{"Level":15,"ID":446},{"Level":17,"ID":44},{"Level":20,"ID":204},{"Level":26,"ID":246},{"Level":30,"ID":525},{"Level":34,"ID":242},{"Level":37,"ID":337},{"Level":40,"ID":37},{"Level":44,"ID":89},{"Level":49,"ID":32}],"EvolutionConditions":[{"Condition":"1;2","ConditionType":"DayTime","Evolution":697,"Trigger":"LevelUp"},{"Condition":"39","ConditionType":"Level","Evolution":697,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Tyrunt +Number|696 +ExperienceType|1 +BaseExperience|78 +Type1|Rock +Type2|Dragon +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|7680 +EggPokemon|696 +Devolution|0 +IsGenderLess|0 +IsMale|87.5 +Ability1|173 +Ability2|Nothing +HiddenAbility|5 +Machines|174,46,92,249,237,241,173,63,182,203,218,225,89,216,91,189,104,207,214,201,197,156,213,168,210,34,36,99,82,102,117,130,157,164,337,280,317,332,363,290,416,397,444,446,445,399,363,468,496,523,525,526,590,70 +EggMoves|174,349,422,423,424,305 +TutorMoves|434 +BaseHP|58 +BaseAttack|89 +BaseDefense|77 +BaseSpAttack|45 +BaseSpDefense|45 +BaseSpeed|48 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This Pokemon was restored from a fossil. If something happens that it doesn't like, it throws a tantrum and runs wild.\Royal Heir Pokémon\26.0\0.8\0,148,0 +Scale|1 +Move|1,39 +Move|1,33 +Move|6,46 +Move|10,23 +Move|12,117 +Move|15,446 +Move|17,44 +Move|20,204 +Move|26,246 +Move|30,525 +Move|34,242 +Move|37,337 +Move|40,37 +Move|44,89 +Move|49,32 +TradeValue|45 +EvolutionCondition|697,daytime,1;2,level +EvolutionCondition|697,Level,39,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/697.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/697.dat index 8b62a5e6b..543e92b60 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/697.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/697.dat @@ -1 +1,58 @@ -{"Name":"Tyrantrum","Number":697,"ExperienceType":"MediumFast","BaseExperience":188,"Type1":"Rock","Type2":"Dragon","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Dragon","BaseEggSteps":7680,"EggPokemon":696,"Devolution":696,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[173],"HiddenAbility":69,"EggMoves":[174,349,422,423,424,305],"Machines":[174,46,92,249,237,241,173,63,182,203,218,231,225,89,216,91,189,104,207,214,201,197,156,213,210,25,34,36,38,68,99,82,90,102,117,130,157,164,337,280,317,332,363,290,416,397,444,446,445,399,363,468,496,523,525,526,590,70,431,560],"TutorMoves":[434],"BaseStats":{"HP":82,"Atk":121,"Def":119,"SpAtk":69,"SpDef":59,"Speed":71},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Thanks to its gargantuan jaws, which could shred thick metal plates as if they were paper, it was invincible in the ancient world it once inhabited.","Species":"Despot Pokémon","Height":2.5,"Weight":270,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":65,"Moves":[{"Level":1,"ID":457},{"Level":2,"ID":39},{"Level":3,"ID":33},{"Level":6,"ID":46},{"Level":10,"ID":23},{"Level":12,"ID":117},{"Level":15,"ID":446},{"Level":17,"ID":44},{"Level":20,"ID":204},{"Level":26,"ID":246},{"Level":30,"ID":525},{"Level":34,"ID":242},{"Level":37,"ID":337},{"Level":42,"ID":37},{"Level":47,"ID":89},{"Level":53,"ID":32},{"Level":58,"ID":457},{"Level":68,"ID":157},{"Level":75,"ID":416}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Tyrantrum +Number|697 +ExperienceType|1 +BaseExperience|188 +Type1|Rock +Type2|Dragon +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|7680 +EggPokemon|696 +IsGenderLess|0 +CanBreed|1 +Devolution|696 +IsMale|87.5 +Ability1|173 +Ability2|Nothing +HiddenAbility|69 +EggMoves|174,349,422,423,424,305 +Machines|174,46,92,249,237,241,173,63,182,203,218,231,225,89,216,91,189,104,207,214,201,197,156,213,210,25,34,36,38,68,99,82,90,102,117,130,157,164,337,280,317,332,363,290,416,397,444,446,445,399,363,468,496,523,525,526,590,70,431,560 +TutorMoves|434 +BaseHP|82 +BaseAttack|121 +BaseDefense|119 +BaseSpAttack|69 +BaseSpDefense|59 +BaseSpeed|71 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Thanks to its gargantuan jaws, which could shred thick metal plates as if they were paper, it was invincible in the ancient world it once inhabited.\Despot Pokémon\270.0\2.5\0,148,0 +Scale|1 +Move|1,457 +Move|1,39 +Move|1,33 +Move|6,46 +Move|10,23 +Move|12,117 +Move|15,446 +Move|17,44 +Move|20,204 +Move|26,246 +Move|30,525 +Move|34,242 +Move|37,337 +Move|42,37 +Move|47,89 +Move|53,32 +Move|58,457 +Move|68,157 +Move|75,416 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/698.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/698.dat index b79b3f514..e517578a4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/698.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/698.dat @@ -1 +1,58 @@ -{"Name":"Amaura","Number":698,"ExperienceType":"MediumFast","BaseExperience":78,"Type1":"Rock","Type2":"Ice","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":7680,"EggPokemon":698,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[174],"HiddenAbility":117,"EggMoves":[112,435,114,393,243],"Machines":[174,46,92,249,237,173,59,63,196,182,203,218,225,216,189,104,8,207,214,201,138,197,156,213,34,36,58,99,85,102,115,117,130,86,157,164,352,347,258,113,219,317,363,290,451,416,397,444,419,446,445,399,363,430,496,497,523,524,525,267,590,148],"TutorMoves":[],"BaseStats":{"HP":77,"Atk":59,"Def":50,"SpAtk":67,"SpDef":63,"Speed":46},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"This ancient [POKE]mon was restored from part of its body that had been frozen in ice for over 100 million years.","Species":"Tundra Pokémon","Height":1.3,"Weight":25.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":45,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":181},{"Level":5,"ID":86},{"Level":10,"ID":88},{"Level":13,"ID":196},{"Level":15,"ID":36},{"Level":18,"ID":54},{"Level":20,"ID":62},{"Level":26,"ID":246},{"Level":30,"ID":1},{"Level":34,"ID":1},{"Level":38,"ID":258},{"Level":41,"ID":267},{"Level":44,"ID":227},{"Level":47,"ID":113},{"Level":50,"ID":58},{"Level":57,"ID":63},{"Level":65,"ID":59}],"EvolutionConditions":[{"Condition":"0;3","ConditionType":"DayTime","Evolution":699,"Trigger":"LevelUp"},{"Condition":"39","ConditionType":"Level","Evolution":699,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Amaura +Number|698 +ExperienceType|1 +BaseExperience|78 +Type1|Rock +Type2|Ice +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|7680 +EggPokemon|698 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|87.5 +Ability1|174 +Ability2|Nothing +HiddenAbility|117 +EggMoves|112,435,114,393,243 +Machines|174,46,92,249,237,173,59,63,196,182,203,218,225,216,189,104,8,207,214,201,138,197,156,213,34,36,58,99,85,102,115,117,130,86,157,164,352,347,258,113,219,317,363,290,451,416,397,444,419,446,445,399,363,430,496,497,523,524,525,267,590,148 +BaseHP|77 +BaseAttack|59 +BaseDefense|50 +BaseSpAttack|67 +BaseSpDefense|63 +BaseSpeed|46 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|This ancient [POKE]mon was restored from part of its body that had been frozen in ice for over 100 million years.\Tundra Pokémon\25.2\1.3\0,148,0 +Scale|1 +Move|1,45 +Move|1,181 +Move|5,86 +Move|10,88 +Move|13,196 +Move|15,36 +Move|18,54 +Move|20,62 +Move|26,246 +Move|30,496 +Move|34,419 +Move|38,258 +Move|41,267 +Move|44,227 +Move|47,113 +Move|50,58 +Move|57,63 +Move|65,59 +TradeValue|45 +EvolutionCondition|699,daytime,0;3,level +EvolutionCondition|699,Level,39,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/699.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/699.dat index f96f2cb80..bd44e8d84 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/699.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/699.dat @@ -1 +1,58 @@ -{"Name":"Aurorus","Number":699,"ExperienceType":"MediumFast","BaseExperience":188,"Type1":"Rock","Type2":"Ice","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"None","BaseEggSteps":7680,"EggPokemon":698,"Devolution":698,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[174],"HiddenAbility":117,"EggMoves":[112,435,114,393,243],"Machines":[174,46,92,249,237,173,59,63,196,182,203,218,225,216,189,104,8,207,214,201,138,197,156,213,34,36,58,99,85,102,115,117,130,86,157,164,352,347,258,113,219,317,363,290,451,416,397,444,419,446,445,399,363,430,496,497,523,524,525,267,590,148],"TutorMoves":[],"BaseStats":{"HP":123,"Atk":77,"Def":72,"SpAtk":99,"SpDef":92,"Speed":58},"RewardEV":{"HP":2,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The diamond-shaped crystals on its body expel air as cold as -240 degrees Fahrenheit, surrounding its enemies and encasing them in ice.","Species":"Tundra Pokémon","Height":2.7,"Weight":225,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":65,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":181},{"Level":3,"ID":1},{"Level":5,"ID":86},{"Level":10,"ID":88},{"Level":13,"ID":196},{"Level":15,"ID":36},{"Level":18,"ID":54},{"Level":20,"ID":62},{"Level":26,"ID":246},{"Level":30,"ID":1},{"Level":34,"ID":1},{"Level":38,"ID":258},{"Level":43,"ID":267},{"Level":46,"ID":227},{"Level":50,"ID":113},{"Level":56,"ID":58},{"Level":63,"ID":63},{"Level":74,"ID":59},{"Level":77,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Aurorus +Number|699 +ExperienceType|1 +BaseExperience|188 +Type1|Rock +Type2|Ice +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|7680 +EggPokemon|698 +IsGenderLess|0 +CanBreed|1 +Devolution|698 +IsMale|87.5 +Ability1|174 +Ability2|Nothing +HiddenAbility|117 +EggMoves|112,435,114,393,243 +Machines|174,46,92,249,237,173,59,63,196,182,203,218,225,216,189,104,8,207,214,201,138,197,156,213,34,36,58,99,85,102,115,117,130,86,157,164,352,347,258,113,219,317,363,290,451,416,397,444,419,446,445,399,363,430,496,497,523,524,525,267,590,148 +BaseHP|123 +BaseAttack|77 +BaseDefense|72 +BaseSpAttack|99 +BaseSpDefense|92 +BaseSpeed|58 +FPHP|2 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The diamond-shaped crystals on its body expel air as cold as -240 degrees Fahrenheit, surrounding its enemies and encasing them in ice.\Tundra Pokémon\225.0\2.7\0,148,0 +Scale|1 +Move|1,45 +Move|1,181 +Move|1,573 +Move|5,86 +Move|10,88 +Move|13,196 +Move|15,36 +Move|18,54 +Move|20,62 +Move|26,246 +Move|30,496 +Move|34,419 +Move|38,258 +Move|43,267 +Move|46,227 +Move|50,113 +Move|56,58 +Move|63,63 +Move|74,59 +Move|77,573 +TradeValue|65 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/6_mega_x.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/6_mega_x.dat new file mode 100644 index 000000000..00ecb60bb --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/6_mega_x.dat @@ -0,0 +1,58 @@ +Name|Mega Charizard X +Number|6 +ExperienceType|2 +BaseExperience|240 +Type1|Fire +Type2|Dragon +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|4 +IsGenderLess|0 +IsMale|87.5 +Ability1|181 +Ability2|Nothing +HiddenAbility|181 +EggMoves|314,246,187,44,68,242,349,406,407,394,264,232,200,14,251,157 +Machines|223,29,174,46,92,249,237,241,173,63,182,203,218,76,231,225,89,216,91,189,104,207,214,126,129,111,9,197,156,213,211,7,210,5,14,25,34,36,38,66,68,69,99,82,90,102,117,130,157,164,264,337,280,53,317,332,263,290,315,355,411,374,406,261,421,416,432,445,363,468,488,496,497,507,510,523,525,612,590,15,19,70,560 +BaseHP|78 +BaseAttack|130 +BaseDefense|111 +BaseSpAttack|130 +BaseSpDefense|85 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If Charizard becomes furious the flame at the tip of its tail flares up in a light blue shade.\Flame Pokémon\110.5\1.7\0,148,0 +Scale|1.28 +Move|1,10 +Move|1,45 +Move|1,52 +Move|1,257 +Move|1,289 +Move|1,337 +Move|1,394 +Move|1,403 +Move|1,421 +Move|7,52 +Move|10,108 +Move|17,82 +Move|21,184 +Move|28,424 +Move|32,481 +Move|36,17 +Move|41,163 +Move|47,53 +Move|56,83 +Move|62,517 +Move|71,257 +Move|77,394 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/6_mega_y.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/6_mega_y.dat new file mode 100644 index 000000000..0c10841df --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/6_mega_y.dat @@ -0,0 +1,58 @@ +Name|Mega Charizard Y +Number|6 +ExperienceType|2 +BaseExperience|240 +Type1|Fire +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Dragon +BaseEggSteps|5355 +EggPokemon|4 +IsGenderLess|0 +IsMale|87.5 +Ability1|70 +Ability2|Nothing +HiddenAbility|70 +EggMoves|314,246,187,44,68,242,349,406,407,394,264,232,200,14,251,157 +Machines|223,29,174,46,92,249,237,241,173,63,182,203,218,76,231,225,89,216,91,189,104,207,214,126,129,111,9,197,156,213,211,7,210,5,14,25,34,36,38,66,68,69,99,82,90,102,117,130,157,164,264,337,280,53,317,332,263,290,315,355,411,374,406,261,421,416,432,445,363,468,488,496,497,507,510,523,525,612,590,15,19,70,560 +BaseHP|78 +BaseAttack|104 +BaseDefense|78 +BaseSpAttack|159 +BaseSpDefense|115 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If Charizard becomes furious the flame at the tip of its tail flares up in a light blue shade.\Flame Pokémon\100.5\1.7\0,148,0 +Scale|1.28 +Move|1,10 +Move|1,45 +Move|1,52 +Move|1,257 +Move|1,289 +Move|1,337 +Move|1,394 +Move|1,403 +Move|1,421 +Move|7,52 +Move|10,108 +Move|17,82 +Move|21,184 +Move|28,424 +Move|32,481 +Move|36,17 +Move|41,163 +Move|47,53 +Move|56,83 +Move|62,517 +Move|71,257 +Move|77,394 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/7.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/7.dat index 1a9dcdcae..f2e22190c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/7.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/7.dat @@ -1 +1,51 @@ -{"Name":"Squirtle","Number":7,"ExperienceType":"MediumSlow","BaseExperience":63,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":7,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":44,"EggMoves":[453,392,396,362,406,252,175,193,114,243,54,300,330,287,323,281],"Machines":[223,29,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,61,55,58,66,68,69,99,102,117,130,164,264,352,258,280,317,263,290,362,374,416,360,445,363,496,503,612,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":44,"Atk":48,"Def":65,"SpAtk":50,"SpDef":64,"Speed":43},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"The shell is soft when it is born. It soon becomes so resilient, prodding fingers will bounce off it.","Species":"Tiny Turtle Pokémon","Height":0.5,"Weight":9,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":50,"Moves":[{"Level":1,"ID":33},{"Level":4,"ID":39},{"Level":7,"ID":55},{"Level":10,"ID":110},{"Level":13,"ID":145},{"Level":16,"ID":44},{"Level":19,"ID":229},{"Level":22,"ID":182},{"Level":25,"ID":352},{"Level":28,"ID":401},{"Level":31,"ID":130},{"Level":34,"ID":334},{"Level":37,"ID":240},{"Level":40,"ID":56}],"EvolutionConditions":[{"Condition":"16","ConditionType":"Level","Evolution":8,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Squirtle +Number|7 +ExperienceType|2 +BaseExperience|63 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|7 +IsGenderLess|0 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|44 +EggMoves|453,392,396,362,406,252,175,193,114,243,54,300,330,287,323,281 +Machines|223,29,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,61,55,58,66,68,69,99,102,117,130,164,264,352,258,280,317,263,290,362,374,416,360,445,363,496,503,612,590,57,70,250,127,291 +BaseHP|44 +BaseAttack|48 +BaseDefense|65 +BaseSpAttack|50 +BaseSpDefense|64 +BaseSpeed|43 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The shell is soft when it is born. It soon becomes so resilient, prodding fingers will bounce off it.\Tiny Turtle Pokémon\9\0.5\0,148,0 +Scale|0.7 +Move|1,33 +Move|4,39 +Move|7,55 +Move|10,110 +Move|13,145 +Move|16,44 +Move|19,229 +Move|22,182 +Move|25,352 +Move|28,401 +Move|31,130 +Move|34,334 +Move|37,240 +Move|40,56 +EvolutionCondition|8,Level,16,Level +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/70.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/70.dat index 6c3188724..6881cdcd5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/70.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/70.dat @@ -1 +1,54 @@ -{"Name":"Weepinbell","Number":70,"ExperienceType":"MediumSlow","BaseExperience":137,"Type1":"Grass","Type2":"Poison","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":69,"Devolution":69,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34],"HiddenAbility":82,"EggMoves":[491,562,331,499,227,202,275,141,345,363,438,235,321,311,388,14,115],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,168,14,36,99,72,102,115,117,164,331,263,290,412,416,445,363,447,474,496,611,267,590,15,148],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":90,"Def":50,"SpAtk":85,"SpDef":45,"Speed":55},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Even though it is filled with acid it does not melt because it also oozes a protective fluid.","Species":"Flycatcher Pokémon","Height":1,"Weight":6.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":20,"Moves":[{"Level":1,"ID":22},{"Level":2,"ID":74},{"Level":3,"ID":35},{"Level":7,"ID":74},{"Level":11,"ID":35},{"Level":13,"ID":79},{"Level":15,"ID":77},{"Level":17,"ID":78},{"Level":23,"ID":51},{"Level":27,"ID":282},{"Level":29,"ID":230},{"Level":35,"ID":1},{"Level":39,"ID":75},{"Level":41,"ID":21},{"Level":47,"ID":378}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Item","Evolution":71,"Trigger":"ItemUse"}],"Items":[]} \ No newline at end of file +Name|Weepinbell +Number|70 +ExperienceType|2 +BaseExperience|137 +Type1|Grass +Type2|Poison +CatchRate|120 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|69 +IsGenderLess|0 +CanBreed|1 +Devolution|69 +IsMale|50 +Ability1|34 +Ability2|Nothing +HiddenAbility|82 +EggMoves|491,562,331,499,227,202,275,141,345,363,438,235,321,311,388,14,115 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,168,14,36,99,72,102,115,117,164,331,263,290,412,416,445,363,447,474,496,611,267,590,15,148 +BaseHP|65 +BaseAttack|90 +BaseDefense|50 +BaseSpAttack|85 +BaseSpDefense|45 +BaseSpeed|55 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Even though it is filled with acid it does not melt because it also oozes a protective fluid.\Flycatcher Pokémon\6.4\1\0,148,0 +Scale|1 +Move|1,22 +Move|1,74 +Move|1,35 +Move|7,74 +Move|11,35 +Move|13,79 +Move|15,77 +Move|17,78 +Move|23,51 +Move|27,282 +Move|29,230 +Move|35,380 +Move|39,75 +Move|41,21 +Move|47,378 +TradeValue|20 +EvolutionCondition|71,item,34,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/700.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/700.dat index b59eacb85..b26bef51f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/700.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/700.dat @@ -1 +1,53 @@ -{"Name":"Sylveon","Number":700,"ExperienceType":"MediumFast","BaseExperience":184,"Type1":"Fairy","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":8960,"EggPokemon":133,"Devolution":133,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[56],"HiddenAbility":182,"EggMoves":[445,204,343,174,197,203,313,175,363,500,485,321,273,281],"Machines":[174,92,244,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,129,197,156,213,25,34,36,38,99,102,115,117,130,164,347,113,219,263,290,285,416,445,363,473,496,497,514,605,590,148,560],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":65,"Def":65,"SpAtk":110,"SpDef":130,"Speed":60},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It sends a soothing aura from its ribbonlike feelers to calm fights.","Species":"Intertwining Pokémon","Height":1,"Weight":23.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":574},{"Level":2,"ID":39},{"Level":3,"ID":33},{"Level":4,"ID":1},{"Level":5,"ID":28},{"Level":9,"ID":584},{"Level":13,"ID":98},{"Level":17,"ID":129},{"Level":20,"ID":577},{"Level":25,"ID":285},{"Level":29,"ID":1},{"Level":33,"ID":113},{"Level":37,"ID":585},{"Level":41,"ID":387},{"Level":45,"ID":244}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Sylveon +Number|700 +ExperienceType|1 +BaseExperience|184 +Type1|Fairy +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|8960 +EggPokemon|133 +IsGenderLess|0 +CanBreed|1 +Devolution|133 +IsMale|87.5 +Ability1|56 +Ability2|Nothing +HiddenAbility|182 +EggMoves|445,204,343,174,197,203,313,175,363,500,485,321,273,281 +Machines|174,92,244,237,241,173,63,182,240,203,218,231,216,91,247,189,104,207,214,129,197,156,213,25,34,36,38,99,102,115,117,130,164,347,113,219,263,290,285,416,445,363,473,496,497,514,605,590,148,560 +BaseHP|95 +BaseAttack|65 +BaseDefense|65 +BaseSpAttack|110 +BaseSpDefense|130 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It sends a soothing aura from its ribbonlike feelers to calm fights.\Intertwining Pokémon\23.5\1.0\0,148,0 +Scale|1 +Move|1,574 +Move|1,39 +Move|1,33 +Move|1,270 +Move|5,28 +Move|9,584 +Move|13,98 +Move|17,129 +Move|20,577 +Move|25,285 +Move|29,581 +Move|33,113 +Move|37,585 +Move|41,387 +Move|45,244 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/701.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/701.dat new file mode 100644 index 000000000..c0032f797 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/701.dat @@ -0,0 +1,56 @@ +Name|Hawlucha +Number|701 +ExperienceType|1 +BaseExperience|175 +Type1|Fighting +Type2|Flying +CatchRate|100 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|701 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|84 +Ability2|7 +HiddenAbility|104 +EggMoves|97,502,226,494,382,300,501 +Machines|223,174,92,249,237,241,173,63,182,203,218,216,104,8,207,214,197,156,213,211,5,14,34,36,38,66,68,69,99,102,117,118,130,143,157,164,264,339,269,280,317,332,259,263,290,355,411,206,374,409,371,416,432,444,445,404,363,398,447,365,369,468,490,496,507,512,514,526,612,590,15,19,70,431 +BaseHP|78 +BaseAttack|92 +BaseDefense|75 +BaseSpAttack|74 +BaseSpDefense|63 +BaseSpeed|118 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Although its body is small, its proficient fighting skills enable it to keep up with big bruisers like Machamp and Hariyama.\Wrestling Pokémon\21.5\0.8\0,148,0 +Scale|1.0 +Move|1,197 +Move|1,33 +Move|1,468 +Move|4,2 +Move|8,17 +Move|12,355 +Move|16,332 +Move|20,227 +Move|24,374 +Move|28,560 +Move|32,340 +Move|36,283 +Move|40,297 +Move|44,136 +Move|48,143 +Move|55,507 +Move|60,14 +TradeValue|40 +Item|5,82 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/702.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/702.dat new file mode 100644 index 000000000..baae641d8 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/702.dat @@ -0,0 +1,54 @@ +Name|Dedenne +Number|702 +ExperienceType|1 +BaseExperience|151 +Type1|Electric +Type2|Fairy +CatchRate|100 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|Fairy +BaseEggSteps|5355 +EggPokemon|702 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|167 +Ability2|53 +HiddenAbility|57 +EggMoves|343,598,270,363 +Machines|174,205,92,192,237,241,173,63,182,240,203,218,231,87,216,104,207,214,129,111,9,197,156,213,168,34,36,6,99,85,102,117,118,120,130,86,164,351,332,263,290,374,451,416,445,363,447,369,496,514,521,528,590,15,148 +BaseHP|67 +BaseAttack|58 +BaseDefense|57 +BaseSpAttack|81 +BaseSpDefense|67 +BaseSpeed|101 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|It uses its tail to absorb electricity from power plants or from outlets in houses, and then it fires the electricity from its whiskers.\Antenna Pokémon\2.2\0.2\0,148,0 +Scale|0.4 +Move|1,33 +Move|1,39 +Move|7,84 +Move|11,268 +Move|14,204 +Move|17,570 +Move|20,609 +Move|23,86 +Move|26,521 +Move|30,156 +Move|31,173 +Move|34,451 +Move|39,494 +Move|42,583 +Move|45,87 +Move|50,435 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/703.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/703.dat index a951f36f9..63000086d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/703.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/703.dat @@ -1 +1,52 @@ -{"Name":"Carbink","Number":703,"ExperienceType":"Slow","BaseExperience":135,"Type1":"Rock","Type2":"Fairy","CatchRate":30,"BaseFriendship":70,"EggGroup1":"Fairy","EggGroup2":"Mineral","BaseEggSteps":6400,"EggPokemon":703,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0,"Abilities":[29],"HiddenAbility":5,"EggMoves":[],"Machines":[174,205,92,192,244,237,241,173,63,182,203,218,216,94,104,207,214,201,111,196,156,213,34,36,6,99,102,115,117,118,120,153,157,164,347,258,113,219,351,317,263,290,285,416,397,444,360,446,445,363,433,479,496,605,590,148],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":50,"Def":150,"SpAtk":50,"SpDef":150,"Speed":50},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Born from the temperatures and pressures deep underground, it fires beams from the stone in its head.","Species":"Jewel Pokémon","Height":0.3,"Weight":5.7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":45,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":106},{"Level":5,"ID":88},{"Level":8,"ID":159},{"Level":12,"ID":479},{"Level":18,"ID":115},{"Level":21,"ID":446},{"Level":27,"ID":1},{"Level":31,"ID":246},{"Level":35,"ID":175},{"Level":40,"ID":285},{"Level":46,"ID":408},{"Level":49,"ID":444},{"Level":50,"ID":585},{"Level":60,"ID":113},{"Level":70,"ID":219}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Carbink +Number|703 +ExperienceType|3 +BaseExperience|135 +Type1|Rock +Type2|Fairy +CatchRate|30 +BaseFriendship|70 +EggGroup1|Fairy +EggGroup2|Mineral +BaseEggSteps|6400 +EggPokemon|703 +Devolution|0 +IsGenderLess|1 +IsMale|0 +Ability1|29 +Ability2|Nothing +HiddenAbility|5 +Machines|174,205,92,192,244,237,241,173,63,182,203,218,216,94,104,207,214,201,111,196,156,213,34,36,6,99,102,115,117,118,120,153,157,164,347,258,113,219,351,317,263,290,285,416,397,444,360,446,445,363,433,479,496,605,590,148 +BaseHP|50 +BaseAttack|50 +BaseDefense|150 +BaseSpAttack|50 +BaseSpDefense|150 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Born from the temperatures and pressures deep underground, it fires beams from the stone in its head.\Jewel Pokémon\5.7\0.3\0,148,0 +Scale|1 +Move|1,33 +Move|1,106 +Move|5,88 +Move|8,159 +Move|12,479 +Move|18,115 +Move|21,446 +Move|27,470 +Move|31,246 +Move|35,175 +Move|40,285 +Move|46,408 +Move|49,444 +Move|50,585 +Move|60,113 +Move|70,219 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/704.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/704.dat new file mode 100644 index 000000000..5026e6c74 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/704.dat @@ -0,0 +1,51 @@ +Name|Goomy +Number|704 +ExperienceType|3 +BaseExperience|60 +Type1|Dragon +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Dragon +EggGroup2|None +BaseEggSteps|10665 +EggPokemon|704 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|157 +Ability2|93 +HiddenAbility|183 +EggMoves|151,68,174,203,231,342 +Machines|92,237,241,182,240,218,85,216,104,188,482,263,156,213,496,157,611,214,207,164,290,590,434,406,231,200,351,173,352 +TutorMoves|434,406,231,200,351,173,352 +BaseHP|45 +BaseAttack|50 +BaseDefense|35 +BaseSpAttack|55 +BaseSpDefense|75 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It's covered in a slimy membrane that makes any punches or kicks slide off it harmlessly.\Soft Tissue Pokémon\2.8\0.3\0,148,0 +Scale|0.9 +Move|1,33 +Move|1,145 +Move|5,71 +Move|9,182 +Move|13,117 +Move|18,225 +Move|25,240 +Move|28,175 +Move|32,34 +Move|38,330 +Move|42,406 +TradeValue|40 +EvolutionCondition|705,Level,40,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/705.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/705.dat new file mode 100644 index 000000000..f812e82c5 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/705.dat @@ -0,0 +1,52 @@ +Name|Sliggoo +Number|705 +ExperienceType|3 +BaseExperience|158 +Type1|Dragon +Type2| +CatchRate|45 +BaseFriendship|35 +EggGroup1|Dragon +EggGroup2|None +BaseEggSteps|10665 +EggPokemon|704 +IsGenderLess|0 +CanBreed|1 +Devolution|704 +IsMale|50 +Ability1|157 +Ability2|93 +HiddenAbility|183 +EggMoves|151,68,174,203,231,342 +Machines|92,237,241,182,240,218,85,216,104,188,482,263,156,213,496,157,611,214,207,164,290,590,434,406,231,200,351,173,352 +TutorMoves|434,406,231,200,351,173,352 +BaseHP|68 +BaseAttack|75 +BaseDefense|53 +BaseSpAttack|83 +BaseSpDefense|113 +BaseSpeed|60 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its four horns are a high-performance radar system. It uses them to sense sounds and smells, rather than using ears or a nose.\Soft Tissue Pokémon\17.5\0.8\0,148,0 +Scale|1 +Move|1,33 +Move|1,145 +Move|5,71 +Move|9,182 +Move|13,117 +Move|18,225 +Move|25,240 +Move|28,175 +Move|32,34 +Move|38,330 +Move|47,406 +TradeValue|60 +EvolutionCondition|706,level,50,level +EvolutionCondition|706,weather,rain,level \ No newline at end of file diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/706.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/706.dat new file mode 100644 index 000000000..aaa995ec4 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/706.dat @@ -0,0 +1,55 @@ +Name|Goodra +Number|706 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|None +CatchRate|45 +BaseFriendship|35 +EggGroup1|Dragon +EggGroup2| +BaseEggSteps|10665 +EggPokemon|704 +IsGenderLess|0 +CanBreed|1 +Devolution|705 +IsMale|50 +Ability1|157 +Ability2|93 +HiddenAbility|183 +EggMoves|151,68,174,203,231,342 +Machines|92,258,237,241,58,59,63,182,240,218,85,87,89,216,104,188,482,53,126,263,156,213,496,411,510,416,523,157,525,249,70,611,214,207,164,290,590,401,434,406,7,264,276,9,231,200,351,173,352 +TutorMoves|401,434,406,7,264,276,9,231,200,351,173,352 +BaseHP|90 +BaseAttack|100 +BaseDefense|70 +BaseSpAttack|110 +BaseSpDefense|150 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It attacks with retractable horns. It throws a punch that's the equivalent of the force of a hundred pro boxers.\Dragon Pokémon\150.5\2.0\0,148,0 +Scale|1.2 +Move|1,200 +Move|1,364 +Move|1,33 +Move|1,145 +Move|5,71 +Move|9,182 +Move|13,117 +Move|18,225 +Move|25,240 +Move|28,175 +Move|32,34 +Move|38,330 +Move|47,401 +Move|50,406 +Move|55,438 +Move|63,200 +TradeValue|75 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/707.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/707.dat index 775ef7198..6e67b2eb1 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/707.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/707.dat @@ -1 +1,53 @@ -{"Name":"Klefki","Number":707,"ExperienceType":"Fast","BaseExperience":68,"Type1":"Steel","Type2":"Fairy","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5120,"EggPokemon":707,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[158],"HiddenAbility":170,"EggMoves":[334,199,415],"Machines":[174,92,244,237,241,173,63,182,240,203,218,216,94,104,207,214,197,156,213,168,36,6,99,100,102,115,117,118,120,86,161,164,347,113,219,259,263,290,285,416,445,363,430,473,496,605,590,15],"TutorMoves":[],"BaseStats":{"HP":57,"Atk":80,"Def":91,"SpAtk":80,"SpDef":87,"Speed":75},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"These key collectors threaten any attackers by fiercely jingling their keys at them.","Species":"Key Ring Pokémon","Height":0.2,"Weight":3,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":40,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":1},{"Level":5,"ID":584},{"Level":8,"ID":310},{"Level":12,"ID":319},{"Level":15,"ID":191},{"Level":18,"ID":577},{"Level":23,"ID":1},{"Level":27,"ID":1},{"Level":32,"ID":259},{"Level":34,"ID":429},{"Level":36,"ID":1},{"Level":40,"ID":278},{"Level":43,"ID":583},{"Level":44,"ID":1},{"Level":50,"ID":377}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Klefki +Number|707 +ExperienceType|0 +BaseExperience|68 +Type1|Steel +Type2|Fairy +CatchRate|60 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2| +BaseEggSteps|5120 +EggPokemon|707 +Devolution|0 +IsGenderLess|0 +IsMale|50 +Ability1|158 +Ability2|Nothing +HiddenAbility|170 +Machines|174,92,244,237,241,173,63,182,240,203,218,216,94,104,207,214,197,156,213,168,36,6,99,100,102,115,117,118,120,86,161,164,347,113,219,259,263,290,285,416,445,363,430,473,496,605,590,15 +EggMoves|334,199,415 +BaseHP|57 +BaseAttack|80 +BaseDefense|91 +BaseSpAttack|80 +BaseSpDefense|87 +BaseSpeed|75 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|These key collectors threaten any attackers by fiercely jingling their keys at them.\Key Ring Pokémon\3.0\0.2\0,148,0 +Scale|1 +Move|1,33 +Move|1,587 +Move|5,584 +Move|8,310 +Move|12,319 +Move|15,191 +Move|18,577 +Move|23,578 +Move|27,492 +Move|32,259 +Move|34,429 +Move|36,286 +Move|40,278 +Move|43,583 +Move|44,478 +Move|50,377 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/708.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/708.dat index b9ef2b574..a8044de9c 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/708.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/708.dat @@ -1 +1,53 @@ -{"Name":"Phantump","Number":708,"ExperienceType":"MediumFast","BaseExperience":67,"Type1":"Ghost","Type2":"Grass","CatchRate":150,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"Amorphous","BaseEggSteps":5120,"EggPokemon":708,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[30,119],"HiddenAbility":139,"EggMoves":[516,288,286,599],"Machines":[174,92,249,237,241,230,173,63,182,202,203,218,76,216,94,247,104,207,214,138,197,156,213,168,171,99,72,102,115,117,149,157,164,331,219,351,263,290,289,412,261,421,416,445,399,363,398,447,433,477,496,523,267,590,15,70],"TutorMoves":[],"BaseStats":{"HP":43,"Atk":70,"Def":48,"SpAtk":50,"SpDef":60,"Speed":38},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"These Pokemon are created when spirits possess rotten tree stumps. They prefer to live in abandoned forests.","Species":"Stump Pokémon","Height":0.4,"Weight":7,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":30,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":109},{"Level":5,"ID":310},{"Level":8,"ID":74},{"Level":13,"ID":275},{"Level":19,"ID":185},{"Level":23,"ID":73},{"Level":28,"ID":174},{"Level":31,"ID":261},{"Level":35,"ID":1},{"Level":39,"ID":194},{"Level":45,"ID":1},{"Level":49,"ID":452},{"Level":54,"ID":532}],"EvolutionConditions":[{"Condition":"0","ConditionType":"Trade","Evolution":709,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Phantump +Number|708 +ExperienceType|1 +BaseExperience|67 +Type1|Ghost +Type2|Grass +CatchRate|150 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|Amorphous +BaseEggSteps|5120 +EggPokemon|708 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|30 +Ability2|119 +HiddenAbility|139 +EggMoves|516,288,286,599 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,94,247,104,207,214,138,197,156,213,168,171,99,72,102,115,117,149,157,164,331,219,351,263,290,289,412,261,421,416,445,399,363,398,447,433,477,496,523,267,590,15,70 +BaseHP|43 +BaseAttack|70 +BaseDefense|48 +BaseSpAttack|50 +BaseSpDefense|60 +BaseSpeed|38 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|These Pokemon are created when spirits possess rotten tree stumps. They prefer to live in abandoned forests.\Stump Pokémon\7.0\0.4\0,148,0 +Scale|1 +Move|1,33 +Move|1,109 +Move|5,310 +Move|8,74 +Move|13,275 +Move|19,185 +Move|23,73 +Move|28,174 +Move|31,261 +Move|35,571 +Move|39,194 +Move|45,566 +Move|49,452 +Move|54,532 +TradeValue|30 +EvolutionCondition|709,trade,0,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/709.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/709.dat index fbf34b386..4189b211a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/709.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/709.dat @@ -1 +1,54 @@ -{"Name":"Trevenant","Number":709,"ExperienceType":"MediumFast","BaseExperience":132,"Type1":"Ghost","Type2":"Grass","CatchRate":150,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"Amorphous","BaseEggSteps":5120,"EggPokemon":708,"Devolution":708,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[30,119],"HiddenAbility":139,"EggMoves":[516,288,286,599],"Machines":[223,174,92,249,237,241,230,173,63,182,202,203,218,76,89,216,94,247,189,104,207,214,9,138,197,156,213,168,7,171,5,25,34,36,38,66,68,69,99,72,102,115,117,149,157,164,264,347,331,219,351,263,290,289,411,412,409,261,421,416,445,399,404,363,398,447,433,468,477,496,523,526,267,612,590,15,70,431,560],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":110,"Def":76,"SpAtk":65,"SpDef":82,"Speed":56},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can control trees at will. It will trap people who harm the forest, so they can never leave.","Species":"Elder Tree Pokémon","Height":1.5,"Weight":71,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":50,"Moves":[{"Level":1,"ID":532},{"Level":2,"ID":33},{"Level":3,"ID":109},{"Level":5,"ID":310},{"Level":8,"ID":74},{"Level":13,"ID":275},{"Level":19,"ID":185},{"Level":23,"ID":73},{"Level":28,"ID":174},{"Level":31,"ID":261},{"Level":35,"ID":1},{"Level":39,"ID":194},{"Level":45,"ID":1},{"Level":49,"ID":452},{"Level":55,"ID":421},{"Level":62,"ID":532}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Trevenant +Number|709 +ExperienceType|1 +BaseExperience|132 +Type1|Ghost +Type2|Grass +CatchRate|150 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|Amorphous +BaseEggSteps|5120 +EggPokemon|708 +IsGenderLess|0 +CanBreed|1 +Devolution|708 +IsMale|50 +Ability1|30 +Ability2|119 +HiddenAbility|139 +EggMoves|516,288,286,599 +Machines|223,174,92,249,237,241,230,173,63,182,202,203,218,76,89,216,94,247,189,104,207,214,9,138,197,156,213,168,7,171,5,25,34,36,38,66,68,69,99,72,102,115,117,149,157,164,264,347,331,219,351,263,290,289,411,412,409,261,421,416,445,399,404,363,398,447,433,468,477,496,523,526,267,612,590,15,70,431,560 +BaseHP|85 +BaseAttack|110 +BaseDefense|76 +BaseSpAttack|65 +BaseSpDefense|82 +BaseSpeed|56 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can control trees at will. It will trap people who harm the forest, so they can never leave.\Elder Tree Pokémon\71.0\1.5\0,148,0 +Scale|1 +Move|1,532 +Move|1,33 +Move|1,109 +Move|5,310 +Move|8,74 +Move|13,275 +Move|19,185 +Move|23,73 +Move|28,174 +Move|31,261 +Move|35,571 +Move|39,194 +Move|45,566 +Move|49,452 +Move|55,421 +Move|62,532 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/71.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/71.dat index 757fb503c..5c5513ebe 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/71.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/71.dat @@ -1 +1,48 @@ -{"Name":"Victreebel","Number":71,"ExperienceType":"MediumSlow","BaseExperience":216,"Type1":"Grass","Type2":"Poison","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Grass","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":69,"Devolution":70,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[34],"HiddenAbility":82,"EggMoves":[491,562,331,499,227,202,275,141,345,363,438,235,321,311,388,115,14],"Machines":[174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,168,14,34,36,38,99,72,102,115,117,164,331,263,290,412,416,445,363,447,474,496,611,267,590,15,148],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":105,"Def":65,"SpAtk":100,"SpDef":70,"Speed":70},"RewardEV":{"HP":0,"Atk":3,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Acid that has dissolved many prey becomes sweeter, making it even more effective at attracting prey.","Species":"Flycatcher Pokémon","Height":1.7,"Weight":15.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":40,"Moves":[{"Level":1,"ID":254},{"Level":2,"ID":256},{"Level":3,"ID":255},{"Level":4,"ID":22},{"Level":5,"ID":79},{"Level":6,"ID":230},{"Level":7,"ID":75},{"Level":27,"ID":536},{"Level":47,"ID":437},{"Level":48,"ID":348}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Victreebel +Number|71 +ExperienceType|2 +BaseExperience|216 +Type1|Grass +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Grass +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|69 +IsGenderLess|0 +CanBreed|1 +Devolution|70 +IsMale|50 +Ability1|34 +Ability2|Nothing +HiddenAbility|82 +EggMoves|491,562,331,499,227,202,275,141,345,363,438,235,321,311,388,115,14 +Machines|174,92,237,241,230,173,63,182,202,203,218,76,216,104,207,214,188,197,156,213,168,14,34,36,38,99,72,102,115,117,164,331,263,290,412,416,445,363,447,474,496,611,267,590,15,148 +BaseHP|80 +BaseAttack|105 +BaseDefense|65 +BaseSpAttack|100 +BaseSpDefense|70 +BaseSpeed|70 +FPHP|0 +FPAttack|3 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Acid that has dissolved many prey becomes sweeter, making it even more effective at attracting prey.\Flycatcher Pokémon\15.5\1.7\0,148,0 +Scale|1.28 +Move|1,254 +Move|1,256 +Move|1,255 +Move|1,22 +Move|1,79 +Move|1,230 +Move|1,75 +Move|27,536 +Move|47,437 +Move|47,348 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710.dat new file mode 100644 index 000000000..44c316574 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710.dat @@ -0,0 +1,54 @@ +Name|Pumpkaboo +Number|710 +ExperienceType|1 +BaseExperience|67 +Type1|Ghost +Type2|Grass +CatchRate|120 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|710 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|119 +HiddenAbility|15 +EggMoves|516,194,50 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,94,247,104,207,214,188,126,138,197,156,213,168,171,99,72,102,117,120,149,153,157,164,331,113,219,351,53,263,290,289,412,451,261,416,360,445,399,363,447,433,477,488,496,510,267,590,148 +BaseHP|49 +BaseAttack|66 +BaseDefense|70 +BaseSpAttack|44 +BaseSpDefense|55 +BaseSpeed|51 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The pumpkin body is inhabited by a spirit trapped in this world. As the sun sets, it becomes restless and active.\Pumpkin Pokémon\5.0\0.4\0,148,0 +Scale|0.5 +Move|1,271 +Move|1,310 +Move|1,109 +Move|4,184 +Move|6,567 +Move|11,388 +Move|16,75 +Move|20,73 +Move|23,567 +Move|26,331 +Move|30,425 +Move|36,247 +Move|40,567 +Move|42,220 +Move|48,402 +TradeValue|30 +EvolutionCondition|711,trade,0,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710_large.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710_large.dat new file mode 100644 index 000000000..61f6000b5 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710_large.dat @@ -0,0 +1,54 @@ +Name|Pumpkaboo +Number|710 +ExperienceType|1 +BaseExperience|67 +Type1|Ghost +Type2|Grass +CatchRate|120 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|710 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|119 +HiddenAbility|15 +EggMoves|516,194,50 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,94,247,104,207,214,188,126,138,197,156,213,168,171,99,72,102,117,120,149,153,157,164,331,113,219,351,53,263,290,289,412,451,261,416,360,445,399,363,447,433,477,488,496,510,267,590,148 +BaseHP|54 +BaseAttack|66 +BaseDefense|70 +BaseSpAttack|44 +BaseSpDefense|55 +BaseSpeed|46 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The pumpkin body is inhabited by a spirit trapped in this world. As the sun sets, it becomes restless and active.\Pumpkin Pokémon\7.5\0.5\0,148,0 +Scale|0.5 +Move|1,271 +Move|1,310 +Move|1,109 +Move|4,184 +Move|6,567 +Move|11,388 +Move|16,75 +Move|20,73 +Move|23,567 +Move|26,331 +Move|30,425 +Move|36,247 +Move|40,567 +Move|42,220 +Move|48,402 +TradeValue|30 +EvolutionCondition|711,trade,0,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710_small.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710_small.dat new file mode 100644 index 000000000..ee190bd99 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710_small.dat @@ -0,0 +1,54 @@ +Name|Pumpkaboo +Number|710 +ExperienceType|1 +BaseExperience|67 +Type1|Ghost +Type2|Grass +CatchRate|120 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|710 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|119 +HiddenAbility|15 +EggMoves|516,194,50 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,94,247,104,207,214,188,126,138,197,156,213,168,171,99,72,102,117,120,149,153,157,164,331,113,219,351,53,263,290,289,412,451,261,416,360,445,399,363,447,433,477,488,496,510,267,590,148 +BaseHP|44 +BaseAttack|66 +BaseDefense|70 +BaseSpAttack|44 +BaseSpDefense|55 +BaseSpeed|56 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The pumpkin body is inhabited by a spirit trapped in this world. As the sun sets, it becomes restless and active.\Pumpkin Pokémon\3.5\0.3\0,148,0 +Scale|0.4 +Move|1,271 +Move|1,310 +Move|1,109 +Move|4,184 +Move|6,567 +Move|11,388 +Move|16,75 +Move|20,73 +Move|23,567 +Move|26,331 +Move|30,425 +Move|36,247 +Move|40,567 +Move|42,220 +Move|48,402 +TradeValue|25 +EvolutionCondition|711,trade,0,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710_super.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710_super.dat new file mode 100644 index 000000000..1a83879b3 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/710_super.dat @@ -0,0 +1,54 @@ +Name|Pumpkaboo +Number|710 +ExperienceType|1 +BaseExperience|67 +Type1|Ghost +Type2|Grass +CatchRate|120 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|710 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|119 +HiddenAbility|15 +EggMoves|516,194,50 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,94,247,104,207,214,188,126,138,197,156,213,168,171,99,72,102,117,120,149,153,157,164,331,113,219,351,53,263,290,289,412,451,261,416,360,445,399,363,447,433,477,488,496,510,267,590,148 +BaseHP|59 +BaseAttack|66 +BaseDefense|70 +BaseSpAttack|44 +BaseSpDefense|55 +BaseSpeed|41 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|The pumpkin body is inhabited by a spirit trapped in this world. As the sun sets, it becomes restless and active.\Pumpkin Pokémon\15.0\0.8\0,148,0 +Scale|0.7 +Move|1,271 +Move|1,310 +Move|1,109 +Move|4,184 +Move|6,567 +Move|11,388 +Move|16,75 +Move|20,73 +Move|23,567 +Move|26,331 +Move|30,425 +Move|36,247 +Move|40,567 +Move|42,220 +Move|48,402 +TradeValue|35 +EvolutionCondition|711,trade,0,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711.dat new file mode 100644 index 000000000..fa1bb0184 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711.dat @@ -0,0 +1,59 @@ +Name|Gourgeist +Number|711 +ExperienceType|1 +BaseExperience|173 +Type1|Ghost +Type2|Grass +CatchRate|60 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|710 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|119 +HiddenAbility|15 +EggMoves|516,194,50 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,94,247,189,104,207,214,188,126,138,197,156,213,168,7,171,5,34,36,66,68,69,99,72,102,117,120,149,153,157,164,264,331,113,219,351,53,263,290,289,411,412,451,261,416,360,445,399,363,447,433,477,488,496,510,526,267,590,148,560 +BaseHP|65 +BaseAttack|90 +BaseDefense|122 +BaseSpAttack|58 +BaseSpDefense|75 +BaseSpeed|84 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It enwraps its prey in its hairlike arms. It sings joyfully as it observes the suffering of its prey.\Pumpkin Pokémon\12.5\0.9\0,148,0 +Scale|1.0 +Move|1,153 +Move|1,566 +Move|1,271 +Move|1,310 +Move|1,109 +Move|4,184 +Move|6,567 +Move|11,388 +Move|16,75 +Move|20,73 +Move|23,567 +Move|26,331 +Move|30,425 +Move|36,247 +Move|40,567 +Move|42,220 +Move|48,402 +Move|57,566 +Move|63,567 +Move|70,247 +Move|75,153 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711_large.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711_large.dat new file mode 100644 index 000000000..e26c7c456 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711_large.dat @@ -0,0 +1,59 @@ +Name|Gourgeist +Number|711 +ExperienceType|1 +BaseExperience|173 +Type1|Ghost +Type2|Grass +CatchRate|60 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|710 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|119 +HiddenAbility|15 +EggMoves|516,194,50 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,94,247,189,104,207,214,188,126,138,197,156,213,168,7,171,5,34,36,66,68,69,99,72,102,117,120,149,153,157,164,264,331,113,219,351,53,263,290,289,411,412,451,261,416,360,445,399,363,447,433,477,488,496,510,526,267,590,148,560 +BaseHP|75 +BaseAttack|95 +BaseDefense|122 +BaseSpAttack|58 +BaseSpDefense|75 +BaseSpeed|69 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It enwraps its prey in its hairlike arms. It sings joyfully as it observes the suffering of its prey.\Pumpkin Pokémon\14.0\1.1\0,148,0 +Scale|1.0 +Move|1,153 +Move|1,566 +Move|1,271 +Move|1,310 +Move|1,109 +Move|4,184 +Move|6,567 +Move|11,388 +Move|16,75 +Move|20,73 +Move|23,567 +Move|26,331 +Move|30,425 +Move|36,247 +Move|40,567 +Move|42,220 +Move|48,402 +Move|57,566 +Move|63,567 +Move|70,247 +Move|75,153 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711_small.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711_small.dat new file mode 100644 index 000000000..cbd7b3188 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711_small.dat @@ -0,0 +1,59 @@ +Name|Gourgeist +Number|711 +ExperienceType|1 +BaseExperience|173 +Type1|Ghost +Type2|Grass +CatchRate|60 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|710 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|119 +HiddenAbility|15 +EggMoves|516,194,50 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,94,247,189,104,207,214,188,126,138,197,156,213,168,7,171,5,34,36,66,68,69,99,72,102,117,120,149,153,157,164,264,331,113,219,351,53,263,290,289,411,412,451,261,416,360,445,399,363,447,433,477,488,496,510,526,267,590,148,560 +BaseHP|55 +BaseAttack|85 +BaseDefense|122 +BaseSpAttack|58 +BaseSpDefense|75 +BaseSpeed|99 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It enwraps its prey in its hairlike arms. It sings joyfully as it observes the suffering of its prey.\Pumpkin Pokémon\9.5\0.7\0,148,0 +Scale|0.8 +Move|1,153 +Move|1,566 +Move|1,271 +Move|1,310 +Move|1,109 +Move|4,184 +Move|6,567 +Move|11,388 +Move|16,75 +Move|20,73 +Move|23,567 +Move|26,331 +Move|30,425 +Move|36,247 +Move|40,567 +Move|42,220 +Move|48,402 +Move|57,566 +Move|63,567 +Move|70,247 +Move|75,153 +TradeValue|45 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711_super.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711_super.dat new file mode 100644 index 000000000..cdedefee7 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/711_super.dat @@ -0,0 +1,59 @@ +Name|Gourgeist +Number|711 +ExperienceType|1 +BaseExperience|173 +Type1|Ghost +Type2|Grass +CatchRate|60 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|710 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|53 +Ability2|119 +HiddenAbility|15 +EggMoves|516,194,50 +Machines|174,92,249,237,241,230,173,63,182,202,203,218,76,216,94,247,189,104,207,214,188,126,138,197,156,213,168,7,171,5,34,36,66,68,69,99,72,102,117,120,149,153,157,164,264,331,113,219,351,53,263,290,289,411,412,451,261,416,360,445,399,363,447,433,477,488,496,510,526,267,590,148,560 +BaseHP|85 +BaseAttack|100 +BaseDefense|122 +BaseSpAttack|58 +BaseSpDefense|75 +BaseSpeed|54 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It enwraps its prey in its hairlike arms. It sings joyfully as it observes the suffering of its prey.\Pumpkin Pokémon\39.0\1.7\0,148,0 +Scale|1.2 +Move|1,153 +Move|1,566 +Move|1,271 +Move|1,310 +Move|1,109 +Move|4,184 +Move|6,567 +Move|11,388 +Move|16,75 +Move|20,73 +Move|23,567 +Move|26,331 +Move|30,425 +Move|36,247 +Move|40,567 +Move|42,220 +Move|48,402 +Move|57,566 +Move|63,567 +Move|70,247 +Move|75,153 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/712.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/712.dat new file mode 100644 index 000000000..c9543a6b7 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/712.dat @@ -0,0 +1,54 @@ +Name|Bergmite +Number|712 +ExperienceType|1 +BaseExperience|61 +Type1|Ice +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|712 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|20 +Ability2|115 +HiddenAbility|5 +EggMoves|112,243,54,105 +Machines|174,205,92,249,237,173,59,63,196,182,203,218,216,189,104,8,207,214,111,197,156,213,25,34,36,58,99,102,117,120,130,157,164,352,258,219,317,263,290,416,397,444,419,360,445,363,430,496,524,526,590,57,70,148,560 +BaseHP|55 +BaseAttack|69 +BaseDefense|85 +BaseSpAttack|32 +BaseSpDefense|35 +BaseSpeed|28 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It blocks opponents' attacks with the ice that shields its body. It uses cold air to repair any cracks with new ice.\Ice Chunk Pokémon\99.5\1.0\0,148,0 +Scale|1.0 +Move|1,33 +Move|1,44 +Move|1,106 +Move|5,181 +Move|10,196 +Move|15,36 +Move|20,159 +Move|22,174 +Move|26,423 +Move|30,301 +Move|35,229 +Move|39,419 +Move|43,59 +Move|47,105 +Move|49,38 +TradeValue|30 +EvolutionCondition|713,level,37,level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/713.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/713.dat new file mode 100644 index 000000000..9778868f5 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/713.dat @@ -0,0 +1,58 @@ +Name|Avalugg +Number|713 +ExperienceType|1 +BaseExperience|180 +Type1|Ice +Type2| +CatchRate|55 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|712 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|20 +Ability2|115 +HiddenAbility|5 +EggMoves|112,243,54,105 +Machines|174,205,46,92,249,237,173,59,63,196,182,203,218,89,216,189,104,8,207,214,111,197,156,213,25,34,36,38,58,66,68,69,99,82,90,102,117,120,130,157,164,352,258,219,317,263,290,416,397,444,419,360,445,363,430,496,523,524,526,590,57,70,148,431,560 +BaseHP|95 +BaseAttack|117 +BaseDefense|184 +BaseSpAttack|44 +BaseSpDefense|46 +BaseSpeed|28 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its ice-covered body is as hard as steel. Its cumbersome frame crushes anything that stands in its way.\Iceberg Pokémon\505.0\2.0\0,148,0 +Scale|1.4 +Move|1,334 +Move|1,130 +Move|1,242 +Move|1,33 +Move|1,44 +Move|1,106 +Move|5,181 +Move|10,196 +Move|15,36 +Move|20,159 +Move|22,174 +Move|26,423 +Move|30,301 +Move|35,229 +Move|42,419 +Move|46,59 +Move|51,105 +Move|56,38 +Move|60,130 +Move|65,242 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/714.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/714.dat index 9e1d115ed..f1f8105eb 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/714.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/714.dat @@ -1 +1,56 @@ -{"Name":"Noibat","Number":714,"ExperienceType":"MediumFast","BaseExperience":94,"Type1":"Flying","Type2":"Dragon","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5120,"EggPokemon":714,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[119,151],"HiddenAbility":140,"EggMoves":[200,289,415,366],"Machines":[174,92,237,241,173,63,182,203,218,76,231,225,216,94,247,104,207,214,138,197,156,213,168,211,13,18,36,99,82,102,117,143,164,337,269,280,351,332,259,263,290,355,406,318,421,416,432,445,399,404,363,365,369,496,497,512,528,590,15,19],"TutorMoves":[434],"BaseStats":{"HP":40,"Atk":30,"Def":35,"SpAtk":45,"SpDef":40,"Speed":55},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They live in pitch-black caves. Their enormous ears can emit ultrasonic waves of 200,000 hertz.","Species":"Sound Wave Pokémon","Height":0.5,"Weight":8,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":35,"Moves":[{"Level":1,"ID":103},{"Level":2,"ID":48},{"Level":3,"ID":33},{"Level":5,"ID":141},{"Level":11,"ID":16},{"Level":13,"ID":44},{"Level":16,"ID":17},{"Level":18,"ID":97},{"Level":23,"ID":314},{"Level":27,"ID":355},{"Level":31,"ID":13},{"Level":35,"ID":366},{"Level":40,"ID":18},{"Level":43,"ID":162},{"Level":48,"ID":403},{"Level":58,"ID":542}],"EvolutionConditions":[{"Condition":"48","ConditionType":"Level","Evolution":715,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Noibat +Number|714 +ExperienceType|1 +BaseExperience|94 +Type1|Flying +Type2|Dragon +CatchRate|200 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5120 +EggPokemon|714 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|119 +Ability2|151 +HiddenAbility|140 +EggMoves|200,289,415,366 +Machines|174,92,237,241,173,63,182,203,218,76,231,225,216,94,247,104,207,214,138,197,156,213,168,211,13,18,36,99,82,102,117,143,164,337,269,280,351,332,259,263,290,355,406,318,421,416,432,445,399,404,363,365,369,496,497,512,528,590,15,19 +TutorMoves|434 +BaseHP|40 +BaseAttack|30 +BaseDefense|35 +BaseSpAttack|45 +BaseSpDefense|40 +BaseSpeed|55 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|They live in pitch-black caves. Their enormous ears can emit ultrasonic waves of 200,000 hertz.\Sound Wave Pokémon\8.0\0.5\0,148,0 +Scale|1 +Move|1,103 +Move|1,48 +Move|1,33 +Move|5,141 +Move|11,16 +Move|13,44 +Move|16,17 +Move|18,97 +Move|23,314 +Move|27,355 +Move|31,13 +Move|35,366 +Move|40,18 +Move|43,162 +Move|48,403 +Move|58,542 +TradeValue|35 +EvolutionCondition|715,Level,48,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/715.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/715.dat index 36036e1bd..2215a13c4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/715.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/715.dat @@ -1 +1,61 @@ -{"Name":"Noivern","Number":715,"ExperienceType":"MediumFast","BaseExperience":194,"Type1":"Flying","Type2":"Dragon","CatchRate":200,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5120,"EggPokemon":714,"Devolution":714,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[119,151],"HiddenAbility":140,"EggMoves":[200,289,415,366],"Machines":[174,92,237,241,173,63,182,203,218,76,231,225,216,94,247,104,8,207,214,9,138,197,156,213,168,211,13,18,36,38,68,69,99,82,102,117,143,164,337,269,280,351,53,332,259,263,290,355,411,406,318,421,416,432,445,399,404,363,365,369,468,496,497,512,528,590,15,19],"TutorMoves":[434],"BaseStats":{"HP":85,"Atk":70,"Def":80,"SpAtk":97,"SpDef":80,"Speed":123},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They fly around on moonless nights and attack careless prey. Nothing can beat them in a battle in the dark.","Species":"Sound Wave Pokémon","Height":1.5,"Weight":85,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":55,"Moves":[{"Level":1,"ID":236},{"Level":2,"ID":586},{"Level":3,"ID":406},{"Level":4,"ID":542},{"Level":5,"ID":103},{"Level":6,"ID":48},{"Level":7,"ID":33},{"Level":8,"ID":141},{"Level":11,"ID":16},{"Level":13,"ID":44},{"Level":16,"ID":17},{"Level":18,"ID":97},{"Level":23,"ID":314},{"Level":27,"ID":355},{"Level":31,"ID":13},{"Level":35,"ID":366},{"Level":40,"ID":18},{"Level":43,"ID":162},{"Level":53,"ID":403},{"Level":62,"ID":542},{"Level":70,"ID":406},{"Level":75,"ID":586}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Noivern +Number|715 +ExperienceType|1 +BaseExperience|194 +Type1|Flying +Type2|Dragon +CatchRate|200 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5120 +EggPokemon|714 +IsGenderLess|0 +CanBreed|1 +Devolution|714 +IsMale|50 +Ability1|119 +Ability2|151 +HiddenAbility|140 +EggMoves|200,289,415,366 +Machines|174,92,237,241,173,63,182,203,218,76,231,225,216,94,247,104,8,207,214,9,138,197,156,213,168,211,13,18,36,38,68,69,99,82,102,117,143,164,337,269,280,351,53,332,259,263,290,355,411,406,318,421,416,432,445,399,404,363,365,369,468,496,497,512,528,590,15,19 +TutorMoves|434 +BaseHP|85 +BaseAttack|70 +BaseDefense|80 +BaseSpAttack|97 +BaseSpDefense|80 +BaseSpeed|123 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|They fly around on moonless nights and attack careless prey. Nothing can beat them in a battle in the dark.\Sound Wave Pokémon\85.0\1.5\0,148,0 +Scale|1 +Move|1,236 +Move|1,586 +Move|1,406 +Move|1,542 +Move|1,103 +Move|1,48 +Move|1,33 +Move|5,141 +Move|11,16 +Move|13,44 +Move|16,17 +Move|18,97 +Move|23,314 +Move|27,355 +Move|31,13 +Move|35,366 +Move|40,18 +Move|43,162 +Move|53,403 +Move|62,542 +Move|70,406 +Move|75,586 +TradeValue|55 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/716.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/716.dat new file mode 100644 index 000000000..e44f552c4 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/716.dat @@ -0,0 +1,55 @@ +Name|Xerneas +Number|716 +ExperienceType|3 +BaseExperience|306 +Type1|Fairy +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|716 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0 +Ability1|187 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,46,92,244,237,241,173,63,182,240,203,218,231,87,216,94,104,207,214,129,197,156,213,171,25,32,34,36,38,66,68,99,85,102,115,117,118,130,86,157,161,164,347,258,113,351,263,290,411,416,445,363,447,430,473,496,497,267,605,590,15,148,431,560 +BaseHP|126 +BaseAttack|131 +BaseDefense|95 +BaseSpAttack|131 +BaseSpDefense|98 +BaseSpeed|99 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Legends say it can share eternal life. It slept for a thousand years in the form of a tree before its revival.\Life Pokémon\215.0\3.0\0,148,0 +Scale|1.2 +Move|1,505 +Move|1,312 +Move|1,275 +Move|1,36 +Move|5,113 +Move|10,62 +Move|18,356 +Move|26,601 +Move|35,585 +Move|44,224 +Move|51,400 +Move|55,532 +Move|59,244 +Move|63,581 +Move|72,267 +Move|80,370 +Move|88,416 +Move|93,200 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/717.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/717.dat new file mode 100644 index 000000000..be18933dc --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/717.dat @@ -0,0 +1,55 @@ +Name|Yveltal +Number|717 +ExperienceType|3 +BaseExperience|306 +Type1|Dark +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|717 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0 +Ability1|186 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,237,241,173,63,182,203,218,231,216,94,247,104,207,214,138,197,156,213,168,211,171,13,18,36,38,68,69,99,82,102,117,143,157,161,164,337,269,332,259,263,290,285,289,355,411,406,373,421,416,432,445,399,363,365,369,468,496,507,512,555,590,15,19,560 +BaseHP|126 +BaseAttack|131 +BaseDefense|95 +BaseSpAttack|131 +BaseSpDefense|98 +BaseSpeed|99 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|When its life comes to an end, it absorbs the life energy of every living thing and turns into a cocoon once more.\Destruction Pokémon\203.0\5.8\0,148,0 +Scale|1.2 +Move|1,542 +Move|1,13 +Move|1,269 +Move|1,355 +Move|5,104 +Move|10,403 +Move|18,555 +Move|26,613 +Move|35,50 +Move|44,399 +Move|51,492 +Move|55,566 +Move|59,94 +Move|63,407 +Move|72,411 +Move|80,389 +Move|88,63 +Move|93,143 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/718.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/718.dat new file mode 100644 index 000000000..187a46404 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/718.dat @@ -0,0 +1,56 @@ +Name|Zygarde +Number|718 +ExperienceType|3 +BaseExperience|270 +Type1|Dragon +Type2|Ground +CatchRate|3 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|30855 +EggPokemon|718 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0 +Ability1|188 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,205,92,249,237,241,173,63,182,203,218,231,225,89,216,189,104,207,214,201,111,197,156,213,171,34,36,38,66,68,99,82,90,102,117,130,157,164,337,219,280,351,263,290,411,416,444,446,445,363,447,482,496,523,525,526,590,70,431,560 +TutorMoves|434 +BaseHP|108 +BaseAttack|100 +BaseDefense|121 +BaseSpAttack|81 +BaseSpDefense|95 +BaseSpeed|95 +FPHP|3 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It's hypothesized that it's monitoring those who destroy the ecosystem from deep in the cave where it lives.\Order Pokémon\305.0\5.0\0,148,0 +Scale|1.2 +Move|1,137 +Move|1,523 +Move|1,225 +Move|1,44 +Move|5,219 +Move|10,91 +Move|18,20 +Move|26,616 +Move|35,201 +Move|44,114 +Move|51,242 +Move|55,89 +Move|59,293 +Move|63,406 +Move|72,349 +Move|80,489 +Move|88,245 +Move|93,200 +TradeValue|100 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/719.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/719.dat new file mode 100644 index 000000000..d6adaa952 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/719.dat @@ -0,0 +1,54 @@ +Name|Diancie +Number|719 +ExperienceType|3 +BaseExperience|270 +Type1|Rock +Type2|Fairy +CatchRate|3 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|719 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0 +Ability1|29 +Ability2|Nothing +HiddenAbility|Nothing +Machines| +473,347,92,258,237,241,63,113,182,219,218,479,216,94,104,115,201,317,263,156,496,153,416,397,148,444,360,244,157,207,214,164,433,290,267,605,590,495,343,414,283,356,215,270,334,387,393,285,173,446,472 +BaseHP|50 +BaseAttack|100 +BaseDefense|150 +BaseSpAttack|100 +BaseSpDefense|150 +BaseSpeed|50 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A sudden transformation of Carbink, its pink, glimmering body is said to be the loveliest sight in the whole world. \Jewel Pokémon\8.8\0.7\0,148,0 +Scale|1.2 +Move|1,33 +Move|1,106 +Move|5,88 +Move|8,159 +Move|12,479 +Move|18,115 +Move|21,446 +Move|27,470 +Move|31,246 +Move|40,285 +Move|46,433 +Move|49,444 +Move|50,585 +Move|50,591 +Move|60,113 +Move|70,219 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/719_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/719_mega.dat new file mode 100644 index 000000000..21500b869 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/719_mega.dat @@ -0,0 +1,54 @@ +Name|Mega Diancie +Number|719 +ExperienceType|3 +BaseExperience|270 +Type1|Rock +Type2|Fairy +CatchRate|3 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|719 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0 +Ability1|156 +Ability2|Nothing +HiddenAbility|Nothing +Machines| +473,347,92,258,237,241,63,113,182,219,218,479,216,94,104,115,201,317,263,156,496,153,416,397,148,444,360,244,157,207,214,164,433,290,267,605,590,495,343,414,283,356,215,270,334,387,393,285,173,446,472 +BaseHP|50 +BaseAttack|160 +BaseDefense|110 +BaseSpAttack|160 +BaseSpDefense|110 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|A sudden transformation of Carbink, its pink, glimmering body is said to be the loveliest sight in the whole world. \Jewel Pokémon\27.8\1.1\0,148,0 +Scale|1.2 +Move|1,33 +Move|1,106 +Move|5,88 +Move|8,159 +Move|12,479 +Move|18,115 +Move|21,446 +Move|27,470 +Move|31,246 +Move|40,285 +Move|46,433 +Move|49,444 +Move|50,585 +Move|50,591 +Move|60,113 +Move|70,219 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/72.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/72.dat index 44f084654..0e304cfea 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/72.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/72.dat @@ -1 +1,56 @@ -{"Name":"Tentacool","Number":72,"ExperienceType":"Slow","BaseExperience":67,"Type1":"Water","Type2":"Poison","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":72,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[29,64],"HiddenAbility":44,"EggMoves":[367,62,392,145,109,114,282,243,330,229,321,219],"Machines":[174,92,237,173,59,63,196,182,240,202,203,218,216,104,207,214,188,197,156,213,168,14,36,61,55,58,99,72,102,117,130,164,352,258,219,263,290,362,371,416,445,363,398,474,482,496,503,611,605,590,15,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":40,"Def":35,"SpAtk":50,"SpDef":100,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"When the tide goes out TENTACOOL remains can be found washed up on the shore.","Species":"Jellyfish Pokémon","Height":0.9,"Weight":45.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":5,"Moves":[{"Level":1,"ID":40},{"Level":5,"ID":48},{"Level":8,"ID":132},{"Level":12,"ID":51},{"Level":15,"ID":390},{"Level":19,"ID":61},{"Level":22,"ID":35},{"Level":26,"ID":491},{"Level":29,"ID":112},{"Level":33,"ID":352},{"Level":36,"ID":398},{"Level":40,"ID":103},{"Level":43,"ID":506},{"Level":47,"ID":56},{"Level":50,"ID":482},{"Level":54,"ID":378}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":73,"Trigger":"LevelUp"}],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Tentacool +Number|72 +ExperienceType|3 +BaseExperience|67 +Type1|Water +Type2|Poison +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|72 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|29 +Ability2|64 +HiddenAbility|44 +EggMoves|367,62,392,145,109,114,282,243,330,229,321,219 +Machines|174,92,237,173,59,63,196,182,240,202,203,218,216,104,207,214,188,197,156,213,168,14,36,61,55,58,99,72,102,117,130,164,352,258,219,263,290,362,371,416,445,363,398,474,482,496,503,611,605,590,15,57,250,127,291 +BaseHP|40 +BaseAttack|40 +BaseDefense|35 +BaseSpAttack|50 +BaseSpDefense|100 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|When the tide goes out TENTACOOL remains can be found washed up on the shore.\Jellyfish Pokémon\45.5\0.9\0,148,0 +Scale|0.96 +Move|1,40 +Move|5,48 +Move|8,132 +Move|12,51 +Move|15,390 +Move|19,61 +Move|22,35 +Move|26,491 +Move|29,112 +Move|33,352 +Move|36,398 +Move|40,103 +Move|43,506 +Move|47,56 +Move|50,482 +Move|54,378 +TradeValue|5 +Item|5,81 +EvolutionCondition|73,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/720.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/720.dat new file mode 100644 index 000000000..e0a13f519 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/720.dat @@ -0,0 +1,55 @@ +Name|Hoopa +Number|720 +ExperienceType|3 +BaseExperience|270 +Type1|Psychic +Type2|Ghost +CatchRate|3 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|720 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0 +Ability1|170 +Ability2|Nothing +HiddenAbility|Nothing +Machines|174,92,192,244,237,241,173,63,182,240,203,218,87,216,94,247,104,207,214,188,201,126,129,138,197,156,213,168,171,58,99,85,100,102,115,117,118,86,149,161,164,347,258,339,269,351,53,259,263,290,285,289,411,412,451,261,318,373,421,371,416,432,445,399,363,430,433,473,474,477,482,496,521,526,555,267,590,148 +BaseHP|80 +BaseAttack|110 +BaseDefense|60 +BaseSpAttack|150 +BaseSpDefense|130 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It gathers things it likes and pushes them through its loop to teleport them to a secret place.\Mischief Pokémon\9.0\0.5\0,148,0 +Scale|1.0 +Move|1,271 +Move|1,194 +Move|1,502 +Move|1,593 +Move|1,93 +Move|6,310 +Move|10,277 +Move|15,60 +Move|19,113 +Move|25,285 +Move|29,471 +Move|35,470 +Move|46,566 +Move|50,472 +Move|55,433 +Move|68,247 +Move|75,94 +Move|85,593 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/721.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/721.dat index f985f9ee4..3239ef6da 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/721.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/721.dat @@ -1 +1,53 @@ -{"Name":"Volcanion","Number":721,"ExperienceType":"Slow","BaseExperience":270,"Type1":"Fire","Type2":"Water","CatchRate":3,"BaseFriendship":70,"EggGroup1":"None","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":721,"Devolution":0,"CanBreed":false,"IsGenderless":true,"IsMale":0,"Abilities":[11],"HiddenAbility":-1,"EggMoves":[],"Machines":[29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,76,231,225,87,89,216,91,247,189,104,207,214,188,126,111,197,156,213,7,25,34,36,38,61,55,66,69,99,82,85,90,102,117,120,121,130,153,161,164,337,352,347,339,280,351,53,263,290,315,411,362,451,406,261,421,416,444,445,399,363,430,468,473,474,479,482,488,490,496,503,510,523,525,526,528,612,590,15,70,148,431,560,99],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":110,"Def":120,"SpAtk":130,"SpDef":90,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lets out billows of steam and disappears into the dense fog. It's said to live in mountains where humans do not tread.","Species":"Steam Pokémon","Height":1.7,"Weight":195,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":120,"Moves":[{"Level":1,"ID":36},{"Level":2,"ID":394},{"Level":3,"ID":1},{"Level":8,"ID":54},{"Level":11,"ID":114},{"Level":15,"ID":488},{"Level":21,"ID":352},{"Level":28,"ID":23},{"Level":32,"ID":503},{"Level":40,"ID":311},{"Level":46,"ID":34},{"Level":50,"ID":56},{"Level":58,"ID":394},{"Level":65,"ID":315},{"Level":76,"ID":153},{"Level":85,"ID":1}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Volcanion +Number|721 +ExperienceType|3 +BaseExperience|270 +Type1|Fire +Type2|Water +CatchRate|3 +BaseFriendship|70 +EggGroup1|None +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|721 +IsGenderLess|1 +CanBreed|0 +Devolution|0 +IsMale|0 +Ability1|11 +Ability2|Nothing +HiddenAbility|Nothing +Machines|29,174,205,46,92,192,249,237,241,173,63,182,240,203,218,76,231,225,87,89,216,91,247,189,104,207,214,188,126,111,197,156,213,7,25,34,36,38,61,55,66,69,99,82,85,90,102,117,120,121,130,153,161,164,337,352,347,339,280,351,53,263,290,315,411,362,451,406,261,421,416,444,445,399,363,430,468,473,474,479,482,488,490,496,503,510,523,525,526,528,612,590,15,70,148,431,560,99 +BaseHP|80 +BaseAttack|110 +BaseDefense|120 +BaseSpAttack|130 +BaseSpDefense|90 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lets out billows of steam and disappears into the dense fog. It's said to live in mountains where humans do not tread.\Steam Pokémon\195.0\1.7\0,148,0 +Scale|1.2 +Move|1,36 +Move|1,394 +Move|1,592 +Move|8,54 +Move|11,114 +Move|15,488 +Move|21,352 +Move|28,23 +Move|32,503 +Move|40,311 +Move|46,34 +Move|50,56 +Move|58,394 +Move|65,315 +Move|76,153 +Move|85,592 +TradeValue|120 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/73.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/73.dat index 64f2f37e9..2fc3d5983 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/73.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/73.dat @@ -1 +1,59 @@ -{"Name":"Tentacruel","Number":73,"ExperienceType":"Slow","BaseExperience":180,"Type1":"Water","Type2":"Poison","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":72,"Devolution":72,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[29,64],"HiddenAbility":44,"EggMoves":[367,62,392,145,109,114,282,243,330,229,321,219],"Machines":[174,92,237,173,59,63,196,182,240,202,203,218,216,104,207,214,188,197,156,213,168,14,36,38,61,55,58,99,72,102,117,130,164,352,258,219,263,290,362,371,416,445,363,398,474,482,496,503,611,605,590,15,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":70,"Def":65,"SpAtk":80,"SpDef":120,"Speed":100},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"Its 80 tentacles absorb water and stretch almost endlessly to constrict its prey and enemies.","Species":"Jellyfish Pokémon","Height":1.6,"Weight":55,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":30,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":378},{"Level":3,"ID":40},{"Level":4,"ID":48},{"Level":5,"ID":132},{"Level":6,"ID":48},{"Level":8,"ID":132},{"Level":12,"ID":51},{"Level":15,"ID":390},{"Level":19,"ID":35},{"Level":22,"ID":61},{"Level":26,"ID":491},{"Level":29,"ID":112},{"Level":34,"ID":352},{"Level":38,"ID":398},{"Level":43,"ID":103},{"Level":47,"ID":506},{"Level":52,"ID":56},{"Level":56,"ID":482},{"Level":61,"ID":378}],"EvolutionConditions":[],"Items":[{"Id":81,"Chance":5}]} \ No newline at end of file +Name|Tentacruel +Number|73 +ExperienceType|3 +BaseExperience|180 +Type1|Water +Type2|Poison +CatchRate|60 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|72 +IsGenderLess|0 +CanBreed|1 +Devolution|72 +IsMale|50 +Ability1|29 +Ability2|64 +HiddenAbility|44 +EggMoves|367,62,392,145,109,114,282,243,330,229,321,219 +Machines|174,92,237,173,59,63,196,182,240,202,203,218,216,104,207,214,188,197,156,213,168,14,36,38,61,55,58,99,72,102,117,130,164,352,258,219,263,290,362,371,416,445,363,398,474,482,496,503,611,605,590,15,57,250,127,291 +BaseHP|80 +BaseAttack|70 +BaseDefense|65 +BaseSpAttack|80 +BaseSpDefense|120 +BaseSpeed|100 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|Its 80 tentacles absorb water and stretch almost endlessly to constrict its prey and enemies.\Jellyfish Pokémon\55\1.6\0,148,0 +Scale|1.24 +Move|1,513 +Move|1,378 +Move|1,40 +Move|1,48 +Move|1,132 +Move|5,48 +Move|8,132 +Move|12,51 +Move|15,390 +Move|19,35 +Move|22,61 +Move|26,491 +Move|29,112 +Move|34,352 +Move|38,398 +Move|43,103 +Move|47,506 +Move|52,56 +Move|56,482 +Move|61,378 +TradeValue|30 +Item|5,81 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/74.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/74.dat index e01f8bfd1..8bc6e6b7a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/74.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/74.dat @@ -1 +1,56 @@ -{"Name":"Geodude","Number":74,"ExperienceType":"MediumSlow","BaseExperience":60,"Type1":"Rock","Type2":"Ground","CatchRate":255,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":74,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[69,5],"HiddenAbility":8,"EggMoves":[475,335,174,203,175,264,359,5,431,469,157],"Machines":[223,29,174,205,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,201,126,111,197,156,213,7,5,34,36,38,66,68,69,99,90,102,117,118,120,153,157,164,264,280,53,317,263,290,374,371,416,397,444,360,446,445,363,479,496,510,523,267,612,590,70,560],"TutorMoves":[],"BaseStats":{"HP":40,"Atk":80,"Def":100,"SpAtk":30,"SpDef":30,"Speed":20},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Most people may not notice but a closer look should reveal that there are many GEODUDE around.","Species":"Rock Pokémon","Height":0.4,"Weight":20,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":10,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":111},{"Level":4,"ID":300},{"Level":8,"ID":397},{"Level":11,"ID":205},{"Level":15,"ID":222},{"Level":18,"ID":88},{"Level":22,"ID":350},{"Level":25,"ID":479},{"Level":29,"ID":120},{"Level":32,"ID":523},{"Level":36,"ID":446},{"Level":39,"ID":89},{"Level":43,"ID":153},{"Level":46,"ID":38},{"Level":50,"ID":444}],"EvolutionConditions":[{"Condition":"25","ConditionType":"Level","Evolution":75,"Trigger":"LevelUp"}],"Items":[{"Id":112,"Chance":5}]} \ No newline at end of file +Name|Geodude +Number|74 +ExperienceType|2 +BaseExperience|60 +Type1|Rock +Type2|Ground +CatchRate|255 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|74 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|69 +Ability2|5 +HiddenAbility|8 +EggMoves|475,335,174,203,175,264,359,5,431,469,157 +Machines|223,29,174,205,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,201,126,111,197,156,213,7,5,34,36,38,66,68,69,99,90,102,117,118,120,153,157,164,264,280,53,317,263,290,374,371,416,397,444,360,446,445,363,479,496,510,523,267,612,590,70,560 +BaseHP|40 +BaseAttack|80 +BaseDefense|100 +BaseSpAttack|30 +BaseSpDefense|30 +BaseSpeed|20 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Most people may not notice but a closer look should reveal that there are many GEODUDE around.\Rock Pokémon\20\0.4\0,148,0 +Scale|0.7 +Move|1,33 +Move|1,111 +Move|4,300 +Move|8,397 +Move|11,205 +Move|15,222 +Move|18,88 +Move|22,350 +Move|25,479 +Move|29,120 +Move|32,523 +Move|36,446 +Move|39,89 +Move|43,153 +Move|46,38 +Move|50,444 +TradeValue|10 +Item|5,112 +EvolutionCondition|75,Level,25,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/75.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/75.dat index bd2bf0598..6a5ed6c39 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/75.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/75.dat @@ -1 +1,58 @@ -{"Name":"Graveler","Number":75,"ExperienceType":"MediumSlow","BaseExperience":137,"Type1":"Rock","Type2":"Ground","CatchRate":120,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":74,"Devolution":74,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[69,5],"HiddenAbility":8,"EggMoves":[475,335,174,203,175,264,359,5,431,469,157],"Machines":[223,29,174,205,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,201,126,111,197,156,213,7,5,34,36,38,66,68,69,99,90,102,117,118,120,153,157,164,264,280,53,317,263,290,374,416,397,444,360,446,445,363,479,496,510,523,267,612,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":95,"Def":115,"SpAtk":45,"SpDef":45,"Speed":35},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"With a free and uncaring nature it doesn't mind if pieces break off while it rolls down mountains.","Species":"Rock Pokémon","Height":1,"Weight":105,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":25,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":111},{"Level":3,"ID":300},{"Level":4,"ID":397},{"Level":5,"ID":300},{"Level":8,"ID":397},{"Level":11,"ID":205},{"Level":15,"ID":222},{"Level":18,"ID":88},{"Level":22,"ID":350},{"Level":27,"ID":479},{"Level":31,"ID":120},{"Level":36,"ID":523},{"Level":42,"ID":446},{"Level":47,"ID":89},{"Level":53,"ID":153},{"Level":58,"ID":38},{"Level":64,"ID":444}],"EvolutionConditions":[{"Condition":"0","ConditionType":"Trade","Evolution":76,"Trigger":"Trading"}],"Items":[{"Id":112,"Chance":5}]} \ No newline at end of file +Name|Graveler +Number|75 +ExperienceType|2 +BaseExperience|137 +Type1|Rock +Type2|Ground +CatchRate|120 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|74 +IsGenderLess|0 +CanBreed|1 +Devolution|74 +IsMale|50 +Ability1|69 +Ability2|5 +HiddenAbility|8 +EggMoves|475,335,174,203,175,264,359,5,431,469,157 +Machines|223,29,174,205,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,201,126,111,197,156,213,7,5,34,36,38,66,68,69,99,90,102,117,118,120,153,157,164,264,280,53,317,263,290,374,416,397,444,360,446,445,363,479,496,510,523,267,612,590,70,431,560 +BaseHP|55 +BaseAttack|95 +BaseDefense|115 +BaseSpAttack|45 +BaseSpDefense|45 +BaseSpeed|35 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|With a free and uncaring nature it doesn't mind if pieces break off while it rolls down mountains.\Rock Pokémon\105\1\0,148,0 +Scale|1 +Move|1,33 +Move|1,111 +Move|1,300 +Move|1,397 +Move|4,300 +Move|8,397 +Move|11,205 +Move|15,222 +Move|18,88 +Move|22,350 +Move|27,479 +Move|31,120 +Move|36,523 +Move|42,446 +Move|47,89 +Move|53,153 +Move|58,38 +Move|64,444 +TradeValue|25 +Item|5,112 +EvolutionCondition|76,trade,0,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/76.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/76.dat index 2538e83d4..b982663e4 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/76.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/76.dat @@ -1 +1,58 @@ -{"Name":"Golem","Number":76,"ExperienceType":"MediumSlow","BaseExperience":218,"Type1":"Rock","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":4080,"EggPokemon":74,"Devolution":75,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[69,5],"HiddenAbility":8,"EggMoves":[475,335,174,203,175,264,359,5,431,469,157],"Machines":[223,29,174,205,46,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,201,126,111,197,156,213,7,210,5,25,34,36,38,66,68,69,99,90,102,117,118,120,153,157,164,264,280,53,317,263,290,411,374,416,397,444,360,446,445,363,479,496,510,523,267,612,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":120,"Def":130,"SpAtk":55,"SpDef":65,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":3,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It sheds its skin once a year. The discarded shell immediately hardens and crumbles away.","Species":"Megaton Pokémon","Height":1.4,"Weight":300,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":45,"Moves":[{"Level":1,"ID":484},{"Level":2,"ID":33},{"Level":3,"ID":111},{"Level":4,"ID":300},{"Level":5,"ID":397},{"Level":6,"ID":300},{"Level":8,"ID":397},{"Level":11,"ID":537},{"Level":15,"ID":222},{"Level":18,"ID":88},{"Level":22,"ID":350},{"Level":27,"ID":479},{"Level":36,"ID":523},{"Level":42,"ID":446},{"Level":47,"ID":89},{"Level":53,"ID":153},{"Level":58,"ID":38},{"Level":64,"ID":444},{"Level":69,"ID":484}],"EvolutionConditions":[],"Items":[{"Id":112,"Chance":5}]} \ No newline at end of file +Name|Golem +Number|76 +ExperienceType|2 +BaseExperience|218 +Type1|Rock +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|4080 +EggPokemon|74 +IsGenderLess|0 +CanBreed|1 +Devolution|75 +IsMale|50 +Ability1|69 +Ability2|5 +HiddenAbility|8 +EggMoves|475,335,174,203,175,264,359,5,431,469,157 +Machines|223,29,174,205,46,92,249,237,241,173,63,182,203,218,89,216,91,189,104,207,214,201,126,111,197,156,213,7,210,5,25,34,36,38,66,68,69,99,90,102,117,118,120,153,157,164,264,280,53,317,263,290,411,374,416,397,444,360,446,445,363,479,496,510,523,267,612,590,70,431,560 +BaseHP|80 +BaseAttack|120 +BaseDefense|130 +BaseSpAttack|55 +BaseSpDefense|65 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|3 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It sheds its skin once a year. The discarded shell immediately hardens and crumbles away.\Megaton Pokémon\300\1.4\0,148,0 +Scale|1.16 +Move|1,484 +Move|1,33 +Move|1,111 +Move|1,300 +Move|1,397 +Move|4,300 +Move|8,397 +Move|11,537 +Move|15,222 +Move|18,88 +Move|22,350 +Move|27,479 +Move|36,523 +Move|42,446 +Move|47,89 +Move|53,153 +Move|58,38 +Move|64,444 +Move|69,484 +TradeValue|45 +Item|5,112 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/77.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/77.dat index f01716ede..74660f298 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/77.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/77.dat @@ -1 +1,54 @@ -{"Name":"Ponyta","Number":77,"ExperienceType":"MediumFast","BaseExperience":82,"Type1":"Fire","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":77,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,18],"HiddenAbility":49,"EggMoves":[502,445,204,38,24,172,32,95,67,234,37,98],"Machines":[29,174,92,237,241,173,63,182,203,218,231,216,104,207,214,126,129,197,156,213,25,34,36,99,102,117,130,164,53,263,290,416,445,363,488,496,510,528,590,560],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":85,"Def":55,"SpAtk":65,"SpDef":65,"Speed":90},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":1},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is a weak runner immediately after birth. It gradually becomes faster by chasing after its parents.","Species":"Fire Horse Pokémon","Height":1,"Weight":30,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":15,"Moves":[{"Level":1,"ID":45},{"Level":2,"ID":33},{"Level":4,"ID":39},{"Level":9,"ID":52},{"Level":13,"ID":172},{"Level":17,"ID":23},{"Level":21,"ID":488},{"Level":25,"ID":83},{"Level":29,"ID":36},{"Level":33,"ID":517},{"Level":37,"ID":97},{"Level":41,"ID":126},{"Level":45,"ID":340},{"Level":49,"ID":394}],"EvolutionConditions":[{"Condition":"40","ConditionType":"Level","Evolution":78,"Trigger":"LevelUp"}],"Items":[{"Id":2042,"Chance":5}]} \ No newline at end of file +Name|Ponyta +Number|77 +ExperienceType|1 +BaseExperience|82 +Type1|Fire +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|77 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|50 +Ability2|18 +HiddenAbility|49 +EggMoves|502,445,204,38,24,172,32,95,67,234,37,98 +Machines|29,174,92,237,241,173,63,182,203,218,231,216,104,207,214,126,129,197,156,213,25,34,36,99,102,117,130,164,53,263,290,416,445,363,488,496,510,528,590,560 +BaseHP|50 +BaseAttack|85 +BaseDefense|55 +BaseSpAttack|65 +BaseSpDefense|65 +BaseSpeed|90 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|1 +CanFly|0 +CanSwim|0 +Pokedex|It is a weak runner immediately after birth. It gradually becomes faster by chasing after its parents.\Fire Horse Pokémon\30\1\0,148,0 +Scale|1 +Move|1,45 +Move|1,33 +Move|4,39 +Move|9,52 +Move|13,172 +Move|17,23 +Move|21,488 +Move|25,83 +Move|29,36 +Move|33,517 +Move|37,97 +Move|41,126 +Move|45,340 +Move|49,394 +TradeValue|15 +Item|5,2042 +EvolutionCondition|78,Level,40,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/78.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/78.dat index 2fb02f250..73a15c0a3 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/78.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/78.dat @@ -1 +1,59 @@ -{"Name":"Rapidash","Number":78,"ExperienceType":"MediumFast","BaseExperience":175,"Type1":"Fire","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Field","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":77,"Devolution":77,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,18],"HiddenAbility":49,"EggMoves":[502,445,204,38,24,172,32,95,67,234,37,98],"Machines":[29,174,92,237,241,173,63,182,203,218,231,216,104,207,214,126,129,197,156,213,25,32,34,36,38,99,102,117,130,164,53,263,290,416,445,363,488,496,510,528,590,560],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":100,"Def":70,"SpAtk":80,"SpDef":80,"Speed":105},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":2},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"At full gallop barely touch the ground because it moves so incredibly fast.","Species":"Fire Horse Pokémon","Height":1.7,"Weight":95,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":30,"Moves":[{"Level":1,"ID":398},{"Level":2,"ID":224},{"Level":3,"ID":45},{"Level":4,"ID":98},{"Level":5,"ID":39},{"Level":6,"ID":52},{"Level":7,"ID":39},{"Level":9,"ID":52},{"Level":13,"ID":172},{"Level":17,"ID":23},{"Level":21,"ID":488},{"Level":25,"ID":83},{"Level":29,"ID":36},{"Level":33,"ID":517},{"Level":37,"ID":97},{"Level":40,"ID":31},{"Level":41,"ID":126},{"Level":45,"ID":340},{"Level":49,"ID":394},{"Level":55,"ID":245}],"EvolutionConditions":[],"Items":[{"Id":2042,"Chance":5}]} \ No newline at end of file +Name|Rapidash +Number|78 +ExperienceType|1 +BaseExperience|175 +Type1|Fire +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Field +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|77 +IsGenderLess|0 +CanBreed|1 +Devolution|77 +IsMale|50 +Ability1|50 +Ability2|18 +HiddenAbility|49 +EggMoves|502,445,204,38,24,172,32,95,67,234,37,98 +Machines|29,174,92,237,241,173,63,182,203,218,231,216,104,207,214,126,129,197,156,213,25,32,34,36,38,99,102,117,130,164,53,263,290,416,445,363,488,496,510,528,590,560 +BaseHP|65 +BaseAttack|100 +BaseDefense|70 +BaseSpAttack|80 +BaseSpDefense|80 +BaseSpeed|105 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|2 +CanFly|0 +CanSwim|0 +Pokedex|At full gallop barely touch the ground because it moves so incredibly fast.\Fire Horse Pokémon\95\1.7\0,148,0 +Scale|1.28 +Move|1,398 +Move|1,224 +Move|1,45 +Move|1,98 +Move|1,39 +Move|1,52 +Move|4,39 +Move|9,52 +Move|13,172 +Move|17,23 +Move|21,488 +Move|25,83 +Move|29,36 +Move|33,517 +Move|37,97 +Move|40,31 +Move|41,126 +Move|45,340 +Move|49,394 +Move|55,245 +TradeValue|30 +Item|5,2042 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/79.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/79.dat index 3ff31fe01..1beffb53a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/79.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/79.dat @@ -1 +1,57 @@ -{"Name":"Slowpoke","Number":79,"ExperienceType":"MediumFast","BaseExperience":63,"Type1":"Water","Type2":"Psychic","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":79,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[12,20],"HiddenAbility":144,"EggMoves":[562,187,335,248,382,300,214,173,23,472,428,219],"Machines":[29,174,92,192,244,237,241,173,59,63,196,182,240,203,218,231,89,216,91,94,247,189,104,207,214,129,138,197,156,213,171,34,36,61,55,58,6,99,90,100,102,117,130,86,149,161,164,352,347,258,113,219,53,263,290,285,362,278,416,445,363,447,433,473,477,496,497,503,510,523,590,57,70,148,250,291],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":65,"Def":65,"SpAtk":40,"SpDef":40,"Speed":15},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It lazes vacantly near water. If something bites its tail, it won't even notice for a whole day.","Species":"Dopey Pokémon","Height":1.2,"Weight":36,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":15,"Moves":[{"Level":1,"ID":174},{"Level":2,"ID":281},{"Level":3,"ID":33},{"Level":5,"ID":45},{"Level":9,"ID":55},{"Level":14,"ID":93},{"Level":19,"ID":1},{"Level":23,"ID":29},{"Level":28,"ID":352},{"Level":32,"ID":428},{"Level":36,"ID":303},{"Level":41,"ID":133},{"Level":45,"ID":94},{"Level":49,"ID":240},{"Level":54,"ID":244},{"Level":58,"ID":505}],"EvolutionConditions":[{"Condition":"37","ConditionType":"Level","Evolution":80,"Trigger":"LevelUp"},{"Condition":"82","ConditionType":"HoldItem","Evolution":199,"Trigger":"Trading"}],"Items":[{"Id":142,"Chance":5}]} \ No newline at end of file +Name|Slowpoke +Number|79 +ExperienceType|1 +BaseExperience|63 +Type1|Water +Type2|Psychic +CatchRate|190 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|79 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|12 +Ability2|20 +HiddenAbility|144 +EggMoves|562,187,335,248,382,300,214,173,23,472,428,219 +Machines|29,174,92,192,244,237,241,173,59,63,196,182,240,203,218,231,89,216,91,94,247,189,104,207,214,129,138,197,156,213,171,34,36,61,55,58,6,99,90,100,102,117,130,86,149,161,164,352,347,258,113,219,53,263,290,285,362,278,416,445,363,447,433,473,477,496,497,503,510,523,590,57,70,148,250,291 +BaseHP|90 +BaseAttack|65 +BaseDefense|65 +BaseSpAttack|40 +BaseSpDefense|40 +BaseSpeed|15 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It lazes vacantly near water. If something bites its tail, it won't even notice for a whole day.\Dopey Pokémon\36\1.2\0,148,0 +Scale|1.08 +Move|1,174 +Move|1,281 +Move|1,33 +Move|5,45 +Move|9,55 +Move|14,93 +Move|19,50 +Move|23,29 +Move|28,352 +Move|32,428 +Move|36,303 +Move|41,133 +Move|45,94 +Move|49,240 +Move|54,244 +Move|58,505 +TradeValue|15 +Item|5,142 +EvolutionCondition|80,Level,37,Level +EvolutionCondition|199,holditem,82,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/8.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/8.dat index e4318bbad..50edf5082 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/8.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/8.dat @@ -1 +1,53 @@ -{"Name":"Wartortle","Number":8,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":7,"Devolution":7,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":44,"EggMoves":[453,392,396,362,406,252,175,193,114,243,54,300,330,287,323,281],"Machines":[223,29,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,61,55,58,66,68,69,99,102,117,130,164,264,352,258,280,317,263,290,362,374,416,360,445,363,496,503,612,590,57,70,250,127,291],"TutorMoves":[],"BaseStats":{"HP":59,"Atk":63,"Def":80,"SpAtk":65,"SpDef":80,"Speed":58},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It is a well-established symbol of longevity. If its shell has algae on it, that WARTORTLE is very old.","Species":"Turtle Pokémon","Height":1,"Weight":22.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":60,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":39},{"Level":3,"ID":55},{"Level":4,"ID":39},{"Level":7,"ID":55},{"Level":10,"ID":110},{"Level":13,"ID":145},{"Level":16,"ID":44},{"Level":20,"ID":229},{"Level":24,"ID":182},{"Level":28,"ID":352},{"Level":32,"ID":401},{"Level":36,"ID":130},{"Level":40,"ID":334},{"Level":44,"ID":240},{"Level":48,"ID":56}],"EvolutionConditions":[{"Condition":"36","ConditionType":"Level","Evolution":9,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Wartortle +Number|8 +ExperienceType|2 +BaseExperience|142 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|7 +IsGenderLess|0 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|44 +EggMoves|453,392,396,362,406,252,175,193,114,243,54,300,330,287,323,281 +Machines|223,29,174,205,92,249,237,173,59,63,196,182,240,203,218,231,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,61,55,58,66,68,69,99,102,117,130,164,264,352,258,280,317,263,290,362,374,416,360,445,363,496,503,612,590,57,70,250,127,291 +BaseHP|59 +BaseAttack|63 +BaseDefense|80 +BaseSpAttack|65 +BaseSpDefense|80 +BaseSpeed|58 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It is a well-established symbol of longevity. If its shell has algae on it, that WARTORTLE is very old.\Turtle Pokémon\22.5\1\0,148,0 +Scale|1 +Move|1,33 +Move|1,39 +Move|1,55 +Move|4,39 +Move|7,55 +Move|10,110 +Move|13,145 +Move|16,44 +Move|20,229 +Move|24,182 +Move|28,352 +Move|32,401 +Move|36,130 +Move|40,334 +Move|44,240 +Move|48,56 +EvolutionCondition|9,Level,36,Level +TradeValue|60 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/80.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/80.dat index 2ce9af00d..754a37a39 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/80.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/80.dat @@ -1 +1,58 @@ -{"Name":"Slowbro","Number":80,"ExperienceType":"MediumFast","BaseExperience":172,"Type1":"Water","Type2":"Psychic","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":79,"Devolution":79,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[12,20],"HiddenAbility":144,"EggMoves":[562,187,335,248,382,300,214,173,23,472,428,219],"Machines":[223,29,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,231,89,216,91,94,247,189,104,8,207,214,129,138,197,156,213,210,171,5,34,36,38,61,55,58,6,66,68,69,99,90,100,102,117,130,86,149,161,164,264,352,347,258,113,219,280,53,332,263,290,285,411,362,374,409,278,416,419,445,363,447,433,473,477,496,497,503,510,523,590,57,70,148,250,291],"TutorMoves":[],"BaseStats":{"HP":95,"Atk":75,"Def":110,"SpAtk":100,"SpDef":80,"Speed":30},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If the tail-biting SHELLDER is thrown off in a harsh battle, it reverts to being an ordinary SLOWPOKE.","Species":"Hermit Crab Pokémon","Height":1.6,"Weight":78.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":30,"Moves":[{"Level":1,"ID":505},{"Level":2,"ID":174},{"Level":3,"ID":281},{"Level":4,"ID":33},{"Level":5,"ID":45},{"Level":6,"ID":45},{"Level":9,"ID":55},{"Level":14,"ID":93},{"Level":19,"ID":1},{"Level":23,"ID":29},{"Level":28,"ID":352},{"Level":32,"ID":428},{"Level":36,"ID":303},{"Level":37,"ID":110},{"Level":43,"ID":133},{"Level":49,"ID":94},{"Level":55,"ID":240},{"Level":62,"ID":244},{"Level":68,"ID":505}],"EvolutionConditions":[],"Items":[{"Id":82,"Chance":5}]} \ No newline at end of file +Name|Slowbro +Number|80 +ExperienceType|1 +BaseExperience|172 +Type1|Water +Type2|Psychic +CatchRate|75 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|79 +IsGenderLess|0 +CanBreed|1 +Devolution|79 +IsMale|50 +Ability1|12 +Ability2|20 +HiddenAbility|144 +EggMoves|562,187,335,248,382,300,214,173,23,472,428,219 +Machines|223,29,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,231,89,216,91,94,247,189,104,8,207,214,129,138,197,156,213,210,171,5,34,36,38,61,55,58,6,66,68,69,99,90,100,102,117,130,86,149,161,164,264,352,347,258,113,219,280,53,332,263,290,285,411,362,374,409,278,416,419,445,363,447,433,473,477,496,497,503,510,523,590,57,70,148,250,291 +BaseHP|95 +BaseAttack|75 +BaseDefense|110 +BaseSpAttack|100 +BaseSpDefense|80 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If the tail-biting SHELLDER is thrown off in a harsh battle, it reverts to being an ordinary SLOWPOKE.\Hermit Crab Pokémon\78.5\1.6\0,148,0 +Scale|1.24 +Move|1,505 +Move|1,174 +Move|1,281 +Move|1,33 +Move|1,45 +Move|5,45 +Move|9,55 +Move|14,93 +Move|19,50 +Move|23,29 +Move|28,352 +Move|32,428 +Move|36,303 +Move|37,110 +Move|43,133 +Move|49,94 +Move|55,240 +Move|62,244 +Move|68,505 +TradeValue|30 +Item|5,82 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/80_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/80_mega.dat new file mode 100644 index 000000000..c64454a85 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/80_mega.dat @@ -0,0 +1,58 @@ +Name|Mega Slowbro +Number|80 +ExperienceType|1 +BaseExperience|172 +Type1|Water +Type2|Psychic +CatchRate|75 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|79 +IsGenderLess|0 +CanBreed|1 +Devolution|79 +IsMale|50 +Ability1|75 +Ability2|Nothing +HiddenAbility|75 +EggMoves|562,187,335,248,382,300,214,173,23,472,428,219 +Machines|223,29,174,92,192,249,244,237,241,173,59,63,196,182,240,203,218,231,89,216,91,94,247,189,104,8,207,214,129,138,197,156,213,210,171,5,34,36,38,61,55,58,6,66,68,69,99,90,100,102,117,130,86,149,161,164,264,352,347,258,113,219,280,53,332,263,290,285,411,362,374,409,278,416,419,445,363,447,433,473,477,496,497,503,510,523,590,57,70,148,250,291 +BaseHP|95 +BaseAttack|75 +BaseDefense|180 +BaseSpAttack|130 +BaseSpDefense|80 +BaseSpeed|30 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If the tail-biting SHELLDER is thrown off in a harsh battle, it reverts to being an ordinary SLOWPOKE.\Hermit Crab Pokémon\120\2\0,148,0 +Scale|1.4 +Move|1,505 +Move|1,174 +Move|1,281 +Move|1,33 +Move|1,45 +Move|5,45 +Move|9,55 +Move|14,93 +Move|19,50 +Move|23,29 +Move|28,352 +Move|32,428 +Move|36,303 +Move|37,110 +Move|43,133 +Move|49,94 +Move|55,240 +Move|62,244 +Move|68,505 +TradeValue|30 +Item|5,82 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/81.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/81.dat index 136e36d30..d4b248c74 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/81.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/81.dat @@ -1 +1,56 @@ -{"Name":"Magnemite","Number":81,"ExperienceType":"MediumFast","BaseExperience":65,"Type1":"Electric","Type2":"Steel","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":81,"Devolution":0,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[42,5],"HiddenAbility":148,"EggMoves":[],"Machines":[174,205,92,192,244,237,241,173,63,182,240,203,218,87,216,104,207,214,129,197,156,213,36,99,85,100,102,115,117,86,153,164,113,351,263,290,451,278,416,360,445,363,430,496,521,528,590,148],"TutorMoves":[],"BaseStats":{"HP":25,"Atk":35,"Def":70,"SpAtk":95,"SpDef":55,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"It is attracted by electromagnetic waves. It may approach Trainers if they are using their Pokégear.","Species":"Magnet Pokémon","Height":0.3,"Weight":6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":33},{"Level":4,"ID":48},{"Level":7,"ID":84},{"Level":11,"ID":49},{"Level":15,"ID":86},{"Level":18,"ID":443},{"Level":21,"ID":209},{"Level":25,"ID":429},{"Level":29,"ID":319},{"Level":32,"ID":486},{"Level":35,"ID":430},{"Level":39,"ID":103},{"Level":43,"ID":435},{"Level":46,"ID":199},{"Level":49,"ID":1},{"Level":53,"ID":360},{"Level":57,"ID":192}],"EvolutionConditions":[{"Condition":"30","ConditionType":"Level","Evolution":82,"Trigger":"LevelUp"}],"Items":[{"Id":143,"Chance":5}]} \ No newline at end of file +Name|Magnemite +Number|81 +ExperienceType|1 +BaseExperience|65 +Type1|Electric +Type2|Steel +CatchRate|190 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|81 +IsGenderLess|1 +CanBreed|1 +Devolution|0 +IsMale|0.0 +Ability1|42 +Ability2|5 +HiddenAbility|148 +Machines|174,205,92,192,244,237,241,173,63,182,240,203,218,87,216,104,207,214,129,197,156,213,36,99,85,100,102,115,117,86,153,164,113,351,263,290,451,278,416,360,445,363,430,496,521,528,590,148 +BaseHP|25 +BaseAttack|35 +BaseDefense|70 +BaseSpAttack|95 +BaseSpDefense|55 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|It is attracted by electromagnetic waves. It may approach Trainers if they are using their Pokégear.\Magnet Pokémon\6\0.3\0,148,0 +Scale|0.7 +Move|1,33 +Move|4,48 +Move|7,84 +Move|11,49 +Move|15,86 +Move|18,443 +Move|21,209 +Move|25,429 +Move|29,319 +Move|32,486 +Move|35,430 +Move|39,103 +Move|43,435 +Move|46,199 +Move|49,393 +Move|53,360 +Move|57,192 +TradeValue|15 +Item|5,143 +EvolutionCondition|82,Level,30,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/82.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/82.dat index b31d85b05..d67c40543 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/82.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/82.dat @@ -1 +1,61 @@ -{"Name":"Magneton","Number":82,"ExperienceType":"MediumFast","BaseExperience":163,"Type1":"Electric","Type2":"Steel","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":81,"Devolution":81,"CanBreed":true,"IsGenderless":true,"IsMale":0.0,"Abilities":[42,5],"HiddenAbility":148,"EggMoves":[],"Machines":[174,205,92,192,244,237,241,173,63,182,240,203,218,87,216,104,207,214,129,197,156,213,36,38,99,85,100,102,115,117,86,153,164,113,351,263,290,451,278,416,360,445,363,430,496,521,528,590,148,560],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":60,"Def":95,"SpAtk":120,"SpDef":70,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"Three MAGNEMITE are linked by a strong magnetic force. Earaches will occur if you get too close.","Species":"Magnet Pokémon","Height":1,"Weight":60,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":25,"Moves":[{"Level":1,"ID":192},{"Level":2,"ID":161},{"Level":3,"ID":33},{"Level":4,"ID":48},{"Level":5,"ID":84},{"Level":6,"ID":49},{"Level":7,"ID":48},{"Level":8,"ID":84},{"Level":11,"ID":1},{"Level":15,"ID":86},{"Level":18,"ID":443},{"Level":21,"ID":209},{"Level":25,"ID":429},{"Level":29,"ID":319},{"Level":34,"ID":486},{"Level":39,"ID":430},{"Level":45,"ID":103},{"Level":51,"ID":435},{"Level":56,"ID":199},{"Level":62,"ID":1},{"Level":67,"ID":360},{"Level":73,"ID":192}],"EvolutionConditions":[{"Condition":"Mt. Mortar","ConditionType":"Place","Evolution":462,"Trigger":"LevelUp"}],"Items":[{"Id":143,"Chance":5}]} \ No newline at end of file +Name|Magneton +Number|82 +ExperienceType|1 +BaseExperience|163 +Type1|Electric +Type2|Steel +CatchRate|60 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|81 +IsGenderLess|1 +CanBreed|1 +Devolution|81 +IsMale|0.0 +Ability1|42 +Ability2|5 +HiddenAbility|148 +Machines|174,205,92,192,244,237,241,173,63,182,240,203,218,87,216,104,207,214,129,197,156,213,36,38,99,85,100,102,115,117,86,153,164,113,351,263,290,451,278,416,360,445,363,430,496,521,528,590,148,560 +BaseHP|50 +BaseAttack|60 +BaseDefense|95 +BaseSpAttack|120 +BaseSpDefense|70 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|Three MAGNEMITE are linked by a strong magnetic force. Earaches will occur if you get too close.\Magnet Pokémon\60\1\0,148,0 +Scale|1 +Move|1,192 +Move|1,161 +Move|1,33 +Move|1,48 +Move|1,84 +Move|1,49 +Move|4,48 +Move|7,84 +Move|11,604 +Move|15,86 +Move|18,443 +Move|21,209 +Move|25,429 +Move|29,319 +Move|34,486 +Move|39,430 +Move|45,103 +Move|51,435 +Move|56,199 +Move|62,393 +Move|67,360 +Move|73,192 +TradeValue|25 +Item|5,143 +EvolutionCondition|462,location,Mt. Mortar,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/83.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/83.dat index 97cb6bcd1..c445597d6 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/83.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/83.dat @@ -1 +1,58 @@ -{"Name":"Farfetch'd","Number":83,"ExperienceType":"MediumFast","BaseExperience":123,"Type1":"Normal","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":83,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[51,39],"HiddenAbility":128,"EggMoves":[343,174,297,193,16,348,189,400,98,279,355,493,211,376,175,119],"Machines":[29,174,92,244,237,241,173,63,182,203,218,231,216,189,104,207,214,129,197,156,213,168,211,13,14,18,34,36,99,102,117,130,143,164,332,263,290,355,206,416,432,445,363,398,365,369,496,512,526,590,15,19],"TutorMoves":[],"BaseStats":{"HP":52,"Atk":65,"Def":55,"SpAtk":58,"SpDef":62,"Speed":60},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If anyone tries to disturb where the essential plant stalks grow, it uses its own stalk to thwart them.","Species":"Wild Duck Pokémon","Height":0.8,"Weight":15,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.92,"Y":0.92,"Z":0.92},"TradeValue":35,"Moves":[{"Level":1,"ID":413},{"Level":2,"ID":398},{"Level":3,"ID":64},{"Level":4,"ID":28},{"Level":5,"ID":43},{"Level":6,"ID":210},{"Level":7,"ID":31},{"Level":9,"ID":332},{"Level":13,"ID":282},{"Level":19,"ID":163},{"Level":21,"ID":314},{"Level":25,"ID":14},{"Level":31,"ID":97},{"Level":33,"ID":400},{"Level":37,"ID":512},{"Level":43,"ID":364},{"Level":45,"ID":206},{"Level":49,"ID":403},{"Level":55,"ID":413}],"EvolutionConditions":[],"Items":[{"Id":105,"Chance":5}]} \ No newline at end of file +Name|Farfetch'd +Number|83 +ExperienceType|1 +BaseExperience|123 +Type1|Normal +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|83 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|51 +Ability2|39 +HiddenAbility|128 +EggMoves|343,174,297,193,16,348,189,400,98,279,355,493,211,376,175,119 +Machines|29,174,92,244,237,241,173,63,182,203,218,231,216,189,104,207,214,129,197,156,213,168,211,13,14,18,34,36,99,102,117,130,143,164,332,263,290,355,206,416,432,445,363,398,365,369,496,512,526,590,15,19 +BaseHP|52 +BaseAttack|65 +BaseDefense|55 +BaseSpAttack|58 +BaseSpDefense|62 +BaseSpeed|60 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If anyone tries to disturb where the essential plant stalks grow, it uses its own stalk to thwart them.\Wild Duck Pokémon\15\0.8\0,148,0 +Scale|0.92 +Move|1,413 +Move|1,398 +Move|1,64 +Move|1,28 +Move|1,43 +Move|1,210 +Move|7,31 +Move|9,332 +Move|13,282 +Move|19,163 +Move|21,314 +Move|25,14 +Move|31,97 +Move|33,400 +Move|37,512 +Move|43,364 +Move|45,206 +Move|49,403 +Move|55,413 +TradeValue|35 +Item|5,105 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/84.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/84.dat index b7a7073a3..a014e6f86 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/84.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/84.dat @@ -1 +1,53 @@ -{"Name":"Doduo","Number":84,"ExperienceType":"MediumFast","BaseExperience":62,"Type1":"Normal","Type2":"Flying","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":84,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,48],"HiddenAbility":77,"EggMoves":[372,413,283,185,175,114,119,363,98,48],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,18,25,34,36,99,102,117,130,143,161,164,263,290,355,416,445,363,365,496,497,526,590,19,560],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":85,"Def":45,"SpAtk":35,"SpDef":35,"Speed":75},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"By alternately raising and lowering its two heads, it balances itself to be more stable while running.","Species":"Twin Bird Pokémon","Height":1.4,"Weight":39.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.16,"Y":1.16,"Z":1.16},"TradeValue":20,"Moves":[{"Level":1,"ID":64},{"Level":2,"ID":45},{"Level":5,"ID":98},{"Level":10,"ID":99},{"Level":14,"ID":31},{"Level":19,"ID":228},{"Level":23,"ID":253},{"Level":28,"ID":367},{"Level":32,"ID":458},{"Level":37,"ID":97},{"Level":41,"ID":65},{"Level":46,"ID":283},{"Level":50,"ID":37}],"EvolutionConditions":[{"Condition":"31","ConditionType":"Level","Evolution":85,"Trigger":"LevelUp"}],"Items":[{"Id":77,"Chance":5}]} \ No newline at end of file +Name|Doduo +Number|84 +ExperienceType|1 +BaseExperience|62 +Type1|Normal +Type2|Flying +CatchRate|190 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|84 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|50 +Ability2|48 +HiddenAbility|77 +EggMoves|372,413,283,185,175,114,119,363,98,48 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,18,25,34,36,99,102,117,130,143,161,164,263,290,355,416,445,363,365,496,497,526,590,19,560 +BaseHP|35 +BaseAttack|85 +BaseDefense|45 +BaseSpAttack|35 +BaseSpDefense|35 +BaseSpeed|75 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|By alternately raising and lowering its two heads, it balances itself to be more stable while running.\Twin Bird Pokémon\39.2\1.4\0,148,0 +Scale|1.16 +Move|1,64 +Move|1,45 +Move|5,98 +Move|10,99 +Move|14,31 +Move|19,228 +Move|23,253 +Move|28,367 +Move|32,458 +Move|37,97 +Move|41,65 +Move|46,283 +Move|50,37 +TradeValue|20 +Item|5,77 +EvolutionCondition|85,Level,31,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/85.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/85.dat index 7beb67baf..c2c5a18f7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/85.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/85.dat @@ -1 +1,55 @@ -{"Name":"Dodrio","Number":85,"ExperienceType":"MediumFast","BaseExperience":161,"Type1":"Normal","Type2":"Flying","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Flying","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":84,"Devolution":84,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[50,48],"HiddenAbility":77,"EggMoves":[372,413,283,185,175,114,119,363,98,48],"Machines":[174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,18,25,34,36,38,99,102,117,130,143,161,164,269,332,259,263,290,355,371,416,445,363,365,496,497,526,590,19,560],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":110,"Def":70,"SpAtk":60,"SpDef":60,"Speed":100},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It collects data and plans three times as wisely, but it may think too much and fall into a state of immobility.","Species":"Triple Bird Pokémon","Height":1.8,"Weight":85.2,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.32,"Y":1.32,"Z":1.32},"TradeValue":35,"Moves":[{"Level":1,"ID":365},{"Level":2,"ID":64},{"Level":3,"ID":45},{"Level":4,"ID":98},{"Level":5,"ID":99},{"Level":6,"ID":98},{"Level":10,"ID":99},{"Level":14,"ID":31},{"Level":19,"ID":228},{"Level":23,"ID":253},{"Level":28,"ID":367},{"Level":34,"ID":161},{"Level":41,"ID":97},{"Level":47,"ID":65},{"Level":54,"ID":283},{"Level":60,"ID":37}],"EvolutionConditions":[],"Items":[{"Id":77,"Chance":5}]} \ No newline at end of file +Name|Dodrio +Number|85 +ExperienceType|1 +BaseExperience|161 +Type1|Normal +Type2|Flying +CatchRate|45 +BaseFriendship|70 +EggGroup1|Flying +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|84 +IsGenderLess|0 +CanBreed|1 +Devolution|84 +IsMale|50 +Ability1|50 +Ability2|48 +HiddenAbility|77 +EggMoves|372,413,283,185,175,114,119,363,98,48 +Machines|174,92,237,241,173,63,182,203,218,216,189,104,207,214,129,197,156,213,168,211,18,25,34,36,38,99,102,117,130,143,161,164,269,332,259,263,290,355,371,416,445,363,365,496,497,526,590,19,560 +BaseHP|60 +BaseAttack|110 +BaseDefense|70 +BaseSpAttack|60 +BaseSpDefense|60 +BaseSpeed|100 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It collects data and plans three times as wisely, but it may think too much and fall into a state of immobility.\Triple Bird Pokémon\85.2\1.8\0,148,0 +Scale|1.32 +Move|1,365 +Move|1,64 +Move|1,45 +Move|1,98 +Move|1,99 +Move|5,98 +Move|10,99 +Move|14,31 +Move|19,228 +Move|23,253 +Move|28,367 +Move|34,161 +Move|41,97 +Move|47,65 +Move|54,283 +Move|60,37 +TradeValue|35 +Item|5,77 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/86.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/86.dat index 5a6cbe906..e04299d29 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/86.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/86.dat @@ -1 +1,56 @@ -{"Name":"Seel","Number":86,"ExperienceType":"MediumFast","BaseExperience":65,"Type1":"Water","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":86,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[47,93],"HiddenAbility":115,"EggMoves":[562,50,227,252,494,32,333,231,122,195,324,21,214,255,254,256,352,64],"Machines":[29,174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,197,156,213,32,34,36,61,55,58,6,99,102,117,130,164,352,263,290,362,416,445,363,496,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":65,"Atk":45,"Def":55,"SpAtk":45,"SpDef":70,"Speed":45},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Although it can't walk well on land, it is a graceful swimmer. It especially loves being in frigid seas.","Species":"Sea Lion Pokémon","Height":1.1,"Weight":90,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.04,"Y":1.04,"Z":1.04},"TradeValue":20,"Moves":[{"Level":1,"ID":29},{"Level":3,"ID":45},{"Level":7,"ID":346},{"Level":11,"ID":196},{"Level":13,"ID":227},{"Level":17,"ID":420},{"Level":21,"ID":156},{"Level":23,"ID":392},{"Level":27,"ID":62},{"Level":31,"ID":453},{"Level":33,"ID":362},{"Level":37,"ID":36},{"Level":41,"ID":291},{"Level":43,"ID":401},{"Level":47,"ID":58},{"Level":51,"ID":219},{"Level":53,"ID":258}],"EvolutionConditions":[{"Condition":"34","ConditionType":"Level","Evolution":87,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Seel +Number|86 +ExperienceType|1 +BaseExperience|65 +Type1|Water +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|86 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|47 +Ability2|93 +HiddenAbility|115 +EggMoves|562,50,227,252,494,32,333,231,122,195,324,21,214,255,254,256,352,64 +Machines|29,174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,197,156,213,32,34,36,61,55,58,6,99,102,117,130,164,352,263,290,362,416,445,363,496,590,57,250,127,291 +BaseHP|65 +BaseAttack|45 +BaseDefense|55 +BaseSpAttack|45 +BaseSpDefense|70 +BaseSpeed|45 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Although it can't walk well on land, it is a graceful swimmer. It especially loves being in frigid seas.\Sea Lion Pokémon\90\1.1\0,148,0 +Scale|1.04 +Move|1,29 +Move|3,45 +Move|7,346 +Move|11,196 +Move|13,227 +Move|17,420 +Move|21,156 +Move|23,392 +Move|27,62 +Move|31,453 +Move|33,362 +Move|37,36 +Move|41,291 +Move|43,401 +Move|47,58 +Move|51,219 +Move|53,258 +TradeValue|20 +EvolutionCondition|87,Level,34,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/87.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/87.dat index 51e488497..24b22ebe7 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/87.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/87.dat @@ -1 +1,59 @@ -{"Name":"Dewgong","Number":87,"ExperienceType":"MediumFast","BaseExperience":166,"Type1":"Water","Type2":"Ice","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Water1","EggGroup2":"Field","BaseEggSteps":5355,"EggPokemon":86,"Devolution":86,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[47,93],"HiddenAbility":115,"EggMoves":[562,50,227,252,494,32,333,231,122,195,324,21,214,255,254,256,352,64],"Machines":[29,174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,197,156,213,32,34,36,38,61,55,58,6,99,102,117,130,164,352,263,290,362,416,419,445,363,496,524,590,57,250,127,291],"TutorMoves":[],"BaseStats":{"HP":90,"Atk":70,"Def":80,"SpAtk":70,"SpDef":95,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"Its streamlined body has little drag in water. The colder the temperature, the friskier it gets.","Species":"Sea Lion Pokémon","Height":1.7,"Weight":120,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.28,"Y":1.28,"Z":1.28},"TradeValue":35,"Moves":[{"Level":1,"ID":29},{"Level":2,"ID":45},{"Level":3,"ID":324},{"Level":4,"ID":196},{"Level":5,"ID":45},{"Level":7,"ID":324},{"Level":11,"ID":196},{"Level":13,"ID":227},{"Level":17,"ID":420},{"Level":21,"ID":156},{"Level":23,"ID":392},{"Level":27,"ID":62},{"Level":31,"ID":453},{"Level":33,"ID":362},{"Level":34,"ID":329},{"Level":39,"ID":36},{"Level":45,"ID":291},{"Level":49,"ID":401},{"Level":55,"ID":58},{"Level":61,"ID":219},{"Level":65,"ID":258}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Dewgong +Number|87 +ExperienceType|1 +BaseExperience|166 +Type1|Water +Type2|Ice +CatchRate|75 +BaseFriendship|70 +EggGroup1|Water1 +EggGroup2|Field +BaseEggSteps|5355 +EggPokemon|86 +IsGenderLess|0 +CanBreed|1 +Devolution|86 +IsMale|50 +Ability1|47 +Ability2|93 +HiddenAbility|115 +EggMoves|562,50,227,252,494,32,333,231,122,195,324,21,214,255,254,256,352,64 +Machines|29,174,92,237,173,59,63,196,182,240,203,218,216,104,207,214,197,156,213,32,34,36,38,61,55,58,6,99,102,117,130,164,352,263,290,362,416,419,445,363,496,524,590,57,250,127,291 +BaseHP|90 +BaseAttack|70 +BaseDefense|80 +BaseSpAttack|70 +BaseSpDefense|95 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|Its streamlined body has little drag in water. The colder the temperature, the friskier it gets.\Sea Lion Pokémon\120\1.7\0,148,0 +Scale|1.28 +Move|1,29 +Move|1,45 +Move|1,324 +Move|1,196 +Move|3,45 +Move|7,324 +Move|11,196 +Move|13,227 +Move|17,420 +Move|21,156 +Move|23,392 +Move|27,62 +Move|31,453 +Move|33,362 +Move|34,329 +Move|39,36 +Move|45,291 +Move|49,401 +Move|55,58 +Move|61,219 +Move|65,258 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/88.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/88.dat index b6e298695..e0c61698b 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/88.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/88.dat @@ -1 +1,56 @@ -{"Name":"Grimer","Number":88,"ExperienceType":"MediumFast","BaseExperience":65,"Type1":"Poison","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":88,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[1,60],"HiddenAbility":143,"EggMoves":[491,174,114,286,122,212,184,325,425,255,254,256,153],"Machines":[223,174,92,192,237,241,173,63,182,240,202,203,218,216,189,104,8,207,214,188,126,9,197,156,213,7,34,99,72,102,117,120,164,351,263,290,416,445,363,474,482,496,611,612,590],"TutorMoves":[],"BaseStats":{"HP":80,"Atk":80,"Def":50,"SpAtk":40,"SpDef":50,"Speed":25},"RewardEV":{"HP":1,"Atk":0,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"As it moves from which new GRIMER emerge. This worsens the stench around it.","Species":"Sludge Pokémon","Height":0.9,"Weight":30,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.96,"Y":0.96,"Z":0.96},"TradeValue":15,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":139},{"Level":4,"ID":106},{"Level":7,"ID":189},{"Level":12,"ID":1},{"Level":15,"ID":124},{"Level":18,"ID":107},{"Level":21,"ID":426},{"Level":26,"ID":188},{"Level":29,"ID":374},{"Level":32,"ID":103},{"Level":37,"ID":482},{"Level":40,"ID":151},{"Level":43,"ID":441},{"Level":46,"ID":1},{"Level":48,"ID":262}],"EvolutionConditions":[{"Condition":"38","ConditionType":"Level","Evolution":89,"Trigger":"LevelUp"}],"Items":[{"Id":36,"Chance":5}]} \ No newline at end of file +Name|Grimer +Number|88 +ExperienceType|1 +BaseExperience|65 +Type1|Poison +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|88 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|1 +Ability2|60 +HiddenAbility|143 +EggMoves|491,174,114,286,122,212,184,325,425,255,254,256,153 +Machines|223,174,92,192,237,241,173,63,182,240,202,203,218,216,189,104,8,207,214,188,126,9,197,156,213,7,34,99,72,102,117,120,164,351,263,290,416,445,363,474,482,496,611,612,590 +BaseHP|80 +BaseAttack|80 +BaseDefense|50 +BaseSpAttack|40 +BaseSpDefense|50 +BaseSpeed|25 +FPHP|1 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|As it moves from which new GRIMER emerge. This worsens the stench around it.\Sludge Pokémon\30\0.9\0,148,0 +Scale|0.96 +Move|1,1 +Move|1,139 +Move|4,106 +Move|7,189 +Move|12,50 +Move|15,124 +Move|18,107 +Move|21,426 +Move|26,188 +Move|29,374 +Move|32,103 +Move|37,482 +Move|40,151 +Move|43,441 +Move|46,562 +Move|48,262 +TradeValue|15 +Item|5,36 +EvolutionCondition|89,Level,38,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/89.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/89.dat index b1d252d55..9f7dbd536 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/89.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/89.dat @@ -1 +1,57 @@ -{"Name":"Muk","Number":89,"ExperienceType":"MediumFast","BaseExperience":175,"Type1":"Poison","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":88,"Devolution":88,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[1,60],"HiddenAbility":143,"EggMoves":[491,174,114,286,122,212,184,325,425,255,254,256,153],"Machines":[223,174,92,192,249,237,241,173,63,182,240,202,203,218,216,189,104,8,207,214,188,126,9,197,156,213,7,34,99,72,102,117,120,164,264,351,263,290,411,416,445,399,363,474,482,496,611,612,590],"TutorMoves":[],"BaseStats":{"HP":105,"Atk":105,"Def":75,"SpAtk":65,"SpDef":100,"Speed":50},"RewardEV":{"HP":1,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"They love to gather in smelly areas where sludge accumulates, making the stench around them worse.","Species":"Sludge Pokémon","Height":1.2,"Weight":30,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.08,"Y":1.08,"Z":1.08},"TradeValue":30,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":139},{"Level":3,"ID":106},{"Level":4,"ID":189},{"Level":5,"ID":106},{"Level":7,"ID":189},{"Level":12,"ID":1},{"Level":15,"ID":124},{"Level":18,"ID":107},{"Level":21,"ID":426},{"Level":26,"ID":188},{"Level":29,"ID":374},{"Level":32,"ID":103},{"Level":37,"ID":482},{"Level":43,"ID":151},{"Level":49,"ID":441},{"Level":53,"ID":1},{"Level":57,"ID":262}],"EvolutionConditions":[],"Items":[{"Id":36,"Chance":5}]} \ No newline at end of file +Name|Muk +Number|89 +ExperienceType|1 +BaseExperience|175 +Type1|Poison +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|88 +IsGenderLess|0 +CanBreed|1 +Devolution|88 +IsMale|50 +Ability1|1 +Ability2|60 +HiddenAbility|143 +EggMoves|491,174,114,286,122,212,184,325,425,255,254,256,153 +Machines|223,174,92,192,249,237,241,173,63,182,240,202,203,218,216,189,104,8,207,214,188,126,9,197,156,213,7,34,99,72,102,117,120,164,264,351,263,290,411,416,445,399,363,474,482,496,611,612,590 +BaseHP|105 +BaseAttack|105 +BaseDefense|75 +BaseSpAttack|65 +BaseSpDefense|100 +BaseSpeed|50 +FPHP|1 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|They love to gather in smelly areas where sludge accumulates, making the stench around them worse.\Sludge Pokémon\30\1.2\0,148,0 +Scale|1.08 +Move|1,1 +Move|1,139 +Move|1,106 +Move|1,189 +Move|4,106 +Move|7,189 +Move|12,50 +Move|15,124 +Move|18,107 +Move|21,426 +Move|26,188 +Move|29,374 +Move|32,103 +Move|37,482 +Move|43,151 +Move|49,441 +Move|53,562 +Move|57,262 +TradeValue|30 +Item|5,36 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/9.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/9.dat index bcd5914e6..e10f9865a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/9.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/9.dat @@ -1 +1,55 @@ -{"Name":"Blastoise","Number":9,"ExperienceType":"MediumSlow","BaseExperience":239,"Type1":"Water","Type2":"Blank","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Monster","EggGroup2":"Water1","BaseEggSteps":5355,"EggPokemon":7,"Devolution":8,"CanBreed":true,"IsGenderless":false,"IsMale":87.5,"Abilities":[67],"HiddenAbility":44,"EggMoves":[453,392,396,362,406,252,175,193,114,243,54,300,330,287,323,281],"Machines":[223,29,174,205,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,130,157,164,264,352,258,280,317,263,290,411,362,374,416,419,360,445,399,363,430,479,496,503,523,525,612,590,57,70,250,127,431,560,291],"TutorMoves":[],"BaseStats":{"HP":79,"Atk":83,"Def":100,"SpAtk":85,"SpDef":105,"Speed":78},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":3,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It deliberately makes itself heavy so it can withstand the recoil of the water jets it fires.","Species":"Shellfish Pokémon","Height":1.6,"Weight":85.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":70,"Moves":[{"Level":1,"ID":33},{"Level":2,"ID":39},{"Level":3,"ID":55},{"Level":4,"ID":110},{"Level":5,"ID":430},{"Level":6,"ID":39},{"Level":7,"ID":55},{"Level":10,"ID":110},{"Level":13,"ID":145},{"Level":16,"ID":44},{"Level":20,"ID":229},{"Level":24,"ID":182},{"Level":28,"ID":352},{"Level":32,"ID":401},{"Level":39,"ID":130},{"Level":46,"ID":334},{"Level":53,"ID":240},{"Level":60,"ID":56}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Blastoise +Number|9 +ExperienceType|2 +BaseExperience|239 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|7 +IsGenderLess|0 +IsMale|87.5 +Ability1|67 +Ability2|Nothing +HiddenAbility|44 +EggMoves|453,392,396,362,406,252,175,193,114,243,54,300,330,287,323,281 +Machines|223,29,174,205,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,130,157,164,264,352,258,280,317,263,290,411,362,374,416,419,360,445,399,363,430,479,496,503,523,525,612,590,57,70,250,127,431,560,291 +TutorMoves|308 +BaseHP|79 +BaseAttack|83 +BaseDefense|100 +BaseSpAttack|85 +BaseSpDefense|105 +BaseSpeed|78 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It deliberately makes itself heavy so it can withstand the recoil of the water jets it fires.\Shellfish Pokémon\85.5\1.6\0,148,0 +Scale|1.24 +Move|1,33 +Move|1,39 +Move|1,55 +Move|1,110 +Move|1,430 +Move|4,39 +Move|7,55 +Move|10,110 +Move|13,145 +Move|16,44 +Move|20,229 +Move|24,182 +Move|28,352 +Move|32,401 +Move|39,130 +Move|46,334 +Move|53,240 +Move|60,56 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/90.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/90.dat index f16be19e9..62151464e 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/90.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/90.dat @@ -1 +1,57 @@ -{"Name":"Shellder","Number":90,"ExperienceType":"Slow","BaseExperience":61,"Type1":"Water","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":90,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[75,92],"HiddenAbility":142,"EggMoves":[333,350,36,41,392,419,112,61,341,229,103],"Machines":[174,92,237,241,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,36,61,55,58,99,100,102,117,120,153,161,164,352,258,263,290,362,371,416,445,363,496,590,57,250,291],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":65,"Def":100,"SpAtk":45,"SpDef":25,"Speed":40},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"It swims facing backward by opening and closing its two-piece shell. It is surprisingly fast.","Species":"Bivalve Pokémon","Height":0.3,"Weight":4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":15,"Moves":[{"Level":1,"ID":33},{"Level":4,"ID":110},{"Level":8,"ID":48},{"Level":13,"ID":333},{"Level":16,"ID":182},{"Level":20,"ID":43},{"Level":25,"ID":128},{"Level":28,"ID":420},{"Level":32,"ID":534},{"Level":37,"ID":62},{"Level":40,"ID":250},{"Level":44,"ID":362},{"Level":49,"ID":334},{"Level":52,"ID":58},{"Level":56,"ID":504},{"Level":61,"ID":56}],"EvolutionConditions":[{"Condition":"24","ConditionType":"Item","Evolution":91,"Trigger":"ItemUse"}],"Items":[{"Id":111,"Chance":5},{"Id":110,"Chance":50}]} \ No newline at end of file +Name|Shellder +Number|90 +ExperienceType|3 +BaseExperience|61 +Type1|Water +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|90 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|75 +Ability2|92 +HiddenAbility|142 +EggMoves|333,350,36,41,392,419,112,61,341,229,103 +Machines|174,92,237,241,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,36,61,55,58,99,100,102,117,120,153,161,164,352,258,263,290,362,371,416,445,363,496,590,57,250,291 +BaseHP|30 +BaseAttack|65 +BaseDefense|100 +BaseSpAttack|45 +BaseSpDefense|25 +BaseSpeed|40 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|It swims facing backward by opening and closing its two-piece shell. It is surprisingly fast.\Bivalve Pokémon\4\0.3\0,148,0 +Scale|0.7 +Move|1,33 +Move|4,110 +Move|8,48 +Move|13,333 +Move|16,182 +Move|20,43 +Move|25,128 +Move|28,420 +Move|32,534 +Move|37,62 +Move|40,250 +Move|44,362 +Move|49,334 +Move|52,58 +Move|56,504 +Move|61,56 +TradeValue|15 +Item|5,111 +Item|50,110 +EvolutionCondition|91,item,24,item diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/91.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/91.dat index 29a794356..94830dec5 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/91.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/91.dat @@ -1 +1,50 @@ -{"Name":"Cloyster","Number":91,"ExperienceType":"Slow","BaseExperience":184,"Type1":"Water","Type2":"Ice","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":90,"Devolution":90,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[75,92],"HiddenAbility":142,"EggMoves":[333,350,36,41,392,419,112,61,341,229,103],"Machines":[174,92,237,241,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,36,38,61,55,58,99,100,102,117,120,153,161,164,352,258,259,263,290,362,371,416,419,445,363,398,496,524,590,57,250,291],"TutorMoves":[],"BaseStats":{"HP":50,"Atk":95,"Def":180,"SpAtk":85,"SpDef":45,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":2,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":true,"PokedexEntry":{"Text":"Once it slams its shell shut it is impossible to open, even by those with superior strength.","Species":"Bivalve Pokémon","Height":1.5,"Weight":132.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":35,"Moves":[{"Level":1,"ID":56},{"Level":2,"ID":504},{"Level":3,"ID":390},{"Level":4,"ID":110},{"Level":5,"ID":48},{"Level":6,"ID":182},{"Level":7,"ID":62},{"Level":13,"ID":131},{"Level":28,"ID":191},{"Level":50,"ID":556}],"EvolutionConditions":[],"Items":[{"Id":111,"Chance":5},{"Id":110,"Chance":50}]} \ No newline at end of file +Name|Cloyster +Number|91 +ExperienceType|3 +BaseExperience|184 +Type1|Water +Type2|Ice +CatchRate|60 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|90 +IsGenderLess|0 +CanBreed|1 +Devolution|90 +IsMale|50 +Ability1|75 +Ability2|92 +HiddenAbility|142 +EggMoves|333,350,36,41,392,419,112,61,341,229,103 +Machines|174,92,237,241,173,59,63,196,182,240,203,218,216,104,207,214,129,197,156,213,36,38,61,55,58,99,100,102,117,120,153,161,164,352,258,259,263,290,362,371,416,419,445,363,398,496,524,590,57,250,291 +BaseHP|50 +BaseAttack|95 +BaseDefense|180 +BaseSpAttack|85 +BaseSpDefense|45 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|2 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|1 +Pokedex|Once it slams its shell shut it is impossible to open, even by those with superior strength.\Bivalve Pokémon\132.5\1.5\0,148,0 +Scale|1.2 +Move|1,56 +Move|1,504 +Move|1,390 +Move|1,110 +Move|1,48 +Move|1,182 +Move|1,62 +Move|13,131 +Move|28,191 +Move|50,556 +TradeValue|35 +Item|5,111 +Item|50,110 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/92.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/92.dat index 15bead1df..0e4926e26 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/92.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/92.dat @@ -1 +1,54 @@ -{"Name":"Gastly","Number":92,"ExperienceType":"MediumSlow","BaseExperience":62,"Type1":"Ghost","Type2":"Poison","CatchRate":190,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":92,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[310,499,50,7,288,114,8,195,149,513,184,123,9,153,261],"Machines":[174,92,192,244,237,241,173,63,182,240,202,203,218,216,94,247,104,207,214,188,138,197,156,213,168,171,99,72,85,102,117,120,149,153,164,269,259,263,290,285,289,412,261,373,371,416,445,399,363,433,474,477,496,611,605,590],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":35,"Def":30,"SpAtk":100,"SpDef":35,"Speed":80},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":1,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"With its gas-like body, it can sneak into any place it desires. However, it can be blown away by wind.","Species":"Gas Pokémon","Height":1.3,"Weight":0.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":10,"Moves":[{"Level":1,"ID":95},{"Level":2,"ID":122},{"Level":5,"ID":180},{"Level":8,"ID":212},{"Level":12,"ID":174},{"Level":15,"ID":101},{"Level":19,"ID":109},{"Level":22,"ID":389},{"Level":26,"ID":371},{"Level":29,"ID":247},{"Level":33,"ID":138},{"Level":36,"ID":399},{"Level":40,"ID":194},{"Level":43,"ID":506},{"Level":47,"ID":171}],"EvolutionConditions":[{"Condition":"25","ConditionType":"Level","Evolution":93,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Gastly +Number|92 +ExperienceType|2 +BaseExperience|62 +Type1|Ghost +Type2|Poison +CatchRate|190 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|92 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|310,499,50,7,288,114,8,195,149,513,184,123,9,153,261 +Machines|174,92,192,244,237,241,173,63,182,240,202,203,218,216,94,247,104,207,214,188,138,197,156,213,168,171,99,72,85,102,117,120,149,153,164,269,259,263,290,285,289,412,261,373,371,416,445,399,363,433,474,477,496,611,605,590 +BaseHP|30 +BaseAttack|35 +BaseDefense|30 +BaseSpAttack|100 +BaseSpDefense|35 +BaseSpeed|80 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|1 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|With its gas-like body, it can sneak into any place it desires. However, it can be blown away by wind.\Gas Pokémon\0.1\1.3\0,148,0 +Scale|1.12 +Move|1,95 +Move|1,122 +Move|5,180 +Move|8,212 +Move|12,174 +Move|15,101 +Move|19,109 +Move|22,389 +Move|26,371 +Move|29,247 +Move|33,138 +Move|36,399 +Move|40,194 +Move|43,506 +Move|47,171 +TradeValue|10 +EvolutionCondition|93,Level,25,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/93.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/93.dat index e95c566df..6c3d766b0 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/93.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/93.dat @@ -1 +1,56 @@ -{"Name":"Haunter","Number":93,"ExperienceType":"MediumSlow","BaseExperience":142,"Type1":"Ghost","Type2":"Poison","CatchRate":90,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":92,"Devolution":92,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[310,499,50,7,288,114,8,195,149,513,184,123,9,153,261],"Machines":[174,92,192,244,237,241,173,63,182,240,202,203,218,216,94,247,104,207,214,188,138,197,156,213,168,7,171,99,72,85,102,117,120,149,153,164,269,259,263,290,285,289,412,374,261,373,421,371,416,445,399,363,398,433,474,477,496,611,605,590],"TutorMoves":[],"BaseStats":{"HP":45,"Atk":50,"Def":45,"SpAtk":115,"SpDef":55,"Speed":95},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":2,"SpDef":0,"Speed":0},"CanFly":true,"CanSwim":false,"PokedexEntry":{"Text":"In total darkness visible, HAUNTER lurks, silently stalking its next victim.","Species":"Gas Pokémon","Height":1.6,"Weight":0.1,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":25,"Moves":[{"Level":1,"ID":95},{"Level":2,"ID":122},{"Level":3,"ID":180},{"Level":5,"ID":180},{"Level":8,"ID":212},{"Level":12,"ID":174},{"Level":15,"ID":101},{"Level":19,"ID":109},{"Level":22,"ID":389},{"Level":25,"ID":325},{"Level":28,"ID":371},{"Level":33,"ID":247},{"Level":39,"ID":138},{"Level":44,"ID":399},{"Level":50,"ID":194},{"Level":55,"ID":506},{"Level":61,"ID":171}],"EvolutionConditions":[{"Condition":"0","ConditionType":"Trade","Evolution":94,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Haunter +Number|93 +ExperienceType|2 +BaseExperience|142 +Type1|Ghost +Type2|Poison +CatchRate|90 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|92 +IsGenderLess|0 +CanBreed|1 +Devolution|92 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|310,499,50,7,288,114,8,195,149,513,184,123,9,153,261 +Machines|174,92,192,244,237,241,173,63,182,240,202,203,218,216,94,247,104,207,214,188,138,197,156,213,168,7,171,99,72,85,102,117,120,149,153,164,269,259,263,290,285,289,412,374,261,373,421,371,416,445,399,363,398,433,474,477,496,611,605,590 +BaseHP|45 +BaseAttack|50 +BaseDefense|45 +BaseSpAttack|115 +BaseSpDefense|55 +BaseSpeed|95 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|2 +FPSpDefense|0 +FPSpeed|0 +CanFly|1 +CanSwim|0 +Pokedex|In total darkness visible, HAUNTER lurks, silently stalking its next victim.\Gas Pokémon\0.1\1.6\0,148,0 +Scale|1.24 +Move|1,95 +Move|1,122 +Move|1,180 +Move|5,180 +Move|8,212 +Move|12,174 +Move|15,101 +Move|19,109 +Move|22,389 +Move|25,325 +Move|28,371 +Move|33,247 +Move|39,138 +Move|44,399 +Move|50,194 +Move|55,506 +Move|61,171 +TradeValue|25 +EvolutionCondition|94,trade,0,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/94.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/94.dat index 6b928edc4..9a048c303 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/94.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/94.dat @@ -1 +1,55 @@ -{"Name":"Gengar","Number":94,"ExperienceType":"MediumSlow","BaseExperience":225,"Type1":"Ghost","Type2":"Poison","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Amorphous","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":92,"Devolution":93,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[26],"HiddenAbility":-1,"EggMoves":[310,499,50,7,288,114,8,195,149,513,184,123,9,153,261],"Machines":[223,29,174,92,192,249,244,237,241,173,63,182,240,202,203,218,87,216,94,247,104,8,207,214,188,9,138,197,156,213,168,7,171,5,34,36,58,66,68,69,99,72,85,102,117,118,120,130,149,153,164,264,269,280,259,263,290,285,289,411,412,374,409,261,373,421,371,416,445,399,363,398,433,474,477,496,611,612,605,590,70],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":65,"Def":60,"SpAtk":130,"SpDef":75,"Speed":110},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":3,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It steals heat from its surroundings. If you feel a sudden chill, it is certain that a GENGAR appeared.","Species":"Shadow Pokémon","Height":1.5,"Weight":40.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.2,"Y":1.2,"Z":1.2},"TradeValue":50,"Moves":[{"Level":1,"ID":95},{"Level":2,"ID":122},{"Level":3,"ID":180},{"Level":5,"ID":180},{"Level":8,"ID":212},{"Level":12,"ID":174},{"Level":15,"ID":101},{"Level":19,"ID":109},{"Level":22,"ID":389},{"Level":25,"ID":325},{"Level":28,"ID":371},{"Level":33,"ID":247},{"Level":39,"ID":138},{"Level":44,"ID":399},{"Level":50,"ID":194},{"Level":55,"ID":506},{"Level":61,"ID":171}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Gengar +Number|94 +ExperienceType|2 +BaseExperience|225 +Type1|Ghost +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|92 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|26 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|310,499,50,7,288,114,8,195,149,513,184,123,9,153,261 +Machines|223,29,174,92,192,249,244,237,241,173,63,182,240,202,203,218,87,216,94,247,104,8,207,214,188,9,138,197,156,213,168,7,171,5,34,36,58,66,68,69,99,72,85,102,117,118,120,130,149,153,164,264,269,280,259,263,290,285,289,411,412,374,409,261,373,421,371,416,445,399,363,398,433,474,477,496,611,612,605,590,70 +BaseHP|60 +BaseAttack|65 +BaseDefense|60 +BaseSpAttack|130 +BaseSpDefense|75 +BaseSpeed|110 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It steals heat from its surroundings. If you feel a sudden chill, it is certain that a GENGAR appeared.\Shadow Pokémon\40.5\1.5\0,148,0 +Scale|1.2 +Move|1,95 +Move|1,122 +Move|1,180 +Move|5,180 +Move|8,212 +Move|12,174 +Move|15,101 +Move|19,109 +Move|22,389 +Move|25,325 +Move|28,371 +Move|33,247 +Move|39,138 +Move|44,399 +Move|50,194 +Move|55,506 +Move|61,171 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/94_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/94_mega.dat new file mode 100644 index 000000000..b426be62e --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/94_mega.dat @@ -0,0 +1,55 @@ +Name|Mega Gengar +Number|94 +ExperienceType|2 +BaseExperience|225 +Type1|Ghost +Type2|Poison +CatchRate|45 +BaseFriendship|70 +EggGroup1|Amorphous +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|92 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|23 +Ability2|Nothing +HiddenAbility|Nothing +EggMoves|310,499,50,7,288,114,8,195,149,513,184,123,9,153,261 +Machines|223,29,174,92,192,249,244,237,241,173,63,182,240,202,203,218,87,216,94,247,104,8,207,214,188,9,138,197,156,213,168,7,171,5,34,36,58,66,68,69,99,72,85,102,117,118,120,130,149,153,164,264,269,280,259,263,290,285,289,411,412,374,409,261,373,421,371,416,445,399,363,398,433,474,477,496,611,612,605,590,70 +BaseHP|60 +BaseAttack|65 +BaseDefense|80 +BaseSpAttack|170 +BaseSpDefense|95 +BaseSpeed|130 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|3 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It steals heat from its surroundings. If you feel a sudden chill, it is certain that a GENGAR appeared.\Shadow Pokémon\40.5\1.4\0,148,0 +Scale|1.2 +Move|1,95 +Move|1,122 +Move|1,180 +Move|5,180 +Move|8,212 +Move|12,174 +Move|15,101 +Move|19,109 +Move|22,389 +Move|25,325 +Move|28,371 +Move|33,247 +Move|39,138 +Move|44,399 +Move|50,194 +Move|55,506 +Move|61,171 +TradeValue|50 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/95.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/95.dat index 1f1b2f846..8a3ac50ca 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/95.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/95.dat @@ -1 +1,61 @@ -{"Name":"Onix","Number":95,"ExperienceType":"MediumFast","BaseExperience":77,"Type1":"Rock","Type2":"Ground","CatchRate":45,"BaseFriendship":70,"EggGroup1":"Mineral","EggGroup2":"None","BaseEggSteps":6630,"EggPokemon":95,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[69,5],"HiddenAbility":133,"EggMoves":[335,111,175,484,350,431,205,563,446,153,157],"Machines":[29,174,46,92,249,244,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,197,156,213,34,36,38,99,90,102,117,120,130,153,157,164,269,317,259,263,290,406,371,416,397,444,360,446,445,363,430,479,496,523,525,267,590,70,431,560],"TutorMoves":[],"BaseStats":{"HP":35,"Atk":45,"Def":160,"SpAtk":30,"SpDef":45,"Speed":70},"RewardEV":{"HP":0,"Atk":0,"Def":1,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It twists and squirms through the ground. The thunderous roar of its tunneling echoes a long way.","Species":"Rock Snake Pokémon","Height":8.8,"Weight":210,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":2,"Y":2,"Z":2},"TradeValue":30,"Moves":[{"Level":1,"ID":300},{"Level":2,"ID":33},{"Level":3,"ID":106},{"Level":4,"ID":20},{"Level":5,"ID":174},{"Level":7,"ID":88},{"Level":10,"ID":317},{"Level":13,"ID":99},{"Level":16,"ID":446},{"Level":19,"ID":397},{"Level":20,"ID":360},{"Level":22,"ID":479},{"Level":25,"ID":225},{"Level":28,"ID":21},{"Level":31,"ID":103},{"Level":34,"ID":157},{"Level":37,"ID":328},{"Level":40,"ID":231},{"Level":43,"ID":91},{"Level":46,"ID":444},{"Level":49,"ID":38},{"Level":52,"ID":201}],"EvolutionConditions":[{"Condition":"143","ConditionType":"HoldItem","Evolution":208,"Trigger":"Trading"}],"Items":[]} \ No newline at end of file +Name|Onix +Number|95 +ExperienceType|1 +BaseExperience|77 +Type1|Rock +Type2|Ground +CatchRate|45 +BaseFriendship|70 +EggGroup1|Mineral +EggGroup2|None +BaseEggSteps|6630 +EggPokemon|95 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|69 +Ability2|5 +HiddenAbility|133 +EggMoves|335,111,175,484,350,431,205,563,446,153,157 +Machines|29,174,46,92,249,244,237,241,173,63,182,203,218,231,89,216,91,189,104,207,214,201,197,156,213,34,36,38,99,90,102,117,120,130,153,157,164,269,317,259,263,290,406,371,416,397,444,360,446,445,363,430,479,496,523,525,267,590,70,431,560 +BaseHP|35 +BaseAttack|45 +BaseDefense|160 +BaseSpAttack|30 +BaseSpDefense|45 +BaseSpeed|70 +FPHP|0 +FPAttack|0 +FPDefense|1 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It twists and squirms through the ground. The thunderous roar of its tunneling echoes a long way.\Rock Snake Pokémon\210\8.8\0,148,0 +Scale|2 +Move|1,300 +Move|1,33 +Move|1,106 +Move|1,20 +Move|4,174 +Move|7,88 +Move|10,317 +Move|13,99 +Move|16,446 +Move|19,397 +Move|20,360 +Move|22,479 +Move|25,225 +Move|28,21 +Move|31,103 +Move|34,157 +Move|37,328 +Move|40,231 +Move|43,91 +Move|46,444 +Move|49,38 +Move|52,201 +TradeValue|30 +EvolutionCondition|208,holditem,143,trade diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/96.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/96.dat index 0f41c0015..abfe2eb8a 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/96.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/96.dat @@ -1 +1,56 @@ -{"Name":"Drowzee","Number":96,"ExperienceType":"MediumFast","BaseExperience":66,"Type1":"Psychic","Type2":"Blank","CatchRate":190,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":96,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[15,108],"HiddenAbility":39,"EggMoves":[274,112,7,260,385,8,417,427,272,290,285,9,113],"Machines":[223,29,174,92,192,244,237,241,173,63,182,240,203,218,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,34,36,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,280,259,263,290,285,289,374,409,278,416,445,363,447,433,473,477,490,496,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":60,"Atk":48,"Def":45,"SpAtk":43,"SpDef":90,"Speed":42},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":1,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If you think that you had a good dream but you can't remember it, a DROWZEE has probably eaten it.","Species":"Hypnosis Pokémon","Height":1,"Weight":32.4,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1,"Y":1,"Z":1},"TradeValue":15,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":95},{"Level":5,"ID":1},{"Level":9,"ID":93},{"Level":13,"ID":29},{"Level":17,"ID":139},{"Level":21,"ID":96},{"Level":25,"ID":60},{"Level":29,"ID":29},{"Level":33,"ID":244},{"Level":37,"ID":1},{"Level":41,"ID":428},{"Level":45,"ID":207},{"Level":49,"ID":94},{"Level":53,"ID":417},{"Level":57,"ID":473},{"Level":61,"ID":248}],"EvolutionConditions":[{"Condition":"26","ConditionType":"Level","Evolution":97,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Drowzee +Number|96 +ExperienceType|1 +BaseExperience|66 +Type1|Psychic +Type2| +CatchRate|190 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|96 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|15 +Ability2|108 +HiddenAbility|39 +EggMoves|274,112,7,260,385,8,417,427,272,290,285,9,113 +Machines|223,29,174,92,192,244,237,241,173,63,182,240,203,218,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,34,36,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,280,259,263,290,285,289,374,409,278,416,445,363,447,433,473,477,490,496,612,605,590,148 +BaseHP|60 +BaseAttack|48 +BaseDefense|45 +BaseSpAttack|43 +BaseSpDefense|90 +BaseSpeed|42 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|1 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If you think that you had a good dream but you can't remember it, a DROWZEE has probably eaten it.\Hypnosis Pokémon\32.4\1\0,148,0 +Scale|1 +Move|1,1 +Move|1,95 +Move|5,50 +Move|9,93 +Move|13,29 +Move|17,139 +Move|21,96 +Move|25,60 +Move|29,29 +Move|33,244 +Move|37,485 +Move|41,428 +Move|45,207 +Move|49,94 +Move|53,417 +Move|57,473 +Move|61,248 +TradeValue|15 +EvolutionCondition|97,Level,26,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/97.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/97.dat index d9a8c89a1..c129c747d 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/97.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/97.dat @@ -1 +1,61 @@ -{"Name":"Hypno","Number":97,"ExperienceType":"MediumFast","BaseExperience":169,"Type1":"Psychic","Type2":"Blank","CatchRate":75,"BaseFriendship":70,"EggGroup1":"HumanLike","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":96,"Devolution":96,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[15,108],"HiddenAbility":39,"EggMoves":[274,112,7,260,385,8,417,427,272,290,285,9,113],"Machines":[223,29,174,92,192,244,237,241,173,63,182,240,203,218,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,25,34,36,38,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,280,259,263,290,285,289,411,374,409,278,416,445,363,447,433,473,477,490,496,612,605,590,148],"TutorMoves":[],"BaseStats":{"HP":85,"Atk":73,"Def":70,"SpAtk":73,"SpDef":115,"Speed":67},"RewardEV":{"HP":0,"Atk":0,"Def":0,"SpAtk":0,"SpDef":2,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"When it is very hungry humans it meets to sleep, then it feasts on their dreams.","Species":"Hypnosis Pokémon","Height":1.6,"Weight":75.6,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.24,"Y":1.24,"Z":1.24},"TradeValue":35,"Moves":[{"Level":1,"ID":248},{"Level":2,"ID":417},{"Level":3,"ID":171},{"Level":4,"ID":1},{"Level":5,"ID":1},{"Level":6,"ID":95},{"Level":7,"ID":1},{"Level":8,"ID":93},{"Level":9,"ID":1},{"Level":10,"ID":93},{"Level":13,"ID":29},{"Level":17,"ID":139},{"Level":21,"ID":96},{"Level":25,"ID":60},{"Level":29,"ID":29},{"Level":33,"ID":244},{"Level":37,"ID":1},{"Level":41,"ID":428},{"Level":45,"ID":207},{"Level":49,"ID":94},{"Level":53,"ID":417},{"Level":57,"ID":473},{"Level":61,"ID":248}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Hypno +Number|97 +ExperienceType|1 +BaseExperience|169 +Type1|Psychic +Type2| +CatchRate|75 +BaseFriendship|70 +EggGroup1|HumanLike +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|96 +IsGenderLess|0 +CanBreed|1 +Devolution|96 +IsMale|50 +Ability1|15 +Ability2|108 +HiddenAbility|39 +EggMoves|274,112,7,260,385,8,417,427,272,290,285,9,113 +Machines|223,29,174,92,192,244,237,241,173,63,182,240,203,218,216,94,247,104,8,207,214,9,138,197,156,213,168,7,171,5,25,34,36,38,66,68,69,99,100,102,115,117,118,130,86,149,161,164,264,347,269,113,219,280,259,263,290,285,289,411,374,409,278,416,445,363,447,433,473,477,490,496,612,605,590,148 +BaseHP|85 +BaseAttack|73 +BaseDefense|70 +BaseSpAttack|73 +BaseSpDefense|115 +BaseSpeed|67 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|2 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|When it is very hungry humans it meets to sleep, then it feasts on their dreams.\Hypnosis Pokémon\75.6\1.6\0,148,0 +Scale|1.24 +Move|1,248 +Move|1,417 +Move|1,171 +Move|1,415 +Move|1,1 +Move|1,95 +Move|1,50 +Move|1,93 +Move|5,50 +Move|9,93 +Move|13,29 +Move|17,139 +Move|21,96 +Move|25,60 +Move|29,29 +Move|33,244 +Move|37,485 +Move|41,428 +Move|45,207 +Move|49,94 +Move|53,417 +Move|57,473 +Move|61,248 +TradeValue|35 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/98.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/98.dat index 213b9283c..f476ccf6f 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/98.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/98.dat @@ -1 +1,54 @@ -{"Name":"Krabby","Number":98,"ExperienceType":"MediumFast","BaseExperience":65,"Type1":"Water","Type2":"Blank","CatchRate":225,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":98,"Devolution":0,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[52,75],"HiddenAbility":125,"EggMoves":[97,502,133,246,117,498,203,175,114,282,21,321,91,14],"Machines":[29,174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,197,156,213,168,210,14,36,61,55,58,99,102,117,157,164,337,352,258,280,317,263,290,206,362,374,416,445,404,363,468,496,503,590,15,57,70,250,291],"TutorMoves":[],"BaseStats":{"HP":30,"Atk":105,"Def":90,"SpAtk":25,"SpDef":25,"Speed":50},"RewardEV":{"HP":0,"Atk":1,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"If it senses danger approaching it cloaks itself with bubbles from its mouth so it will look bigger.","Species":"River Crab Pokémon","Height":0.4,"Weight":6.5,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":0.7,"Y":0.7,"Z":0.7},"TradeValue":20,"Moves":[{"Level":1,"ID":300},{"Level":2,"ID":145},{"Level":5,"ID":11},{"Level":9,"ID":43},{"Level":11,"ID":106},{"Level":15,"ID":61},{"Level":19,"ID":341},{"Level":21,"ID":232},{"Level":25,"ID":23},{"Level":29,"ID":182},{"Level":31,"ID":12},{"Level":35,"ID":21},{"Level":39,"ID":362},{"Level":41,"ID":152},{"Level":45,"ID":175}],"EvolutionConditions":[{"Condition":"28","ConditionType":"Level","Evolution":99,"Trigger":"LevelUp"}],"Items":[]} \ No newline at end of file +Name|Krabby +Number|98 +ExperienceType|1 +BaseExperience|65 +Type1|Water +Type2| +CatchRate|225 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|98 +IsGenderLess|0 +CanBreed|1 +Devolution|0 +IsMale|50 +Ability1|52 +Ability2|75 +HiddenAbility|125 +EggMoves|97,502,133,246,117,498,203,175,114,282,21,321,91,14 +Machines|29,174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,197,156,213,168,210,14,36,61,55,58,99,102,117,157,164,337,352,258,280,317,263,290,206,362,374,416,445,404,363,468,496,503,590,15,57,70,250,291 +BaseHP|30 +BaseAttack|105 +BaseDefense|90 +BaseSpAttack|25 +BaseSpDefense|25 +BaseSpeed|50 +FPHP|0 +FPAttack|1 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|If it senses danger approaching it cloaks itself with bubbles from its mouth so it will look bigger.\River Crab Pokémon\6.5\0.4\0,148,0 +Scale|0.7 +Move|1,300 +Move|1,145 +Move|5,11 +Move|9,43 +Move|11,106 +Move|15,61 +Move|19,341 +Move|21,232 +Move|25,23 +Move|29,182 +Move|31,12 +Move|35,21 +Move|39,362 +Move|41,152 +Move|45,175 +TradeValue|20 +EvolutionCondition|99,Level,28,Level diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/99.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/99.dat index 051201680..ee430d8dd 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/99.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/99.dat @@ -1 +1,56 @@ -{"Name":"Kingler","Number":99,"ExperienceType":"MediumFast","BaseExperience":166,"Type1":"Water","Type2":"Blank","CatchRate":60,"BaseFriendship":70,"EggGroup1":"Water3","EggGroup2":"None","BaseEggSteps":5355,"EggPokemon":98,"Devolution":98,"CanBreed":true,"IsGenderless":false,"IsMale":50,"Abilities":[52,75],"HiddenAbility":125,"EggMoves":[97,502,133,246,117,498,203,175,114,282,21,321,91,14],"Machines":[29,174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,197,156,213,168,210,14,34,36,38,61,55,58,99,102,117,157,164,337,352,258,280,317,263,290,206,362,374,416,445,404,363,468,496,503,511,590,15,57,70,250,291],"TutorMoves":[],"BaseStats":{"HP":55,"Atk":130,"Def":115,"SpAtk":50,"SpDef":50,"Speed":75},"RewardEV":{"HP":0,"Atk":2,"Def":0,"SpAtk":0,"SpDef":0,"Speed":0},"CanFly":false,"CanSwim":false,"PokedexEntry":{"Text":"It can hardly lift its massive overgrown pincer. The pincer's size makes it difficult to aim properly.","Species":"Pincer Pokémon","Height":1.3,"Weight":60,"Color":{"Red":0,"Green":148,"Blue":0}},"Scale":{"X":1.12,"Y":1.12,"Z":1.12},"TradeValue":40,"Moves":[{"Level":1,"ID":1},{"Level":2,"ID":300},{"Level":3,"ID":145},{"Level":4,"ID":11},{"Level":5,"ID":43},{"Level":6,"ID":11},{"Level":9,"ID":43},{"Level":11,"ID":106},{"Level":15,"ID":61},{"Level":19,"ID":341},{"Level":21,"ID":232},{"Level":25,"ID":23},{"Level":32,"ID":182},{"Level":37,"ID":12},{"Level":44,"ID":21},{"Level":51,"ID":362},{"Level":56,"ID":152},{"Level":63,"ID":175}],"EvolutionConditions":[],"Items":[]} \ No newline at end of file +Name|Kingler +Number|99 +ExperienceType|1 +BaseExperience|166 +Type1|Water +Type2| +CatchRate|60 +BaseFriendship|70 +EggGroup1|Water3 +EggGroup2|None +BaseEggSteps|5355 +EggPokemon|98 +IsGenderLess|0 +CanBreed|1 +Devolution|98 +IsMale|50 +Ability1|52 +Ability2|75 +HiddenAbility|125 +EggMoves|97,502,133,246,117,498,203,175,114,282,21,321,91,14 +Machines|29,174,92,249,237,173,59,63,196,182,240,203,218,216,91,189,104,207,214,197,156,213,168,210,14,34,36,38,61,55,58,99,102,117,157,164,337,352,258,280,317,263,290,206,362,374,416,445,404,363,468,496,503,511,590,15,57,70,250,291 +BaseHP|55 +BaseAttack|130 +BaseDefense|115 +BaseSpAttack|50 +BaseSpDefense|50 +BaseSpeed|75 +FPHP|0 +FPAttack|2 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|0 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It can hardly lift its massive overgrown pincer. The pincer's size makes it difficult to aim properly.\Pincer Pokémon\60\1.3\0,148,0 +Scale|1.12 +Move|1,469 +Move|1,300 +Move|1,145 +Move|1,11 +Move|1,43 +Move|5,11 +Move|9,43 +Move|11,106 +Move|15,61 +Move|19,341 +Move|21,232 +Move|25,23 +Move|32,182 +Move|37,12 +Move|44,21 +Move|51,362 +Move|56,152 +Move|63,175 +TradeValue|40 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/9_mega.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/9_mega.dat new file mode 100644 index 000000000..e32840c84 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/9_mega.dat @@ -0,0 +1,55 @@ +Name|Mega Blastoise +Number|9 +ExperienceType|2 +BaseExperience|239 +Type1|Water +Type2| +CatchRate|45 +BaseFriendship|70 +EggGroup1|Monster +EggGroup2|Water1 +BaseEggSteps|5355 +EggPokemon|7 +IsGenderLess|0 +IsMale|87.5 +Ability1|178 +Ability2|Nothing +HiddenAbility|178 +EggMoves|453,392,396,362,406,252,175,193,114,243,54,300,330,287,323,281 +Machines|223,29,174,205,46,92,249,237,173,59,63,196,182,240,203,218,231,89,216,91,189,104,8,207,214,111,197,156,213,5,25,34,36,38,61,55,58,66,68,69,99,90,102,117,130,157,164,264,352,258,280,317,263,290,411,362,374,416,419,360,445,399,363,430,479,496,503,523,525,612,590,57,70,250,127,431,560,291 +TutorMoves|308 +BaseHP|79 +BaseAttack|103 +BaseDefense|120 +BaseSpAttack|135 +BaseSpDefense|115 +BaseSpeed|78 +FPHP|0 +FPAttack|0 +FPDefense|0 +FPSpAttack|0 +FPSpDefense|3 +FPSpeed|0 +CanFly|0 +CanSwim|0 +Pokedex|It deliberately makes itself heavy so it can withstand the recoil of the water jets it fires.\Shellfish Pokémon\101.1\1.6\0,148,0 +Scale|1.24 +Move|1,33 +Move|1,39 +Move|1,55 +Move|1,110 +Move|1,430 +Move|4,39 +Move|7,55 +Move|10,110 +Move|13,145 +Move|16,44 +Move|20,229 +Move|24,182 +Move|28,352 +Move|32,401 +Move|39,130 +Move|46,334 +Move|53,240 +Move|60,56 +TradeValue|70 diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/0.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/0.dat index ac58e993b..08abcb609 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/0.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/0.dat @@ -140,13 +140,9 @@ 276,277|276|64,116,98,33|atk,speed| 278,279|278|55,48,17,45|spatk,speed| 280,281,282,475|280|45,93,104,345|spatk,spdef| -283,284|283|145,98,230,453|atk,speed| 285,286|285|71,78,73,33|spatk,def| 287,288,289|287|10,281,227,133|def,spdef| -290,291,292|290|10,141,28,106|def,atk| -293,294,295|293|1,310,336,103|def,atk| 296,297|296|116,292,33,28|atk,def| -299,476|299|88,86,156,33|def,spdef| 304,305,306|304|189,232,106,29|def,atk| 307,308|307|96,197,93,237|spatk,def| 322,323|322|52,222,45,116|spatk,def| diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/1.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/1.dat index 593cb2213..110621324 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/1.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/1.dat @@ -146,13 +146,9 @@ 276,277|277|64,116,98,33|atk,speed| 278,279|279|55,17,371,56|speed,spatk| 280,281,282,475|281|45,93,104,345|spatk,spdef| -283,284|284|98,314,78,145|spatk,speed| 285,286|285|71,78,73,33|spatk,def| 287,288,289|288|10,281,227,133|def,spdef| -290,291,292|291|450,28,97,104|speed,atk| -293,294,295|294|253,44,48,23|atk,spdef| 296,297|297|116,292,33,28|atk,def| -299,476|476|393,157,443,86|def,spdef| 304,305,306|305|231,189,182,29|def,atk| 307,308|308|395,347,93,7|atk,spatk| 322,323|323|52,222,45,116|spatk,def| diff --git a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/2.dat b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/2.dat index 1198bc5eb..62b716e96 100644 --- a/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/2.dat +++ b/2.5DHero/2.5DHeroContent/GameModes/Kolben/Data/Pokemon/frontier/2.dat @@ -149,13 +149,9 @@ 276,277|277|403,97,104,63|atk,speed| 278,279|279|56,366,17,371|speed,spatk| 280,281,282|282|585,94,345,105|spatk,spdef| -283,284|284|483,318,314,78|spatk,speed| 285,286|286|147,183,402,29|atk,speed| 287,288,289|289|359,498,185,58|def,spdef| -290,291,292|292|450,109,247,28|atk,speed| -293,294,295|295|586,422,423,424|atk,spatk| 296,297|297|370,265,187,484|def,spdef| -299,476|476|393,157,443,86|def,spdef| 304,305,306|306|38,484,89,444|def,atk| 307,308|308|94,7,8,9|spatk,atk| 322,323|323|284,157,89,116|spatk,spdef| diff --git a/2.5DHero/2.5DHeroContent/Localization/Tokens_de.dat b/2.5DHero/2.5DHeroContent/Localization/Tokens_de.dat new file mode 100644 index 000000000..c6638458c Binary files /dev/null and b/2.5DHero/2.5DHeroContent/Localization/Tokens_de.dat differ diff --git a/2.5DHero/2.5DHeroContent/Localization/Tokens_en.dat b/2.5DHero/2.5DHeroContent/Localization/Tokens_en.dat new file mode 100644 index 000000000..25ee2c71c Binary files /dev/null and b/2.5DHero/2.5DHeroContent/Localization/Tokens_en.dat differ diff --git a/2.5DHero/2.5DHeroContent/Localization/Tokens_fr.dat b/2.5DHero/2.5DHeroContent/Localization/Tokens_fr.dat new file mode 100644 index 000000000..3ef0afea5 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/Localization/Tokens_fr.dat @@ -0,0 +1,641 @@ +language_name,Français +--- +MainMenuScreen: +main_menu_continue,Continue +main_menu_load_game,Charger partie +main_menu_new_game,Nouvelle partie +main_menu_quit_game,Quitter +LoadScreen: +load_menu_name,Nom +load_menu_badges,Badges +load_menu_location,Lieu +load_menu_time,Temps +load_menu_back,Retour +load_menu_load,Charger +load_menu_delete,Supprimer +DeleteScreen: +delete_menu_delete_confirm,Do you really want to delete the save +delete_menu_delete,Supprimer +delete_menu_cancel,Annuler +LanguageScreen: +language_menu_apply,Appliquer +language_menu_back,Retour +--- +Pausescreen: +pause_menu_title,Menu +pause_menu_back_to_game,Retour au jeu +pause_menu_disconnect,déconnexion +pause_menu_quit_to_menu,Quitter +--- +IngameMenu: +game_menu_pokedex,Pokédex +game_menu_party,Pokémon +game_menu_bag,Sac +game_menu_trainer_card, +game_menu_save,Sauvegarder +game_menu_options,Options +game_menu_exit,Sortir du Menu +--- +InventoryScreen: +inventory_menu_bag,Sac +inventory_menu_backadvice,Appuyer sur E pour sortir +inventory_menu_items,Objet +inventory_menu_description,Description +--- +NewGameScreen: +new_game_oak_1,Bonjour!~Désolé de l'attente!*Bienvenu dans le monde~des POkéMON!*Mon nom est CHEN.~Mais on m'appelle le~PROF.POKéMON*Ce monde est peuplé de créature appelées POKéMON. +new_game_oak_2*Humains et POKéMON vivent~en parfaite harmonie....~Certain jouent avec les~Pokémon,~d'autre font des combats~avec eux.*Mais il reste encore~beaucoup à apprendre sur~nos amis les POkéMON.~De nombreux mystères planent~à leur sujet.*Et c'est pourquoi j'étudie~les POKéMON tous les jours.*Heu....c'est quoi ton nom déjà? +new_game_oak_3,~ta quête est sur le point~de commencer?*Joies et périls paveront ta route....~Un monde de rêve, de danger et de POKéMON~t'attend!En avant!*A plus tard! +new_game_oak_weird_name_1,Bon! donc ton nom est~ +new_game_oak_weird_name_2,!*Hum c'est un~nom bizzare. +new_game_oak_known_name_1,Bon! donc ton nom est~ +new_game_oak_known_name_2,!*Hm je suis sur d'avoir~entendu ce nom avant. +new_game_oak_same_name_1,Hey nous avons le même nom.*Mon nom est aussi~ +new_game_oak_same_name_2,! +new_game_oak_name_1,Bon! donc ton nom est~ +new_game_oak_name_2,! +new_game_your_name,Ton nom +new_game_choose_skin,Choisis ton personnage +new_game_name_too_short,Ce nom est trop court +--- +MapScreen: +map_screen_cities,Ville +map_screen_routes,Routes +map_screen_places,Places +--- +PokedexScreen: +pokedex_screen_seen,Vu +pokedex_screen_obtained,Obtenu +pokedex_screen_rare,Rare +pokedex_screen_backadvice,Appuie sur E pour sortir +--- +PokemonScreen: +pokemon_screen_choose_a_pokemon,Choisie un Pokémon +pokemon_screen_backadvice,Appuie sur E pour sortir +pokemon_screen_item_give,Donner +pokemon_screen_item_take,Prendre +pokemon_screen_item_back,Annuler +pokemon_screen_doesnt_hold_item,~ne tien pas d'objet. +pokemon_screen_take_item_1,Prend +pokemon_screen_take_item_2, depuis~ +pokemon_screen_take_item_3,~et le met dans le~ +pokemon_screen_take_item_4, sac! +pokemon_screen_give_item_1,Donne +pokemon_screen_give_item_2, à~ +pokemon_screen_give_item_3, +pokemon_screen_give_item_4,~et le met +pokemon_screen_give_item_5,~dans l'inventaire. +pokemon_screen_summary,Sommaire +pokemon_screen_switch,Changer +pokemon_screen_item,Objet +pokemon_screen_back,Retour +pokemon_screen_EMPTY,VIDE +--- +Pokemon Status Screen: +All pages: +poke_status_screen_nature,Nature +poke_status_screen_backadvice,Appuie sur E pour sortir +poke_status_screen_closeadvice,Appuie sur E pour fermer le menu +poke_status_screen_number,# +Page 1: +poke_status_screen_all_exp,All Exp +poke_status_screen_nxt_lv,Prochain NV. +poke_status_screen_stats_page,Stats page +Page 2: +poke_status_screen_OT,ID +poke_status_screen_Item,Objet +poke_status_screen_no_item,Pas d'objet +poke_status_screen_ability,Capacités +poke_status_screen_details_page,Détails +Page 3: +poke_status_screen_power,Puissance +poke_status_screen_accuracy,Précision +poke_status_screen_moves_page,Page des Attaques +--- +Trainer Card Screen: +trainer_screen_trainer_card,Carte de dresseur +trainer_screen_name,Nom +trainer_screen_points,Points +trainer_screen_money,Argent +trainer_screen_pokedex,Pokédex +trainer_screen_time,Temps +trainer_screen_collected_badges,Collection de badges +trainer_screen_badge,badge +trainer_screen_backadvice,Appuie sur E pour sortir +trainer_screen_empty_badge,??? +--- +Save Screen: +save_screen_title,Veux-tu sauvergarder ta progression? +save_screen_name,Nom +save_screen_badges,Badges +save_screen_money,Argent +save_screen_time,Temps +save_screen_yes,Oui +save_screen_no,Non +save_screen_success,Sauvegarde réussi! +--- +Options Screen: +option_screen_title,Options +option_screen_warning,Les options ne sont pas encore sauvegarder. Descend et choisis "Sauver les options". +option_screen_backadvice,Appuie sur E pour sortir +option_screen_description,Description +option_screen_textspeed,Vitesse du texte +option_screen_textspeed_description,Change la vitesse de défilement du texte. +option_screen_fov,FOV +option_screen_fov_description,Le champs de vue. Plus la valeur est grande,~plus on peut voire loin.~Attention: Une trop grande valeur peut causer des ralentissements du jeu. +option_screen_mousespeed,Vitesse de la souris +option_screen_mousespeed_description,La vitesse de la souris fait varier la vitesse à lequel la caméra se déplace. +option_screen_volume,Volume +option_screen_volume_description,Volume de la musique de fond.~Ce changement concerne tout les sauvegardes. +option_screen_render_distance,Distance de vue +option_screen_render_distance_tiny,Minuscule +option_screen_render_distance_short,Cour +option_screen_render_distance_normal,Normal +option_screen_render_distance_far,Loin +option_screen_render_distance_extreme,Extreme +option_screen_render_distance_description,La distance de vue détermine,~la distance que l'on peut voire.~En réduissant la distance, cela augmente le nombre de FPS. +option_screen_graphics,Graphique +option_screen_graphics_fancy,Lent +option_screen_graphics_fast,Rapide +option_screen_graphics_description,Affiche ou non les objets au loin.~En réduisant cette option, cela permet d'augmenter le nombre de FPS.~Ce réglage est pour toute les sauvegardes du jeu. +option_screen_offset_map_quality,Offset map quality +option_screen_offset_map_off,Off +option_screen_offset_map_quality_description,Régle la qualité du offset maps.~Les détails et les raffraichisements du offset maps augmente avec la valeur.~Régle la valeur sur 0 pour prévenir les lag du au mode OFFSET MAPs. +option_screen_animations_in_battle,Animations durant les combats +option_screen_animations_in_battle_no,Non +option_screen_animations_in_battle_attacks_off,Animations désactivés +option_screen_animations_in_battle_yes,Oui +option_screen_animations_in_battle_description,Détermine si le jeu affiche les animations des attaques ou pas. +option_screen_difficulty,Difficulté +option_screen_difficulty_description,Régle le niveau de difficulté du jeu. +option_screen_battle_style,Choix de bataille +option_screen_battle_style_shift,Non +option_screen_battle_style_set,oui +option_screen_battle_style_description,Choix de bataille non: Le jeu ne demande pas si vous voulez changer de POKéMON après un ennemie K.O! Choix de bataille Oui: Vous pouvez changer de POKéMON après avoir vaincu un POKéMON adverse. +option_screen_reset_options,Options par défaut. +option_screen_reset_options_description,Remise à défaut de toute les options. +option_screen_save_options,Sauver les options. +option_screen_save_options_description,Sauve les options et ferme le menu. +option_screen_close_menu,Fermer le menu. +option_screen_close_menu_description,Ferme le menu mais ne sauve pas les options. +--- +Item Detail Screen: +item_detail_screen_use,Utiliser +item_detail_screen_give,Donner +item_detail_screen_trash,Jeter +item_detail_screen_back,Retour +item_detail_screen_give_item,Donner +--- +Apricorn Screen: +apricorn_screen_apricorns,Noigrume +apricorn_screen_producing,Je fabrique des Balls en ce moment.~Reviens plus tard. +apricorn_screen_backadvice,Appuie sur E pour sortir +apricorn_screen_choose_apricorns,Choisis les Noigrumes que tu veux transformer en Balls. +apricorn_screen_ok,OK +apricorn_screen_clear,Tout enlever +apricorn_screen_take,Prendre +apricorn_screen_ready,J'ai fini. Voici le résultat de mon travail: +apricorn_screen_obtain, obtient +--- +Network Screen: +network_screen_isonline,Vous êtes déjà dans une partie en ligne! ~Fermer la connexion pour~lancer une nouvelle partie ou se connecter encore!~~~Appuie sur E pour sortir! +network_screen_header,Partie en Co-Op +network_screen_main_header,Tu peux soit héberger ou rejoindre une partie pour jouer avec tes amis +network_screen_main_join,Rejoindre +network_screen_main_host,Héberger +network_screen_main_close,Fermer +network_screen_join_header,Joindre une partie:~Entre l'IP de la machine qui accueille la partie. +network_screen_join_cancel,Annuler +network_screen_join_join,Rejoindre +network_screen_host_header,Héberger une partie:~tu es sur le point d'ouvrir la partie~en ligne pour que tes amis te rejoigne. +network_screen_host_cancel,Annuler +network_screen_host_host,Héberger +--- +Donation screen: +donation_screen_donators,Donateur +donation_screen_backadvice,Appuie sur E pour sortir +--- +Blackout Screen: +black_out_screen_line1,Tu n'as plus de POKéMON en Forme! +black_out_screen_line2,Tu sera transporter +black_out_screen_line3,au plus proche centre POKéMON +black_out_screen_line4,pour soigner les blessures +black_out_screen_line5,de tes POKéMON. +--- +Badges: +badge_Boulder,Roche +badge_Cascade,Cascade +badge_Thunder,Foudre +badge_Rainbow,Prisme +badge_Soul,âme +badge_Marsh,Marais +badge_Volcano,Volcan +badge_Earth,Terre +badge_Zephyr,Zéphyr +badge_Hive,Essaim +badge_Plain,Plaine +badge_Fog,Brume +badge_Storm,Choc +badge_Mineral,Minéral +badge_Glacier,Glacier +badge_Rising,Lever +--- +Regions: +Johto,Johto +Kanto,Kanto +--- +Places: +Places_???,??? + +Towns: +Places_New Bark Town,Bourg Geon +Places_Cherrygrove City,Ville Griotte +Places_Violet City,Mauville +Places_Azalea Town,Ecorcia +Places_Goldenrod City,Doublonville +Places_Ecruteak City,Rosalia +Places_Olivine City,Oliville +Places_Cianwood City,Irisia +Places_Mahogany Town,Acajou +Places_Blackthorn City,Ébènelle +Places_Lavender Town,Lavandia + +Special Houses: +Places_Gate,Porte +Places_Pokemon Center,Centre Pokémon +Places_Pokemon Mart,Magasin Pokémon +Places_Elms Lab,Labo du Prof.Orme +Places_Azalea Town Gym,Arène d'Ecorcia +Places_Violet City Gym,Arène de Mauville +Places_Your House,Ta maison +Places_Your Room,Ta chambre + +Dungeons: +Places_Ilex Forest,Bois aux chênes +Places_Dark Cave,Antre noir +Places_Ruins of Alph,Ruines Alpha +Places_Slowpoke Well,Puit Ramoloss +Places_Sprout Tower,Tour chétiflor +Places_Union Cave,Cave Jumelle +Places_Mt. Mortar,Mont Creuset +Places_Bell Tower,Tour Carillon +Places_Burned Tower,Tour Cendrée +Places_Glitter Lighthouse,Phare +Places_Ice Path,Route de glace +Places_National Park,Parc naturel +Places_Whirl Islands,Tourb'Îles +Places_Lake of Rage,Lac Colère + +Routes: +Places_Route 1,Route 1 +Places_Route 2,Route 2 +Places_Route 3,Route 3 +Places_Route 4,Route 4 +Places_Route 5,Route 5 +Places_Route 6,Route 6 +Places_Route 7,Route 7 +Places_Route 8,Route 8 +Places_Route 9,Route 9 +Places_Route 10,Route 10 +Places_Route 11,Route 11 +Places_Route 12,Route 12 +Places_Route 13,Route 13 +Places_Route 14,Route 14 +Places_Route 15,Route 15 +Places_Route 16,Route 16 +Places_Route 17,Route 17 +Places_Route 18,Route 18 +Places_Route 19,Route 19 +Places_Route 20,Route 20 +Places_Route 21,Route 21 +Places_Route 22,Route 22 +Places_Route 23,Route 23 +Places_Route 24,Route 24 +Places_Route 25,Route 25 +Places_Route 26,Route 26 +Places_Route 27,Route 27 +Places_Route 28,Route 28 +Places_Route 29,Route 29 +Places_Route 30,Route 30 +Places_Route 31,Route 31 +Places_Route 32,Route 32 +Places_Route 33,Route 33 +Places_Route 34,Route 34 +Places_Route 35,Route 35 +Places_Route 36,Route 36 +Places_Route 37,Route 37 +Places_Route 38,Route 38 +Places_Route 39,Route 39 +Places_Route 40,Route 40 +Places_Route 41,Route 41 +Places_Route 42,Route 42 +Places_Route 43,Route 43 +Places_Route 44,Route 44 +Places_Route 45,Route 45 +Places_Route 46,Route 46 +--- +Item categories: +item_category_Standard,Standard +item_category_Medicine,Soins +item_category_Machines,Machines +item_category_Pokéballs,Pokéballs +item_category_Plants,Plantes +item_category_KeyItems,Objets cléfs +--- +GameMessages: +game_message_screenshot,Screenshot sauvergardé +game_message_screenshot_failed,Screenshot non pris +game_message_fullscreen_on,Mode pleine écran +game_message_fullscreen_off,Mode fenêtré +game_message_third_person_on,Mode troisième personne. +game_message_third_person_off,Mode première personne. +game_message_free_camera_on,Mouvements libres de la caméra activé. +game_message_free_camera_off,Mouvement libress de la caméra désactivé. +game_message_music_on,Musique activé. +game_message_music_off,Musique désactivé. +--- +Online: +game_message_close_connection,Tu as fermé la partie en CO-OP. +game_message_disconncet,Tu t'es déconnecté de la partie en ligne. +game_message_cannot_connect_client_1,Impossible de rejoindre ( +game_message_cannot_connect_client_2,)! +game_message_client_connect_1,Tu rejoins la partie ( +game_message_client_connect_2,)! +game_message_client_host_closed_1,L'hôte ( +game_message_client_host_closed_2,) a fermé la connection. +game_message_client_outdated_newer_version,t'as version du jeu n'est pas compatible avec la version de ton ami. +game_message_host_session_started,tu (host)à commencer une partie en CO-OP. +game_message_host_outdated_newer_version,t'as version du jeu n'est pas compatible avec la version de ton ami. +game_message_host_client_accept,Un jour à rejoins la partie! +game_message_host_client_disconnect,Le serveur est déconnecter, la partie en CO-OP prend fin. +--- +General: +HP,HP +PP,PP +Lv.,Lv. +Level,Niveau +Attack,Attaque +Defense,Défense +Special_Attack,Spécial Attaque +Special_Defense,Spécial Défense +Speed,Vitesse +--- +Pokemon: +pokemon_name_Bulbasaur,Bulbasaur +pokemon_name_Ivysaur,Herbizarre +pokemon_name_Venusaur,Florizarre +pokemon_name_Charmander,Salameche +pokemon_name_Charmeleon,Reptincelle +pokemon_name_Charizard,Dracaufeu +pokemon_name_Squirtle,Carapuce +pokemon_name_Wartortle,Carabaffe +pokemon_name_Blastoise,Tortank +pokemon_name_Caterpie,Chenipan +pokemon_name_Metapod,Chrysacier +pokemon_name_Butterfree,Papilusion +pokemon_name_Weedle,Aspicot +pokemon_name_Kakuna,Coconfort +pokemon_name_Beedrill,Dardargnan +pokemon_name_Pidgey,Roucoul +pokemon_name_Pidgeotto,Roucoups +pokemon_name_Pidgeot,Roucarnage +pokemon_name_Rattata,Rattata +pokemon_name_Raticate,Rattatac +pokemon_name_Spearow,Piafabec +pokemon_name_Fearow,Rapasdepic +pokemon_name_Ekans,Abo +pokemon_name_Arbok,Arbok +pokemon_name_Pikachu,Pikachu +pokemon_name_Raichu,Raichu +pokemon_name_Sandshrew,Sabelette +pokemon_name_Sandshlash,SAblaireau +pokemon_name_Nidoran,Nidoran +pokemon_name_Nidorina,Nidorina +pokemon_name_Nidoqueen,Nidoqueen +pokemon_name_Nidorino,Nidorino +pokemon_name_Nidoking,Nidoking +pokemon_name_Clefairy,Mélofée +pokemon_name_Clefable,Mélodelfe +pokemon_name_Vulpix,Goupix +pokemon_name_Ninetails,Feunard +pokemon_name_Jigglypuff,Roudoudou +pokemon_name_Wigglytuff,Grodoudou +pokemon_name_Zubat,Nosferapti +pokemon_name_Golbat,Nosferalto +pokemon_name_Oddish,Mysterbe +pokemon_name_Gloom,Ortide +pokemon_name_Vileplume,Rafflesia +pokemon_name_Paras,Paras +pokemon_name_Parasect,Parasect +pokemon_name_Venonat,Mimitoss +pokemon_name_Venomoth,Aeromite +pokemon_name_Diglett,Taupiqueur +pokemon_name_Dugtrio,Triopiquer +pokemon_name_Meowth,Miaous +pokemon_name_Persian,Persian +pokemon_name_Psyduck,Psykokwak +pokemon_name_Golduck,Akwakwak +pokemon_name_Mankey,Ferosinge +pokemon_name_Primeape,Colossinge +pokemon_name_Growlithe,Caninos +pokemon_name_Arcanine,Arcanin +pokemon_name_Poliwag,Ptitard +pokemon_name_Poliwhirl,Tetarte +pokemon_name_Poliwrath,Tartard +pokemon_name_Abra,Abra +pokemon_name_Kadabra,Kadabra +pokemon_name_Alakazam,Alakazam +pokemon_name_Machop,Machoc +pokemon_name_Machoke,Machopeur +pokemon_name_Machamp,Mackogneur +pokemon_name_Bellsprout,Chetiflor +pokemon_name_Weepinbell,Boustiflor +pokemon_name_Victreebel,Empoflor +pokemon_name_Tentacool,Tentacool +pokemon_name_Tentacruel,Tentacruel +pokemon_name_Geodude,Racaillou +pokemon_name_Graveler,Gravalanch +pokemon_name_Golem,Golem +pokemon_name_Ponyta,Ponyta +pokemon_name_Rapidash,Galopa +pokemon_name_Slowpoke,Ramoloss +pokemon_name_Slowbro,Flagadoss +pokemon_name_Magnemite,Magneti +pokemon_name_Magneton,Magneton +pokemon_name_Farfetch'd,Carnapoireau +pokemon_name_Doduo,Doduo +pokemon_name_Dodrio,Dodrio +pokemon_name_Seel,Otaria +pokemon_name_Dewgong,Lamantine +pokemon_name_Grimer,Tadmorv +pokemon_name_Muk,Grotadmorv +pokemon_name_Shellder,Kokiyas +pokemon_name_Cloyster,Crustabri +pokemon_name_Gastly,Fantominus +pokemon_name_Haunter,Spectrum +pokemon_name_Gengar,Ectoplasma +pokemon_name_Onix,Onix +pokemon_name_Drowzee,Soporifik +pokemon_name_Hypno,Hypnomade +pokemon_name_Krabby,Krabby +pokemon_name_Kingler,Kraboss +pokemon_name_Voltorb,Voltorbe +pokemon_name_Electrode,Electrode +pokemon_name_Exeggcute,Noeunoeuf +pokemon_name_Exeggutor,Noadkoko +pokemon_name_Cubone,Osselait +pokemon_name_Marowak,Ossatueru +pokemon_name_Hitmonlee,Kicklee +pokemon_name_Hitmonchan,Tygnon +pokemon_name_Lickitung,Excelangue +pokemon_name_Koffing,Smogo +pokemon_name_Weezing,Smogogo +pokemon_name_Rhyhorn,Rhinocorne +pokemon_name_Rhydon,Rhinoferos +pokemon_name_Chansey,Leveinard +pokemon_name_Tangela,saquedeneu +pokemon_name_Kangaskhan,Kangourex +pokemon_name_Horsea,Hypotrempe +pokemon_name_Seedra,Hypocean +pokemon_name_Goldeen,Poissirene +pokemon_name_Seaking,Possoroy +pokemon_name_Staryu,Stari +pokemon_name_Starmie,Staross +pokemon_name_Mr. Mime,Mr.Mime +pokemon_name_Scyther,Insecateur +pokemon_name_Jynx,Lippoutou +pokemon_name_Electabuzz,Elektec +pokemon_name_Magmar,Magmar +pokemon_name_Pinsir,Scarabrute +pokemon_name_Tauros,Tauros +pokemon_name_Magikarp,Magicarpe +pokemon_name_Gyarados,Leviator +pokemon_name_Lapras,Lokhlass +pokemon_name_Ditto,Metamorph +pokemon_name_Eevee,Evoli +pokemon_name_Vaporeon,Aquali +pokemon_name_Jolteon,Voltali +pokemon_name_Flareon,Pyroli +pokemon_name_Porygon,Porygon +pokemon_name_Omanyte,Amonita +pokemon_name_Omastar,Amonistar +pokemon_name_Kabuto,Kabuto +pokemon_name_Kabutops,Kabutops +pokemon_name_Aerodactyl,Ptera +pokemon_name_Snorlax,Ronflex +pokemon_name_Articuno,Artikodin +pokemon_name_Zapdos,Electhor +pokemon_name_Moltres,Sulfura +pokemon_name_Dratini,Minidraco +pokemon_name_Dragonair,Draco +pokemon_name_Dragonite,Dracolosse +pokemon_name_Mewtwo,Mewtwo +pokemon_name_Mew,Mew +pokemon_name_Chikorita,Germignon +pokemon_name_Bayleef,Macronium +pokemon_name_Meganium,Meganium +pokemon_name_Cyndaquil,Hericendre +pokemon_name_Quilava,Feurison +pokemon_name_Typhlosion,Typhlosion +pokemon_name_Totodile,Kaiminus +pokemon_name_Croconaw,Crocodil +pokemon_name_Feraligatr,Aligatueur +pokemon_name_Sentret,Founitte +pokemon_name_Furret,Fouinar +pokemon_name_Hoothoot,Hoothoot +pokemon_name_Noctowl,Noarfang +pokemon_name_Ledyba,Coxy +pokemon_name_Ledian,Coxyclaque +pokemon_name_Spinarak,Mimigal +pokemon_name_Ariados,Migalos +pokemon_name_Crobat,Nostenfer +pokemon_name_Chinchou,Loupio +pokemon_name_Lanturn,Lanturn +pokemon_name_Pichu,Pichu +pokemon_name_Cleffa,Melo +pokemon_name_Igglybuff,Toudoudou +pokemon_name_Togepi,Togepi +pokemon_name_Togetic,Togetic +pokemon_name_Natu,Natu +pokemon_name_Xatu,Xatu +pokemon_name_Mareep,Wattouat +pokemon_name_Flaaffy,Lainergie +pokemon_name_Ampharos,Pharamp +pokemon_name_Bellossom,Joliflor +pokemon_name_Marill,Marill +pokemon_name_Azumarill,Azumarill +pokemon_name_Sudowoodo,Simularbre +pokemon_name_Politoed,Tarpaud +pokemon_name_Hoppip,Granivol +pokemon_name_Skiploom,Floravol +pokemon_name_Jumpluff,Cotovil +pokemon_name_Aipom,Capumain +pokemon_name_Sunkern,Tournegrin +pokemon_name_Sunflora,Héliatronc +pokemon_name_Yanma,Yanma +pokemon_name_Wooper,Axoloto +pokemon_name_Quagsire,Maraistre +pokemon_name_Espeon,Mentali +pokemon_name_Umbreon,Noctali +pokemon_name_Murkrow,Cornebre +pokemon_name_Slowking,Roigada +pokemon_name_Misdreavus,Feuforeve +pokemon_name_Unown,Zarbi +pokemon_name_Wobbuffet,Qulbutoke +pokemon_name_Girafarig,Girafarig +pokemon_name_Pineco,Pomdepik +pokemon_name_Forretress,Foretress +pokemon_name_Dunsparce,Insolourdo +pokemon_name_Gligar,Scorplane +pokemon_name_Steelix,Steelix +pokemon_name_Snubbull,Snubbull +pokemon_name_Granbull,Granbull +pokemon_name_Qwilfish,Qwilfish +pokemon_name_Scizor,Cizavox +pokemon_name_Shuckle,caratroc +pokemon_name_Heracross,Scarhino +pokemon_name_Sneasel,Farfuret +pokemon_name_Teddiursa,Teddiursa +pokemon_name_Ursaring,Ursaring +pokemon_name_Slugma,Limagma +pokemon_name_Magcargo,Volcaropod +pokemon_name_Swinub,Marcacrin +pokemon_name_Piloswine,Cochignon +pokemon_name_Corsola,Corayon +pokemon_name_Remoraid,Remoraid +pokemon_name_Octillery,Octillery +pokemon_name_Delibird,Cadoizo +pokemon_name_Mantine,MDemanta +pokemon_name_Skarmory,Airmure +pokemon_name_Houndour,Malosse +pokemon_name_Houndoom,Demolosse +pokemon_name_Kingdra,Hyporoi +pokemon_name_Phanpy,Phanpy +pokemon_name_Donphan,Donphan +pokemon_name_Porygon2,Porygon2 +pokemon_name_Stantler,Cerfrousse +pokemon_name_Smeargle,Queulorior +pokemon_name_Tyrogue,Debugant +pokemon_name_Hitmontop,Kapoera +pokemon_name_Smoochum,Lippouti +pokemon_name_Elekid,Elekid +pokemon_name_Magby,Magby +pokemon_name_Miltank,Ecremeuh +pokemon_name_Blissey,Leuphorie +pokemon_name_Raikou,Raikou +pokemon_name_Entei,Entei +pokemon_name_Suicune,Suicune +pokemon_name_Larvitar,Embrylex +pokemon_name_Pupitar,Ymphect +pokemon_name_Tyranitar,Tyranocif +pokemon_name_Lugia,Lugia +pokemon_name_Ho-Oh,Ho-Oh +pokemon_name_Celebi,Celebi +----------------------------------------------------------------------------------------------------------------------------------------------------------------- +Story translation: +--- +New Bark Town: +--- +barktown.dat: +--- +barktown_player_house,'s House diff --git a/2.5DHero/2.5DHeroContent/Localization/Tokens_id.dat b/2.5DHero/2.5DHeroContent/Localization/Tokens_id.dat new file mode 100644 index 000000000..1bfd5163d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/Localization/Tokens_id.dat differ diff --git a/2.5DHero/2.5DHeroContent/Localization/Tokens_it.dat b/2.5DHero/2.5DHeroContent/Localization/Tokens_it.dat new file mode 100644 index 000000000..08d0ffccd Binary files /dev/null and b/2.5DHero/2.5DHeroContent/Localization/Tokens_it.dat differ diff --git a/2.5DHero/2.5DHeroContent/Localization/Tokens_sv.dat b/2.5DHero/2.5DHeroContent/Localization/Tokens_sv.dat new file mode 100644 index 000000000..78836d378 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/Localization/Tokens_sv.dat @@ -0,0 +1,695 @@ +language_name,Swedish +--- +MainMenuScreen: +main_menu_continue,Fortsätt +main_menu_load_game,Ladda spel +main_menu_new_game,Nytt spel +main_menu_quit_game,Avsluta spel +LoadScreen: +load_menu_name,Namn +load_menu_badges,Märken +load_menu_location,Plats +load_menu_time,Tid +load_menu_back,Tillbaka +load_menu_load,Ladda +load_menu_delete,Ta bort +DeleteScreen: +delete_menu_delete_confirm,Vill du verkligen to bort sparningen +delete_menu_delete,Ta bort +delete_menu_cancel,Avbryt +LanguageScreen: +language_menu_apply,Applicera +language_menu_back,Tillbaka +--- +Pausescreen: +pause_menu_title,Spel meny +pause_menu_back_to_game,Tillbaka till spelet +pause_menu_disconnect,Koppla bort +pause_menu_quit_to_menu,Avsluta till huvudmenyn +pause_menu_autosave_fail,Kan inte skapa automatisk sparning. +--- +IngameMenu: +game_menu_pokedex,Pokédex +game_menu_party,Pokémon +game_menu_bag,Ryggsäck +game_menu_trainer_card, +game_menu_save,Spara +game_menu_options,Alternativ +game_menu_exit,Avsluta menyn +--- +InventoryScreen: +inventory_menu_bag,Ryggsäck +inventory_menu_backadvice,TRYCK E FÖR ATT GÅ TILLBAKA +inventory_menu_items,Objekt +inventory_menu_description,Beskrivning +--- +NewGameScreen: +new_game_oak_1,Hej!~Ursäkta att låta dig vänta!*Välkommen till världen~av Pokemon!*Mitt namn är Oak.~Folk kallar mig för ~Pokémon professorn.*Denna värld är bebodd~av varselser som vi kallar för +new_game_oak_2,Pokémon.*Folk och Pokémon lever~tillsammans genom att~stötta varandra.~Vissa folk leker med Pokémon,~andra strider med dem.*Men vi vet inte allt om~Pokémon än.~Det är fortfarande många~mysterier kvar att lösa.*Därför studerar jag Pokémon~varje dag.*Nu så, vad sade du~ditt namn var? +new_game_oak_3,~är du redo?*Ditt helt egna~Pokémon äventyr är påväg~att börja.*Du kommer ha roliga~tider och utsättas för ~svåra utmaningar.~En värld av drömmar och~äventyr med Pokémon~väntar!*Låt oss börja!*Jag kommer se~dig senare! +new_game_oak_weird_name_1,Okay! Så ditt namn är~ +new_game_oak_weird_name_2,!*Hmm, det är ett~udda namn. +new_game_oak_known_name_1,Okay! Så ditt namn är~ +new_game_oak_known_name_2,!*Hmm, jag är säker jag~har hört detta namn innan. +new_game_oak_same_name_1,Åh, vi har~samma namn.*Mitt namn är också~ +new_game_oak_same_name_2,! +new_game_oak_name_1,Okay! Så ditt namn är~ +new_game_oak_name_2,! +new_game_your_name,Ditt namn +new_game_choose_skin,Välj utseende +new_game_name_too_short,Det här namnet är för kort. +--- +MapScreen: +map_screen_cities,Städer +map_screen_routes,Rutter +map_screen_places,Platser +--- +PokedexScreen: +pokedex_screen_seen,Sedda +pokedex_screen_obtained,Införskaffade +pokedex_screen_rare,Sällsynta +pokedex_screen_backadvice,TRYCK E FÖR ATT GÅ TILLBAKA +--- +PokemonScreen: +pokemon_screen_choose_a_pokemon,Välj en Pokémon +pokemon_screen_backadvice,TRYCK E FÖR ATT GÅ TILLBAKA +pokemon_screen_item_give,Ge +pokemon_screen_item_take,Ta +pokemon_screen_item_back,Tillbaka +pokemon_screen_doesnt_hold_item,~håller inte ett objekt. +pokemon_screen_take_item_1,Tog +pokemon_screen_take_item_2, från~ +pokemon_screen_take_item_3,~och lade det i~ +pokemon_screen_take_item_4, fickan! +pokemon_screen_give_item_1,gav +pokemon_screen_give_item_2, till~ +pokemon_screen_give_item_3, +pokemon_screen_give_item_4,~och lade +pokemon_screen_give_item_5,~tillbaka till lagret. +pokemon_screen_summary,Sammanfattning +pokemon_screen_switch,Byt +pokemon_screen_item,Objekt +pokemon_screen_back,Tillbaka +pokemon_screen_EMPTY,TOM +--- +Pokemon Status Screen: +All pages: +poke_status_screen_nature,Beteende +poke_status_screen_backadvice,TRYCK E FÖR ATT GÅ TILLBAKA +poke_status_screen_closeadvice,TRYCK E FÖR ATT STÄNGA +poke_status_screen_number,# +Page 1: +poke_status_screen_all_exp,All exp +poke_status_screen_nxt_lv,Nästa Lv. +poke_status_screen_stats_page,Statistik sida +Page 2: +poke_status_screen_OT,OT +poke_status_screen_Item,Objekt +poke_status_screen_no_item,inget objekt +poke_status_screen_ability,Förmåga +poke_status_screen_details_page,Detalj sida +Page 3: +poke_status_screen_power,Kraft +poke_status_screen_accuracy,Träffchans +poke_status_screen_moves_page,Drag sida +--- +Trainer Card Screen: +trainer_screen_trainer_card,Tränarkort +trainer_screen_name,Namn +trainer_screen_points,Poäng +trainer_screen_money,Pengar +trainer_screen_pokedex,Pokédex +trainer_screen_time,Tid +trainer_screen_collected_badges,Samlade märken +trainer_screen_badge,märke +trainer_screen_backadvice,TRYCK E FÖR ATT GÅ TILLBAKA +trainer_screen_empty_badge,??? +--- +Save Screen: +save_screen_title,Vill du spara spelet? +save_screen_name,Namn +save_screen_badges,Märken +save_screen_money,Pengar +save_screen_time,Tid +save_screen_yes,Ja +save_screen_no,Nej +save_screen_success,Sparade spelet. +--- +Options Screen: +option_screen_title,Alternativ +option_screen_warning,Alternativen är inte sparade än, scrolla ned och välj "Spara alternativ." +option_screen_backadvice,TRYCK E FÖR ATT GÅ TILLBAKA +option_screen_description,Beskrivning +option_screen_textspeed,Textfart +option_screen_textspeed_description,Hastigheten som textboxen dyker upp och~visar texten +option_screen_fov,FOV +option_screen_fov_description,Synfältet. Ju högre värdet är,~desto mer kan du se.~Varning: För höga värden kan skapa lagg på större kartor. +option_screen_mousespeed,Mushastighet +option_screen_mousespeed_description,Mushastigheten sätter hastigheten på musen~som kan rotera din vy. +option_screen_volume,Volym +option_screen_volume_description,Volymen av bakgrundsmusiken.~Denna funktion är för alla sparade spel. +option_screen_render_distance,Ritat avstånd +option_screen_render_distance_tiny,Liten +option_screen_render_distance_short,Kort +option_screen_render_distance_normal,Normal +option_screen_render_distance_far,Långt +option_screen_render_distance_extreme,Extremt +option_screen_render_distance_description,Det ritade avståndet bestämmer,~hur långt du kan se.~Genom att sänka värdet, kan du förbättra din FPS. +option_screen_graphics,Grafik +option_screen_graphics_fancy,Vackert +option_screen_graphics_fast,Snabbt +option_screen_graphics_description,Påverkar om vissa objekt ritas ut~eller inte. Genom att sänka värdet, kan du förbättra din FPS.~Denna funktion är för alla sparade spel. +option_screen_offset_map_quality,Offset kartkvalitét +option_screen_offset_map_off,Av +option_screen_offset_map_quality_description,Sätter kvalitén över offset kartan.~Detaljerna och uppdaterings frekvenserna av offset kartor kan öka med detta värde.~Sätt värdet till 0 för att förhindra spelet från att ladda offset kartor. +option_screen_animations_in_battle,Animeringar i strid +option_screen_animations_in_battle_no,Nej +option_screen_animations_in_battle_attacks_off,Attacker av +option_screen_animations_in_battle_yes,Ja +option_screen_animations_in_battle_description,Bestämmer om spelet visar stridsanimationer. +option_screen_difficulty,Svårighetsgrad +option_screen_difficulty_description,Svårighetsgrad~Sätter hur svårt spelet skall vara. +option_screen_battle_style,Stridsstil +option_screen_battle_style_shift,Skiftande +option_screen_battle_style_set,Fast +option_screen_battle_style_description,Stridsstil~Fast: Du blir inte frågad om du vill byta ut din Pokémon~Skiftande: Du kan byta ut din Pokémon efter du har besegrat en utmanare. +option_screen_reset_options,Återställ alternativ. +option_screen_reset_options_description,Återställer alla alternativ. +option_screen_save_options,Spara alternativ. +option_screen_save_options_description,Sparar alternativen och stänger menyn. +option_screen_close_menu,Stäng meny. +option_screen_close_menu_description,Stänger menyn och sparar inte~någon ändring. +--- +Item Detail Screen: +item_detail_screen_use,Använd +item_detail_screen_give,Ge +item_detail_screen_trash,Kasta +item_detail_screen_back,Tillbaka +item_detail_screen_give_item,Ge +--- +Apricorn Screen: +apricorn_screen_apricorns,Apricorns +apricorn_screen_producing,Jag producerar Pokébollarna för tillfället.~Kom tillbaka senare. +apricorn_screen_backadvice,TRYCK E FÖR ATT GÅ TILLBAKA +apricorn_screen_choose_apricorns,Var god välj Apricorns som jag kan ta för att göra Pokébollar. +apricorn_screen_ok,OK +apricorn_screen_clear,Töm +apricorn_screen_take,Ta +apricorn_screen_ready,Jag är redo att producera Pokébollar. Här är resultatet av mitt jobb: +apricorn_screen_obtain, Införskaffad +--- +Daycare Screen: +daycare_screen_daycare,Dagis +daycare_screen_money, / Pengar: +daycare_screen_deposit,Sätt in +daycare_screen_grown,Vuxit: +daycare_screen_lv, / Lv. +daycare_screen_costs, / Kostar: +daycare_screen_pokedollar, PokéDollar +daycare_screen_withdraw,Ta ut +daycare_screen_backadvice,TRYCK E FÖR ATT GÅ TILLBAKA +daycare_screen_pokemon_choose_header,Sätt in Pokémon +--- +Network Screen: +network_screen_isonline,Du är redan i ett co-op spel! Var god stäng anslutningen~för att öppna ett nytt spel eller ansluta igen!~~~Tryck E för att gå tillbaka! +network_screen_header,Co-Op Spelsätt +network_screen_main_header,Du kan antingen gå med i ett spel eller vara en värd~för en ny server för att spela med en vän. +network_screen_main_join,Anslut +network_screen_main_host,Bli värd +network_screen_main_close,Stäng +network_screen_join_header,Anslut till ett spel:~Ange IP- addressen av den som är värd för spelet. +network_screen_join_cancel,Avbryt +network_screen_join_join,Anslut +network_screen_host_header,Var värd:~Du är på väg att öppna ditt spel~för andra spelare i ditt nätverk. +network_screen_host_cancel,Avbryt +network_screen_host_host,Bli värd +--- +Donation screen: +donation_screen_donators,Donatorer +donation_screen_backadvice,Tryck E för att stänga. +--- +Blackout Screen: +black_out_screen_line1,Du har slut på Pokémon! +black_out_screen_line2,Du kommer bli förd +black_out_screen_line3,till det närmaste PokéCentret +black_out_screen_line4,för att förhindra ytterligare skada +black_out_screen_line5,på dina Pokémon. +--- +Battle: +--- +main: +battle_main_trainer_sent_out_1, ~skickade ut +battle_main_trainer_sent_out_2,. +battle_main_trainer_sent_out_3, är på väg~att skicka ut +battle_main_trainer_sent_out_4,!*Vill du byta ut din Pokémon? +battle_main_trainer_sent_out_5,Ja +battle_main_trainer_sent_out_6,Nej +battle_main_choose_pokemon,Välj Pokémon +battle_main_wild_appear_1,En vild +battle_main_wild_appear_2,~dök upp! +battle_main_trainer_intro_1, och~ +battle_main_trainer_intro_2, vill~strida! +battle_main_trainer_intro_3, vill~strida! +battle_main_intro_1,KÖR! +battle_main_intro_2,! +battle_main_trainer_defeat_1,~blev besegrad! +battle_main_trainer_defeat_2, och +battle_main_trainer_defeat_3,~blev besegrad! +battle_main_trainer_defeat_4, fick +battle_main_trainer_defeat_5,~PokéDollar för att du vann! +--- +attackTurn: +battle_attack_poison_damage,~blev skadad av gift! +battle_attack_fire_damage,~blev skadad av dess brännskada! +battle_attack_trainer_item_1, Använde en~ +battle_attack_trainer_item_2,! +battle_attack_asleep, sover. +battle_attack_woke_up, vaknade! +battle_attack_paralyzed, är paralyserad!~Den kan inte röra sig! +battle_attack_frozen_free, är inte~längre frusen! +battle_attack_frozen, har~fryst fast! +battle_attack_flinched, ryggade~tillbaka! +battle_attack_no_longer_confused, är inte~längre förvirrad! +battle_attack_confused, är~förvirrad. +battle_attack_hit_self_confusion, slår sig själv~i förvirring! +battle_attack_no_PP_left, har~ingen PP kvar!* +battle_attack_used, använd +--- +Badges: +badge_Boulder,Boulder +badge_Cascade,Cascade +badge_Thunder,Thunder +badge_Rainbow,Rainbow +badge_Soul,Soul +badge_Marsh,Marsh +badge_Volcano,Volcano +badge_Earth,Earth +badge_Zephyr,Zephyr +badge_Hive,Hive +badge_Plain,Plain +badge_Fog,Fog +badge_Storm,Storm +badge_Mineral,Mineral +badge_Glacier,Glacier +badge_Rising,Rising +--- +Regions: +Johto,Johto +Kanto,Kanto +--- +Places: +Places_???,??? + +Towns: +Places_New Bark Town,New Bark Samhället +Places_Cherrygrove City,Cherrygrove Staden +Places_Violet City,Violet Staden +Places_Azalea Town,Azalea Samhället +Places_Goldenrod City,Goldenrod Staden +Places_Ecruteak City,Ecruteak Staden +Places_Olivine City,Olivine Staden +Places_Cianwood City,Cianwood Staden +Places_Mahogany Town,Mahogany Samhället +Places_Blackthorn City,Blackthorn Staden +Places_Lavender Town,Lavender Samhället + +Special Houses: +Places_Gate,Genomfart +Places_Pokemon Center,Pokémon Center +Places_Pokemon Mart,Pokémon Handelsplats +Places_Elms lab,Elm's Labb +Places_Azalea Town Gym,Azalea Samhällets Gym +Places_Violet City Gym,Violet Stadens Gym +Places_Your House,Ditt Hus +Places_Your Room,Ditt Rum + +Dungeons: +Places_Ilex Forest,Ilex Skogen +Places_Dark Cave,Mörka Grottan +Places_Ruins of Alph,Alph ruinerna +Places_Slowpoke Well,Slowpoke Brunnen +Places_Sprout Tower,Groddtornet +Places_Union Cave,Union Grottan +Places_Mt. Mortar,Mortar Berget +Places_Bell Tower,Klocktornet +Places_Burned Tower,Det Brända Tornet +Places_Glitter Lighthouse,Glitterfyren +Places_Ice Path,Ispassagen +Places_National Park,National Parken +Places_Whirl Islands,Virvel Öarna +Places_Lake of Rage,Raseri Sjön + +Routes: +Places_Route 1,Rutt 1 +Places_Route 2,Rutt 2 +Places_Route 3,Rutt 3 +Places_Route 4,Rutt 4 +Places_Route 5,Rutt 5 +Places_Route 6,Rutt 6 +Places_Route 7,Rutt 7 +Places_Route 8,Rutt 8 +Places_Route 9,Rutt 9 +Places_Route 10,Rutt 10 +Places_Route 11,Rutt 11 +Places_Route 12,Rutt 12 +Places_Route 13,Rutt 13 +Places_Route 14,Rutt 14 +Places_Route 15,Rutt 15 +Places_Route 16,Rutt 16 +Places_Route 17,Rutt 17 +Places_Route 18,Rutt 18 +Places_Route 19,Rutt 19 +Places_Route 20,Rutt 20 +Places_Route 21,Rutt 21 +Places_Route 22,Rutt 22 +Places_Route 23,Rutt 23 +Places_Route 24,Rutt 24 +Places_Route 25,Rutt 25 +Places_Route 26,Rutt 26 +Places_Route 27,Rutt 27 +Places_Route 28,Rutt 28 +Places_Route 29,Rutt 29 +Places_Route 30,Rutt 30 +Places_Route 31,Rutt 31 +Places_Route 32,Rutt 32 +Places_Route 33,Rutt 33 +Places_Route 34,Rutt 34 +Places_Route 35,Rutt 35 +Places_Route 36,Rutt 36 +Places_Route 37,Rutt 37 +Places_Route 38,Rutt 38 +Places_Route 39,Rutt 39 +Places_Route 40,Rutt 40 +Places_Route 41,Rutt 41 +Places_Route 42,Rutt 42 +Places_Route 43,Rutt 43 +Places_Route 44,Rutt 44 +Places_Route 45,Rutt 45 +Places_Route 46,Rutt 46 +--- +Item categories: +item_category_Standard,Standard +item_category_Medicine,Medicin +item_category_Machines,Maskiner +item_category_Pokéballs,Pokébollar +item_category_Plants,Plantor +item_category_KeyItems,Huvudobjekt +--- +GameMessages: +game_message_screenshot,Skärmdump sparad som +game_message_screenshot_failed,Kan inte skapa skärmdump +game_message_fullscreen_on,Fullskärm på +game_message_fullscreen_off,Fullskärm av +game_message_third_person_on,Tredje person på. +game_message_third_person_off,Tredje person av. +game_message_free_camera_on,Fri kamera på +game_message_free_camera_off,Fri kamera av +game_message_music_on,Musik på +game_message_music_off,Musik av +game_message_continue_autosave,Fortsatt sparat spel: +--- +Online: +game_message_close_connection,Du stängde co-op spelet. +game_message_disconncet,Du kopplade ifrån dig från värden. +game_message_cannot_connect_client_1,Kan inte koppla upp mot värden ( +game_message_cannot_connect_client_2,)! +game_message_client_connect_1,Du anslöt till spelet ( +game_message_client_connect_2,)! +game_message_client_host_closed_1,Värden ( +game_message_client_host_closed_2,) har stängt ned uppkopplingen. +game_message_client_outdated_newer_version,Du har en ouppdaterad eller nyare version av spelet. +game_message_host_session_started,Du (värd) startade en Co-Op session. +game_message_host_outdated_newer_version,Klienten har en ouppdaterad eller nyare version av spelet! +game_message_host_client_accept,En klient anslöt till spelet! +game_message_host_client_disconnect,Klienten stängde ned sin uppkoppling! Co-Op sessionen har blivit nedstängd. +--- +General: +HP,HP +PP,PP +Lv.,Lv. +Level,Level +Attack,Attack +Defense,Försvar +Special_Attack,Special Attack +Special_Defense,Special Försvar +Speed,Hastighet +--- +Pokemon: +pokemon_name_Bulbasaur,Bulbasaur +pokemon_name_Ivysaur,Ivysaur +pokemon_name_Venusaur,Venusaur +pokemon_name_Charmander,Charmander +pokemon_name_Charmeleon,Charmeleon +pokemon_name_Charizard,Charizard +pokemon_name_Squirtle,Squirtle +pokemon_name_Wartortle,Wartortle +pokemon_name_Blastoise,Blastoise +pokemon_name_Caterpie,Caterpie +pokemon_name_Metapod,Metapod +pokemon_name_Butterfree,Butterfree +pokemon_name_Weedle,Weedle +pokemon_name_Kakuna,Kakuna +pokemon_name_Beedrill,Beedrill +pokemon_name_Pidgey,Pidgey +pokemon_name_Pidgeotto,Pidgeotto +pokemon_name_Pidgeot,Pidgeot +pokemon_name_Rattata,Rattata +pokemon_name_Raticate,Raticate +pokemon_name_Spearow,Spearow +pokemon_name_Fearow,Fearow +pokemon_name_Ekans,Ekans +pokemon_name_Arbok,Arbok +pokemon_name_Pikachu,Pikachu +pokemon_name_Raichu,Raichu +pokemon_name_Sandshrew,Sandshrew +pokemon_name_Sandshlash,Sandslash +pokemon_name_Nidoran,Nidoran +pokemon_name_Nidorina,Nidorina +pokemon_name_Nidoqueen,Nidoqueen +pokemon_name_Nidorino,Nidorino +pokemon_name_Nidoking,Nidoking +pokemon_name_Clefairy,Clefairy +pokemon_name_Clefable,Clefable +pokemon_name_Vulpix,Vulpix +pokemon_name_Ninetails,Ninetails +pokemon_name_Jigglypuff,Jigglypuff +pokemon_name_Wigglytuff,Wigglytuff +pokemon_name_Zubat,Zubat +pokemon_name_Golbat,Golbat +pokemon_name_Oddish,Oddish +pokemon_name_Gloom,Gloom +pokemon_name_Vileplume,Vileplume +pokemon_name_Paras,Paras +pokemon_name_Parasect,Parasect +pokemon_name_Venonat,Venonat +pokemon_name_Venomoth,Venomoth +pokemon_name_Diglett,Diglett +pokemon_name_Dugtrio,Dugtrio +pokemon_name_Meowth,Meowth +pokemon_name_Persian,Persian +pokemon_name_Psyduck,Psyduck +pokemon_name_Golduck,Golduck +pokemon_name_Mankey,Mankey +pokemon_name_Primeape,Primeape +pokemon_name_Growlithe,Growlithe +pokemon_name_Arcanine,Arcanine +pokemon_name_Poliwag,Poliwag +pokemon_name_Poliwhirl,Poliwhirl +pokemon_name_Poliwrath,Poliwrath +pokemon_name_Abra,Abra +pokemon_name_Kadabra,Kadabra +pokemon_name_Alakazam,Alakazam +pokemon_name_Machop,Machop +pokemon_name_Machoke,Machoke +pokemon_name_Machamp,Machamp +pokemon_name_Bellsprout,Bellsprout +pokemon_name_Weepinbell,Weepinbell +pokemon_name_Victreebel,Victreebel +pokemon_name_Tentacool,Tentacool +pokemon_name_Tentacruel,Tentacruel +pokemon_name_Geodude,Geodude +pokemon_name_Graveler,Graveler +pokemon_name_Golem,Golem +pokemon_name_Ponyta,Ponyta +pokemon_name_Rapidash,Rapidash +pokemon_name_Slowpoke,Slowpoke +pokemon_name_Slowbro,Slowbro +pokemon_name_Magnemite,Magnemite +pokemon_name_Magneton,Magneton +pokemon_name_Farfetch'd,Farfetch'd +pokemon_name_Doduo,Doduo +pokemon_name_Dodrio,Dodrio +pokemon_name_Seel,Seel +pokemon_name_Dewgong,Dewgong +pokemon_name_Grimer,Grimer +pokemon_name_Muk,Muk +pokemon_name_Shellder,Shellder +pokemon_name_Cloyster,Cloyster +pokemon_name_Gastly,Gastly +pokemon_name_Haunter,Haunter +pokemon_name_Gengar,Gengar +pokemon_name_Onix,Onix +pokemon_name_Drowzee,Drowzee +pokemon_name_Hypno,Hypno +pokemon_name_Krabby,Krabby +pokemon_name_Kingler,Kingler +pokemon_name_Voltorb,Voltorb +pokemon_name_Electrode,Electrode +pokemon_name_Exeggcute,Exeggcute +pokemon_name_Exeggutor,Exeggutor +pokemon_name_Cubone,Cubone +pokemon_name_Marowak,Marowak +pokemon_name_Hitmonlee,Hitmonlee +pokemon_name_Hitmonchan,Hitmonchan +pokemon_name_Lickitung,Lickitung +pokemon_name_Koffing,Koffing +pokemon_name_Weezing,Weezing +pokemon_name_Rhyhorn,Rhyhorn +pokemon_name_Rhydon,Rhydon +pokemon_name_Chansey,Chansey +pokemon_name_Tangela,Tangela +pokemon_name_Kangaskhan,Kangaskhan +pokemon_name_Horsea,Horsea +pokemon_name_Seedra,Seedra +pokemon_name_Goldeen,Goldeen +pokemon_name_Seaking,Seaking +pokemon_name_Staryu,Staryu +pokemon_name_Starmie,Starmie +pokemon_name_Mr. Mime,Mr. Mime +pokemon_name_Scyther,Scyther +pokemon_name_Jynx,Jynx +pokemon_name_Electabuzz,Electabuzz +pokemon_name_Magmar,Magmar +pokemon_name_Pinsir,Pinsir +pokemon_name_Tauros,Tauros +pokemon_name_Magikarp,Magikarp +pokemon_name_Gyarados,Gyarados +pokemon_name_Lapras,Lapras +pokemon_name_Ditto,Ditto +pokemon_name_Eevee,Eevee +pokemon_name_Vaporeon,Vaporeon +pokemon_name_Jolteon,Jolteon +pokemon_name_Flareon,Flareon +pokemon_name_Porygon,Porygon +pokemon_name_Omanyte,Omanyte +pokemon_name_Omastar,Omastar +pokemon_name_Kabuto,Kabuto +pokemon_name_Kabutops,Kabutops +pokemon_name_Aerodactyl,Aerodactyl +pokemon_name_Snorlax,Snorlax +pokemon_name_Articuno,Articuno +pokemon_name_Zapdos,Zapdos +pokemon_name_Moltres,Moltres +pokemon_name_Dratini,Dratini +pokemon_name_Dragonair,Dragonair +pokemon_name_Dragonite,Dragonite +pokemon_name_Mewtwo,Mewtwo +pokemon_name_Mew,Mew +pokemon_name_Chikorita,Chikorita +pokemon_name_Bayleef,Bayleef +pokemon_name_Meganium,Meganium +pokemon_name_Cyndaquil,Cyndaquil +pokemon_name_Quilava,Quilava +pokemon_name_Typhlosion,Typhlosion +pokemon_name_Totodile,Totodile +pokemon_name_Croconaw,Croconaw +pokemon_name_Feraligatr,Feraligatr +pokemon_name_Sentret,Sentret +pokemon_name_Furret,Furret +pokemon_name_Hoothoot,Hoothoot +pokemon_name_Noctowl,Noctowl +pokemon_name_Ledyba,Ledyba +pokemon_name_Ledian,Ledian +pokemon_name_Spinarak,Spinarak +pokemon_name_Ariados,Ariados +pokemon_name_Crobat,Crobat +pokemon_name_Chinchou,Chinchou +pokemon_name_Lanturn,Lanturn +pokemon_name_Pichu,Pichu +pokemon_name_Cleffa,Cleffa +pokemon_name_Igglybuff,Igglybuff +pokemon_name_Togepi,Togepi +pokemon_name_Togetic,Togetic +pokemon_name_Natu,Natu +pokemon_name_Xatu,Xatu +pokemon_name_Mareep,Mareep +pokemon_name_Flaaffy,Flaaffy +pokemon_name_Ampharos,Ampharos +pokemon_name_Bellossom,Bellossom +pokemon_name_Marill,Marill +pokemon_name_Azumarill,Azumarill +pokemon_name_Sudowoodo,Sudowoodo +pokemon_name_Politoed,Politoed +pokemon_name_Hoppip,Hoppip +pokemon_name_Skiploom,Skiploom +pokemon_name_Jumpluff,Jumpluff +pokemon_name_Aipom,Aipom +pokemon_name_Sunkern,Sunkern +pokemon_name_Sunflora,Sunflora +pokemon_name_Yanma,Yanma +pokemon_name_Wooper,Wooper +pokemon_name_Quagsire,Quagsire +pokemon_name_Espeon,Espeon +pokemon_name_Umbreon,Umbreon +pokemon_name_Murkrow,Murkrow +pokemon_name_Slowking,Slowking +pokemon_name_Misdreavus,Misdreavus +pokemon_name_Unown,Unown +pokemon_name_Wobbuffet,Wobbuffet +pokemon_name_Girafarig,Girafarig +pokemon_name_Pineco,Pineco +pokemon_name_Forretress,Forretress +pokemon_name_Dunsparce,Dunsparce +pokemon_name_Gligar,Gligar +pokemon_name_Steelix,Steelix +pokemon_name_Snubbull,Snubbull +pokemon_name_Granbull,Granbull +pokemon_name_Qwilfish,Qwilfish +pokemon_name_Scizor,Scizor +pokemon_name_Shuckle,Shuckle +pokemon_name_Heracross,Heracross +pokemon_name_Sneasel,Sneasel +pokemon_name_Teddiursa,Teddiursa +pokemon_name_Ursaring,Ursaring +pokemon_name_Slugma,Slugma +pokemon_name_Magcargo,Magcargo +pokemon_name_Swinub,Swinub +pokemon_name_Piloswine,Piloswine +pokemon_name_Corsola,Corsola +pokemon_name_Remoraid,Remoraid +pokemon_name_Octillery,Octillery +pokemon_name_Delibird,Delibird +pokemon_name_Mantine,Mantine +pokemon_name_Skarmory,Skarmory +pokemon_name_Houndour,Houndour +pokemon_name_Houndoom,Houndoom +pokemon_name_Kingdra,Kingdra +pokemon_name_Phanpy,Phanpy +pokemon_name_Donphan,Donphan +pokemon_name_Porygon2,Porygon2 +pokemon_name_Stantler,Stantler +pokemon_name_Smeargle,Smeargle +pokemon_name_Tyrogue,Tyrogue +pokemon_name_Hitmontop,Hitmontop +pokemon_name_Smoochum,Smoochum +pokemon_name_Elekid,Elekid +pokemon_name_Magby,Magby +pokemon_name_Miltank,Miltank +pokemon_name_Blissey,Blissey +pokemon_name_Raikou,Raikou +pokemon_name_Entei,Entei +pokemon_name_Suicune,Suicune +pokemon_name_Larvitar,Larvitar +pokemon_name_Pupitar,Pupitar +pokemon_name_Tyranitar,Tyranitar +pokemon_name_Lugia,Lugia +pokemon_name_Ho-Oh,Ho-Oh +pokemon_name_Celebi,Celebi +----------------------------------------------------------------------------------------------------------------------------------------------------------------- +Story translation: +--- +New Bark Town: +--- +barktown.dat: +--- +barktown_player_house,'s House \ No newline at end of file diff --git a/2.5DHero/2.5DHeroContent/Localization/Tokens_tr.dat b/2.5DHero/2.5DHeroContent/Localization/Tokens_tr.dat new file mode 100644 index 000000000..3ee44d21a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/Localization/Tokens_tr.dat differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Effects/BackdropShader.fx b/2.5DHero/2.5DHeroContent/SharedResources/Effects/BackdropShader.fx new file mode 100644 index 000000000..6c79625c6 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/SharedResources/Effects/BackdropShader.fx @@ -0,0 +1,61 @@ +float4x4 World; +float4x4 View; +float4x4 Projection; + +// TODO: add effect parameters here. + +texture color; +texture normals; +texture offset; +float4 DiffuseColor; +float2 TexStretch; + +sampler color_sampler = sampler_state { texture = < color > ; }; +sampler normal_sampler = sampler_state { texture = < normals > ; }; +sampler offset_sampler = sampler_state { texture = < offset > ; }; + +struct VertexShaderInput +{ + float4 Position : POSITION0; + float2 TexCoord : TEXCOORD0; + float3 Normal : NORMAL; +}; + +struct VertexShaderOutput +{ + float4 Position : POSITION0; + float2 TexCoord : TEXCOORD1; + float4 Normal : TEXCOORD0; +}; + +VertexShaderOutput VertexShaderFunction(VertexShaderInput input) +{ + VertexShaderOutput output; + + float4 worldPosition = mul(input.Position, World); + float4 viewPosition = mul(worldPosition, View); + + output.Position = mul(viewPosition, Projection); + output.Normal = mul(input.Normal, World); + output.TexCoord = input.TexCoord; + + return output; +} + +float4 TextureShaderFunction(VertexShaderOutput input) : COLOR0 +{ + float4 resultColor = tex2D(color_sampler, float2(input.TexCoord.x * TexStretch.x, input.TexCoord.y * TexStretch.y)) * DiffuseColor; + + return resultColor; +} + +technique Texture +{ + pass Pass1 + { + // TODO: set renderstates here. + + VertexShader = compile vs_2_0 VertexShaderFunction(); + PixelShader = compile ps_2_0 TextureShaderFunction(); + } +} \ No newline at end of file diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Effects/DiffuseShader.fx b/2.5DHero/2.5DHeroContent/SharedResources/Effects/DiffuseShader.fx new file mode 100644 index 000000000..3742f792e --- /dev/null +++ b/2.5DHero/2.5DHeroContent/SharedResources/Effects/DiffuseShader.fx @@ -0,0 +1,75 @@ +float4x4 WorldMatrix; +float4x4 ViewMatrix; +float4x4 ProjectionMatrix; + +float4 AmbienceColor = float4(0.1f, 0.1f, 0.1f, 1.0f); + +// For Diffuse Lightning +float4x4 WorldInverseTransposeMatrix; +float3 DiffuseLightDirection = float3(-1.0f, 0.0f, 0.0f); +float4 DiffuseColor = float4(1.0f, 1.0f, 1.0f, 1.0f); + +// For Texture +texture ModelTexture; +sampler2D TextureSampler = sampler_state { + Texture = (ModelTexture); + MagFilter = Linear; + MinFilter = Linear; + AddressU = Clamp; + AddressV = Clamp; +}; + +struct VertexShaderInput +{ + float4 Position : POSITION0; + // For Diffuse Lightning + float4 NormalVector : NORMAL0; + // For Texture + float2 TextureCoordinate : TEXCOORD0; +}; + +struct VertexShaderOutput +{ + float4 Position : POSITION0; + // For Diffuse Lightning + float4 VertexColor : COLOR0; + // For Texture + float2 TextureCoordinate : TEXCOORD0; +}; + +VertexShaderOutput VertexShaderFunction(VertexShaderInput input) +{ + VertexShaderOutput output; + + float4 worldPosition = mul(input.Position, WorldMatrix); + float4 viewPosition = mul(worldPosition, ViewMatrix); + output.Position = mul(viewPosition, ProjectionMatrix); + + // For Diffuse Lightning + float4 normal = normalize(mul(input.NormalVector, WorldInverseTransposeMatrix)); + float lightIntensity = dot(normal, DiffuseLightDirection); + output.VertexColor = saturate(DiffuseColor * lightIntensity); + + // For Texture + output.TextureCoordinate = input.TextureCoordinate; + + return output; +} + +float4 PixelShaderFunction(VertexShaderOutput input) : COLOR0 +{ + // For Texture + float4 VertexTextureColor = tex2D(TextureSampler, input.TextureCoordinate); + VertexTextureColor.a = 1; + + return saturate(VertexTextureColor * input.VertexColor + AmbienceColor); +} + +technique Texture +{ + pass Pass1 + { + VertexShader = compile vs_2_0 VertexShaderFunction(); + PixelShader = compile ps_2_0 PixelShaderFunction(); + } +} \ No newline at end of file diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Effects/GaussianBlur.fx b/2.5DHero/2.5DHeroContent/SharedResources/Effects/GaussianBlur.fx new file mode 100644 index 000000000..c548d5646 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/SharedResources/Effects/GaussianBlur.fx @@ -0,0 +1,49 @@ +#define RADIUS 7 +#define KERNEL_SIZE (RADIUS * 2 + 1) + +//----------------------------------------------------------------------------- +// Globals. +//----------------------------------------------------------------------------- + +float weights[KERNEL_SIZE]; +float2 offsets[KERNEL_SIZE]; + +//----------------------------------------------------------------------------- +// Textures. +//----------------------------------------------------------------------------- + +texture colorMapTexture; + +sampler2D colorMap = sampler_state +{ + Texture = ; + MipFilter = Linear; + MinFilter = Linear; + MagFilter = Linear; +}; + +//----------------------------------------------------------------------------- +// Pixel Shaders. +//----------------------------------------------------------------------------- + +float4 PS_GaussianBlur(float2 texCoord : TEXCOORD) : COLOR0 +{ + float4 color = float4(0.0f, 0.0f, 0.0f, 0.0f); + + for (int i = 0; i < KERNEL_SIZE; ++i) + color += tex2D(colorMap, texCoord + offsets[i]) * weights[i]; + + return color; +} + +//----------------------------------------------------------------------------- +// Techniques. +//----------------------------------------------------------------------------- + +technique GaussianBlur +{ + pass + { + PixelShader = compile ps_2_0 PS_GaussianBlur(); + } +} diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Fonts/Braille.png b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/Braille.png new file mode 100644 index 000000000..0a733839e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/Braille.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Fonts/GameJolt.png b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/GameJolt.png new file mode 100644 index 000000000..e4f7e8c88 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/GameJolt.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Fonts/GameJolt.xnb b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/GameJolt.xnb new file mode 100644 index 000000000..ac4f0f6e0 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/GameJolt.xnb differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Fonts/InGame.png b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/InGame.png new file mode 100644 index 000000000..87960d387 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/InGame.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Fonts/TextFont.png b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/TextFont.png new file mode 100644 index 000000000..fded07fd2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/TextFont.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Fonts/Unown.png b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/Unown.png new file mode 100644 index 000000000..93f677c46 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/Unown.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Fonts/chatFont.png b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/chatFont.png new file mode 100644 index 000000000..be3b9d8e9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/chatFont.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Fonts/mainFont.png b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/mainFont.png new file mode 100644 index 000000000..28f01603a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/mainFont.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Fonts/miniFont.spritefont b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/miniFont.spritefont new file mode 100644 index 000000000..762a44a44 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/SharedResources/Fonts/miniFont.spritefont @@ -0,0 +1,163 @@ + + + + + + + Verdana Bold + + + 11 + + + 0 + + + true + + + + + + + + + + + + ʯ + + + ʰ + ΅ + + + + + + + + + + + + Ą + Ą + + + ą + ą + + + Ć + Ć + + + ć + ć + + + Ę + Ę + + + ę + ę + + + Ł + Ł + + + ł + ł + + + Ń + Ń + + + ń + ń + + + Ó + Ó + + + ó + ó + + + Ś + Ś + + + ś + ś + + + Ź + Ź + + + ź + ź + + + Ż + Ż + + + ż + ż + + + + + + + + + ʹ + Ͽ + + + Ѐ + ԓ + + + ֑ + ״ + + + + diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Models/SkyDome.x b/2.5DHero/2.5DHeroContent/SharedResources/Models/SkyDome.x new file mode 100644 index 000000000..b2883ac53 --- /dev/null +++ b/2.5DHero/2.5DHeroContent/SharedResources/Models/SkyDome.x @@ -0,0 +1,14692 @@ +xof 0302txt 0032 +Header { + 1; + 0; + 1; +} +template Header { + <3D82AB43-62DA-11cf-AB39-0020AF71E433> + WORD major; + WORD minor; + DWORD flags; +} + +template Vector { + <3D82AB5E-62DA-11cf-AB39-0020AF71E433> + FLOAT x; + FLOAT y; + FLOAT z; +} + +template Coords2d { + + FLOAT u; + FLOAT v; +} + +template Matrix4x4 { + + array FLOAT matrix[16]; +} + +template ColorRGBA { + <35FF44E0-6C7C-11cf-8F52-0040333594A3> + FLOAT red; + FLOAT green; + FLOAT blue; + FLOAT alpha; +} + +template ColorRGB { + + FLOAT red; + FLOAT green; + FLOAT blue; +} + +template TextureFilename { + + STRING filename; +} + +template Material { + <3D82AB4D-62DA-11cf-AB39-0020AF71E433> + ColorRGBA faceColor; + FLOAT power; + ColorRGB specularColor; + ColorRGB emissiveColor; + [...] +} + +template MeshFace { + <3D82AB5F-62DA-11cf-AB39-0020AF71E433> + DWORD nFaceVertexIndices; + array DWORD faceVertexIndices[nFaceVertexIndices]; +} + +template MeshTextureCoords { + + DWORD nTextureCoords; + array Coords2d textureCoords[nTextureCoords]; +} + +template MeshMaterialList { + + DWORD nMaterials; + DWORD nFaceIndexes; + array DWORD faceIndexes[nFaceIndexes]; + [Material] +} + +template MeshNormals { + + DWORD nNormals; + array Vector normals[nNormals]; + DWORD nFaceNormals; + array MeshFace faceNormals[nFaceNormals]; +} + +template Mesh { + <3D82AB44-62DA-11cf-AB39-0020AF71E433> + DWORD nVertices; + array Vector vertices[nVertices]; + DWORD nFaces; + array MeshFace faces[nFaces]; + [...] +} + +template FrameTransformMatrix { + + Matrix4x4 frameMatrix; +} + +template Frame { + <3D82AB46-62DA-11cf-AB39-0020AF71E433> + [...] +} +template FloatKeys { + <10DD46A9-775B-11cf-8F52-0040333594A3> + DWORD nValues; + array FLOAT values[nValues]; +} + +template TimedFloatKeys { + + DWORD time; + FloatKeys tfkeys; +} + +template AnimationKey { + <10DD46A8-775B-11cf-8F52-0040333594A3> + DWORD keyType; + DWORD nKeys; + array TimedFloatKeys keys[nKeys]; +} + +template AnimationOptions { + + DWORD openclosed; + DWORD positionquality; +} + +template Animation { + <3D82AB4F-62DA-11cf-AB39-0020AF71E433> + [...] +} + +template AnimationSet { + <3D82AB50-62DA-11cf-AB39-0020AF71E433> + [Animation] +} + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template VertexDuplicationIndices { + + DWORD nIndices; + DWORD nOriginalVertices; + array DWORD indices[nIndices]; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array FLOAT weights[nWeights]; + Matrix4x4 matrixOffset; +} + + +Mesh M_Kugel_0 { + 1706; +0.000000; 54.896568; 0.000000;, +100.000000; 0.000000; 0.000000;, +99.691734; 0.000000; 7.845910;, +98.768837; 0.000000; 15.643447;, +97.236992; 0.000000; 23.344536;, +95.105652; 0.000000; 30.901699;, +92.387955; 0.000000; 38.268345;, +89.100655; 0.000000; 45.399052;, +85.264015; 0.000000; 52.249855;, +80.901703; 0.000000; 58.778526;, +76.040596; 0.000000; 64.944801;, +70.710678; 0.000000; 70.710678;, +64.944801; 0.000000; 76.040596;, +58.778526; 0.000000; 80.901703;, +52.249855; 0.000000; 85.264015;, +45.399052; 0.000000; 89.100655;, +38.268345; 0.000000; 92.387955;, +30.901699; 0.000000; 95.105652;, +23.344536; 0.000000; 97.236992;, +15.643447; 0.000000; 98.768837;, +7.845910; 0.000000; 99.691734;, +0.000000; 0.000000; 100.000000;, +-7.845910; 0.000000; 99.691734;, +-15.643447; 0.000000; 98.768837;, +-23.344536; 0.000000; 97.236992;, +-30.901699; 0.000000; 95.105652;, +-38.268345; 0.000000; 92.387955;, +-45.399052; 0.000000; 89.100655;, +-52.249855; 0.000000; 85.264015;, +-58.778526; 0.000000; 80.901703;, +-64.944801; 0.000000; 76.040596;, +-70.710678; 0.000000; 70.710678;, +-76.040596; 0.000000; 64.944801;, +-80.901703; 0.000000; 58.778526;, +-85.264015; 0.000000; 52.249855;, +-89.100655; 0.000000; 45.399052;, +-92.387955; 0.000000; 38.268345;, +-95.105652; 0.000000; 30.901699;, +-97.236992; 0.000000; 23.344536;, +-98.768837; 0.000000; 15.643447;, +-99.691734; 0.000000; 7.845910;, +-100.000000; 0.000000; 0.000000;, +-99.691734; 0.000000; -7.845910;, +-98.768837; 0.000000; -15.643447;, +-97.236992; 0.000000; -23.344536;, +-95.105652; 0.000000; -30.901699;, +-92.387955; 0.000000; -38.268345;, +-89.100655; 0.000000; -45.399052;, +-85.264015; 0.000000; -52.249855;, +-80.901703; 0.000000; -58.778526;, +-76.040596; 0.000000; -64.944801;, +-70.710678; 0.000000; -70.710678;, +-64.944801; 0.000000; -76.040596;, +-58.778526; 0.000000; -80.901703;, +-52.249855; 0.000000; -85.264015;, +-45.399052; 0.000000; -89.100655;, +-38.268345; 0.000000; -92.387955;, +-30.901699; 0.000000; -95.105652;, +-23.344536; 0.000000; -97.236992;, +-15.643447; 0.000000; -98.768837;, +-7.845910; 0.000000; -99.691734;, +-0.000000; 0.000000; -100.000000;, +7.845910; 0.000000; -99.691734;, +15.643447; 0.000000; -98.768837;, +23.344536; 0.000000; -97.236992;, +30.901699; 0.000000; -95.105652;, +38.268345; 0.000000; -92.387955;, +45.399052; 0.000000; -89.100655;, +52.249855; 0.000000; -85.264015;, +58.778526; 0.000000; -80.901703;, +64.944801; 0.000000; -76.040596;, +70.710678; 0.000000; -70.710678;, +76.040596; 0.000000; -64.944801;, +80.901703; 0.000000; -58.778526;, +85.264015; 0.000000; -52.249855;, +89.100655; 0.000000; -45.399052;, +92.387955; 0.000000; -38.268345;, +95.105652; 0.000000; -30.901699;, +97.236992; 0.000000; -23.344536;, +98.768837; 0.000000; -15.643447;, +99.691734; 0.000000; -7.845910;, +99.691734; 4.307135; 0.000000;, +99.384415; 4.307135; 7.821723;, +98.464363; 4.307135; 15.595223;, +96.937241; 4.307135; 23.272573;, +94.812469; 4.307135; 30.806440;, +92.103149; 4.307135; 38.150375;, +88.825981; 4.307135; 45.259098;, +85.001175; 4.307135; 52.088787;, +80.652306; 4.307135; 58.597332;, +75.806190; 4.307135; 64.744598;, +70.492699; 4.307135; 70.492699;, +64.744598; 4.307135; 75.806190;, +58.597332; 4.307135; 80.652306;, +52.088787; 4.307135; 85.001175;, +45.259098; 4.307135; 88.825981;, +38.150375; 4.307135; 92.103149;, +30.806440; 4.307135; 94.812469;, +23.272573; 4.307135; 96.937241;, +15.595223; 4.307135; 98.464363;, +7.821723; 4.307135; 99.384415;, +0.000000; 4.307135; 99.691734;, +-7.821723; 4.307135; 99.384415;, +-15.595223; 4.307135; 98.464363;, +-23.272573; 4.307135; 96.937241;, +-30.806440; 4.307135; 94.812469;, +-38.150375; 4.307135; 92.103149;, +-45.259098; 4.307135; 88.825981;, +-52.088787; 4.307135; 85.001175;, +-58.597332; 4.307135; 80.652306;, +-64.744598; 4.307135; 75.806190;, +-70.492699; 4.307135; 70.492699;, +-75.806190; 4.307135; 64.744598;, +-80.652306; 4.307135; 58.597332;, +-85.001175; 4.307135; 52.088787;, +-88.825981; 4.307135; 45.259098;, +-92.103149; 4.307135; 38.150375;, +-94.812469; 4.307135; 30.806440;, +-96.937241; 4.307135; 23.272573;, +-98.464363; 4.307135; 15.595223;, +-99.384415; 4.307135; 7.821723;, +-99.691734; 4.307135; 0.000000;, +-99.384415; 4.307135; -7.821723;, +-98.464363; 4.307135; -15.595223;, +-96.937241; 4.307135; -23.272573;, +-94.812469; 4.307135; -30.806440;, +-92.103149; 4.307135; -38.150375;, +-88.825981; 4.307135; -45.259098;, +-85.001175; 4.307135; -52.088787;, +-80.652306; 4.307135; -58.597332;, +-75.806190; 4.307135; -64.744598;, +-70.492699; 4.307135; -70.492699;, +-64.744598; 4.307135; -75.806190;, +-58.597332; 4.307135; -80.652306;, +-52.088787; 4.307135; -85.001175;, +-45.259098; 4.307135; -88.825981;, +-38.150375; 4.307135; -92.103149;, +-30.806440; 4.307135; -94.812469;, +-23.272573; 4.307135; -96.937241;, +-15.595223; 4.307135; -98.464363;, +-7.821723; 4.307135; -99.384415;, +-0.000000; 4.307135; -99.691734;, +7.821723; 4.307135; -99.384415;, +15.595223; 4.307135; -98.464363;, +23.272573; 4.307135; -96.937241;, +30.806440; 4.307135; -94.812469;, +38.150375; 4.307135; -92.103149;, +45.259098; 4.307135; -88.825981;, +52.088787; 4.307135; -85.001175;, +58.597332; 4.307135; -80.652306;, +64.744598; 4.307135; -75.806190;, +70.492699; 4.307135; -70.492699;, +75.806190; 4.307135; -64.744598;, +80.652306; 4.307135; -58.597332;, +85.001175; 4.307135; -52.088787;, +88.825981; 4.307135; -45.259098;, +92.103149; 4.307135; -38.150375;, +94.812469; 4.307135; -30.806440;, +96.937241; 4.307135; -23.272573;, +98.464363; 4.307135; -15.595223;, +99.384415; 4.307135; -7.821723;, +98.768837; 8.587716; 0.000000;, +98.464363; 8.587716; 7.749313;, +97.552826; 8.587716; 15.450850;, +96.039841; 8.587716; 23.057127;, +93.934746; 8.587716; 30.521248;, +91.250504; 8.587716; 37.797195;, +88.003677; 8.587716; 44.840111;, +84.214272; 8.587716; 51.606575;, +79.905663; 8.587716; 58.054863;, +75.104408; 8.587716; 64.145226;, +69.840111; 8.587716; 69.840111;, +64.145226; 8.587716; 75.104408;, +58.054863; 8.587716; 79.905663;, +51.606575; 8.587716; 84.214272;, +44.840111; 8.587716; 88.003677;, +37.797195; 8.587716; 91.250504;, +30.521248; 8.587716; 93.934746;, +23.057127; 8.587716; 96.039841;, +15.450850; 8.587716; 97.552826;, +7.749313; 8.587716; 98.464363;, +0.000000; 8.587716; 98.768837;, +-7.749313; 8.587716; 98.464363;, +-15.450850; 8.587716; 97.552826;, +-23.057127; 8.587716; 96.039841;, +-30.521248; 8.587716; 93.934746;, +-37.797195; 8.587716; 91.250504;, +-44.840111; 8.587716; 88.003677;, +-51.606575; 8.587716; 84.214272;, +-58.054863; 8.587716; 79.905663;, +-64.145226; 8.587716; 75.104408;, +-69.840111; 8.587716; 69.840111;, +-75.104408; 8.587716; 64.145226;, +-79.905663; 8.587716; 58.054863;, +-84.214272; 8.587716; 51.606575;, +-88.003677; 8.587716; 44.840111;, +-91.250504; 8.587716; 37.797195;, +-93.934746; 8.587716; 30.521248;, +-96.039841; 8.587716; 23.057127;, +-97.552826; 8.587716; 15.450850;, +-98.464363; 8.587716; 7.749313;, +-98.768837; 8.587716; 0.000000;, +-98.464363; 8.587716; -7.749313;, +-97.552826; 8.587716; -15.450850;, +-96.039841; 8.587716; -23.057127;, +-93.934746; 8.587716; -30.521248;, +-91.250504; 8.587716; -37.797195;, +-88.003677; 8.587716; -44.840111;, +-84.214272; 8.587716; -51.606575;, +-79.905663; 8.587716; -58.054863;, +-75.104408; 8.587716; -64.145226;, +-69.840111; 8.587716; -69.840111;, +-64.145226; 8.587716; -75.104408;, +-58.054863; 8.587716; -79.905663;, +-51.606575; 8.587716; -84.214272;, +-44.840111; 8.587716; -88.003677;, +-37.797195; 8.587716; -91.250504;, +-30.521248; 8.587716; -93.934746;, +-23.057127; 8.587716; -96.039841;, +-15.450850; 8.587716; -97.552826;, +-7.749313; 8.587716; -98.464363;, +-0.000000; 8.587716; -98.768837;, +7.749313; 8.587716; -98.464363;, +15.450850; 8.587716; -97.552826;, +23.057127; 8.587716; -96.039841;, +30.521248; 8.587716; -93.934746;, +37.797195; 8.587716; -91.250504;, +44.840111; 8.587716; -88.003677;, +51.606575; 8.587716; -84.214272;, +58.054863; 8.587716; -79.905663;, +64.145226; 8.587716; -75.104408;, +69.840111; 8.587716; -69.840111;, +75.104408; 8.587716; -64.145226;, +79.905663; 8.587716; -58.054863;, +84.214272; 8.587716; -51.606575;, +88.003677; 8.587716; -44.840111;, +91.250504; 8.587716; -37.797195;, +93.934746; 8.587716; -30.521248;, +96.039841; 8.587716; -23.057127;, +97.552826; 8.587716; -15.450850;, +98.464363; 8.587716; -7.749313;, +97.236992; 12.815350; 0.000000;, +96.937241; 12.815350; 7.629127;, +96.039841; 12.815350; 15.211217;, +94.550323; 12.815350; 22.699526;, +92.477875; 12.815350; 30.047882;, +89.835266; 12.815350; 37.210987;, +86.638794; 12.815350; 44.144672;, +82.908165; 12.815350; 50.806190;, +78.666382; 12.815350; 57.154469;, +73.939590; 12.815350; 63.150375;, +68.756935; 12.815350; 68.756935;, +63.150375; 12.815350; 73.939590;, +57.154469; 12.815350; 78.666382;, +50.806190; 12.815350; 82.908165;, +44.144672; 12.815350; 86.638794;, +37.210987; 12.815350; 89.835266;, +30.047882; 12.815350; 92.477875;, +22.699526; 12.815350; 94.550323;, +15.211217; 12.815350; 96.039841;, +7.629127; 12.815350; 96.937241;, +0.000000; 12.815350; 97.236992;, +-7.629127; 12.815350; 96.937241;, +-15.211217; 12.815350; 96.039841;, +-22.699526; 12.815350; 94.550323;, +-30.047882; 12.815350; 92.477875;, +-37.210987; 12.815350; 89.835266;, +-44.144672; 12.815350; 86.638794;, +-50.806190; 12.815350; 82.908165;, +-57.154469; 12.815350; 78.666382;, +-63.150375; 12.815350; 73.939590;, +-68.756935; 12.815350; 68.756935;, +-73.939590; 12.815350; 63.150375;, +-78.666382; 12.815350; 57.154469;, +-82.908165; 12.815350; 50.806190;, +-86.638794; 12.815350; 44.144672;, +-89.835266; 12.815350; 37.210987;, +-92.477875; 12.815350; 30.047882;, +-94.550323; 12.815350; 22.699526;, +-96.039841; 12.815350; 15.211217;, +-96.937241; 12.815350; 7.629127;, +-97.236992; 12.815350; 0.000000;, +-96.937241; 12.815350; -7.629127;, +-96.039841; 12.815350; -15.211217;, +-94.550323; 12.815350; -22.699526;, +-92.477875; 12.815350; -30.047882;, +-89.835266; 12.815350; -37.210987;, +-86.638794; 12.815350; -44.144672;, +-82.908165; 12.815350; -50.806190;, +-78.666382; 12.815350; -57.154469;, +-73.939590; 12.815350; -63.150375;, +-68.756935; 12.815350; -68.756935;, +-63.150375; 12.815350; -73.939590;, +-57.154469; 12.815350; -78.666382;, +-50.806190; 12.815350; -82.908165;, +-44.144672; 12.815350; -86.638794;, +-37.210987; 12.815350; -89.835266;, +-30.047882; 12.815350; -92.477875;, +-22.699526; 12.815350; -94.550323;, +-15.211217; 12.815350; -96.039841;, +-7.629127; 12.815350; -96.937241;, +-0.000000; 12.815350; -97.236992;, +7.629127; 12.815350; -96.937241;, +15.211217; 12.815350; -96.039841;, +22.699526; 12.815350; -94.550323;, +30.047882; 12.815350; -92.477875;, +37.210987; 12.815350; -89.835266;, +44.144672; 12.815350; -86.638794;, +50.806190; 12.815350; -82.908165;, +57.154469; 12.815350; -78.666382;, +63.150375; 12.815350; -73.939590;, +68.756935; 12.815350; -68.756935;, +73.939590; 12.815350; -63.150375;, +78.666382; 12.815350; -57.154469;, +82.908165; 12.815350; -50.806190;, +86.638794; 12.815350; -44.144672;, +89.835266; 12.815350; -37.210987;, +92.477875; 12.815350; -30.047882;, +94.550323; 12.815350; -22.699526;, +96.039841; 12.815350; -15.211217;, +96.937241; 12.815350; -7.629127;, +95.105652; 16.963972; 0.000000;, +94.812469; 16.963972; 7.461904;, +93.934746; 16.963972; 14.877802;, +92.477875; 16.963972; 22.201973;, +90.450851; 16.963972; 29.389263;, +87.866165; 16.963972; 36.395359;, +84.739754; 16.963972; 43.177063;, +81.090897; 16.963972; 49.692566;, +76.942085; 16.963972; 55.901699;, +72.318901; 16.963972; 61.766178;, +67.249847; 16.963972; 67.249847;, +61.766178; 16.963972; 72.318901;, +55.901699; 16.963972; 76.942085;, +49.692566; 16.963972; 81.090897;, +43.177063; 16.963972; 84.739754;, +36.395359; 16.963972; 87.866165;, +29.389263; 16.963972; 90.450851;, +22.201973; 16.963972; 92.477875;, +14.877802; 16.963972; 93.934746;, +7.461904; 16.963972; 94.812469;, +0.000000; 16.963972; 95.105652;, +-7.461904; 16.963972; 94.812469;, +-14.877802; 16.963972; 93.934746;, +-22.201973; 16.963972; 92.477875;, +-29.389263; 16.963972; 90.450851;, +-36.395359; 16.963972; 87.866165;, +-43.177063; 16.963972; 84.739754;, +-49.692566; 16.963972; 81.090897;, +-55.901699; 16.963972; 76.942085;, +-61.766178; 16.963972; 72.318901;, +-67.249847; 16.963972; 67.249847;, +-72.318901; 16.963972; 61.766178;, +-76.942085; 16.963972; 55.901699;, +-81.090897; 16.963972; 49.692566;, +-84.739754; 16.963972; 43.177063;, +-87.866165; 16.963972; 36.395359;, +-90.450851; 16.963972; 29.389263;, +-92.477875; 16.963972; 22.201973;, +-93.934746; 16.963972; 14.877802;, +-94.812469; 16.963972; 7.461904;, +-95.105652; 16.963972; 0.000000;, +-94.812469; 16.963972; -7.461904;, +-93.934746; 16.963972; -14.877802;, +-92.477875; 16.963972; -22.201973;, +-90.450851; 16.963972; -29.389263;, +-87.866165; 16.963972; -36.395359;, +-84.739754; 16.963972; -43.177063;, +-81.090897; 16.963972; -49.692566;, +-76.942085; 16.963972; -55.901699;, +-72.318901; 16.963972; -61.766178;, +-67.249847; 16.963972; -67.249847;, +-61.766178; 16.963972; -72.318901;, +-55.901699; 16.963972; -76.942085;, +-49.692566; 16.963972; -81.090897;, +-43.177063; 16.963972; -84.739754;, +-36.395359; 16.963972; -87.866165;, +-29.389263; 16.963972; -90.450851;, +-22.201973; 16.963972; -92.477875;, +-14.877802; 16.963972; -93.934746;, +-7.461904; 16.963972; -94.812469;, +-0.000000; 16.963972; -95.105652;, +7.461904; 16.963972; -94.812469;, +14.877802; 16.963972; -93.934746;, +22.201973; 16.963972; -92.477875;, +29.389263; 16.963972; -90.450851;, +36.395359; 16.963972; -87.866165;, +43.177063; 16.963972; -84.739754;, +49.692566; 16.963972; -81.090897;, +55.901699; 16.963972; -76.942085;, +61.766178; 16.963972; -72.318901;, +67.249847; 16.963972; -67.249847;, +72.318901; 16.963972; -61.766178;, +76.942085; 16.963972; -55.901699;, +81.090897; 16.963972; -49.692566;, +84.739754; 16.963972; -43.177063;, +87.866165; 16.963972; -36.395359;, +90.450851; 16.963972; -29.389263;, +92.477875; 16.963972; -22.201973;, +93.934746; 16.963972; -14.877802;, +94.812469; 16.963972; -7.461904;, +92.387955; 21.008009; 0.000000;, +92.103149; 21.008009; 7.248675;, +91.250504; 21.008009; 14.452660;, +89.835266; 21.008009; 21.567539;, +87.866165; 21.008009; 28.549448;, +85.355339; 21.008009; 35.355339;, +82.318268; 21.008009; 41.943253;, +78.773682; 21.008009; 48.272572;, +74.743423; 21.008009; 54.304276;, +70.252350; 21.008009; 60.001175;, +65.328148; 21.008009; 65.328148;, +60.001175; 21.008009; 70.252350;, +54.304276; 21.008009; 74.743423;, +48.272572; 21.008009; 78.773682;, +41.943253; 21.008009; 82.318268;, +35.355339; 21.008009; 85.355339;, +28.549448; 21.008009; 87.866165;, +21.567539; 21.008009; 89.835266;, +14.452660; 21.008009; 91.250504;, +7.248675; 21.008009; 92.103149;, +0.000000; 21.008009; 92.387955;, +-7.248675; 21.008009; 92.103149;, +-14.452660; 21.008009; 91.250504;, +-21.567539; 21.008009; 89.835266;, +-28.549448; 21.008009; 87.866165;, +-35.355339; 21.008009; 85.355339;, +-41.943253; 21.008009; 82.318268;, +-48.272572; 21.008009; 78.773682;, +-54.304276; 21.008009; 74.743423;, +-60.001175; 21.008009; 70.252350;, +-65.328148; 21.008009; 65.328148;, +-70.252350; 21.008009; 60.001175;, +-74.743423; 21.008009; 54.304276;, +-78.773682; 21.008009; 48.272572;, +-82.318268; 21.008009; 41.943253;, +-85.355339; 21.008009; 35.355339;, +-87.866165; 21.008009; 28.549448;, +-89.835266; 21.008009; 21.567539;, +-91.250504; 21.008009; 14.452660;, +-92.103149; 21.008009; 7.248675;, +-92.387955; 21.008009; 0.000000;, +-92.103149; 21.008009; -7.248675;, +-91.250504; 21.008009; -14.452660;, +-89.835266; 21.008009; -21.567539;, +-87.866165; 21.008009; -28.549448;, +-85.355339; 21.008009; -35.355339;, +-82.318268; 21.008009; -41.943253;, +-78.773682; 21.008009; -48.272572;, +-74.743423; 21.008009; -54.304276;, +-70.252350; 21.008009; -60.001175;, +-65.328148; 21.008009; -65.328148;, +-60.001175; 21.008009; -70.252350;, +-54.304276; 21.008009; -74.743423;, +-48.272572; 21.008009; -78.773682;, +-41.943253; 21.008009; -82.318268;, +-35.355339; 21.008009; -85.355339;, +-28.549448; 21.008009; -87.866165;, +-21.567539; 21.008009; -89.835266;, +-14.452660; 21.008009; -91.250504;, +-7.248675; 21.008009; -92.103149;, +-0.000000; 21.008009; -92.387955;, +7.248675; 21.008009; -92.103149;, +14.452660; 21.008009; -91.250504;, +21.567539; 21.008009; -89.835266;, +28.549448; 21.008009; -87.866165;, +35.355339; 21.008009; -85.355339;, +41.943253; 21.008009; -82.318268;, +48.272572; 21.008009; -78.773682;, +54.304276; 21.008009; -74.743423;, +60.001175; 21.008009; -70.252350;, +65.328148; 21.008009; -65.328148;, +70.252350; 21.008009; -60.001175;, +74.743423; 21.008009; -54.304276;, +78.773682; 21.008009; -48.272572;, +82.318268; 21.008009; -41.943253;, +85.355339; 21.008009; -35.355339;, +87.866165; 21.008009; -28.549448;, +89.835266; 21.008009; -21.567539;, +91.250504; 21.008009; -14.452660;, +92.103149; 21.008009; -7.248675;, +89.100655; 24.922522; 0.000000;, +88.825981; 24.922522; 6.990757;, +88.003677; 24.922522; 13.938413;, +86.638794; 24.922522; 20.800135;, +84.739754; 24.922522; 27.533615;, +82.318268; 24.922522; 34.097343;, +79.389259; 24.922522; 40.450851;, +75.970795; 24.922522; 46.554962;, +72.083939; 24.922522; 52.372051;, +67.752670; 24.922522; 57.866245;, +63.003677; 24.922522; 63.003677;, +57.866245; 24.922522; 67.752670;, +52.372051; 24.922522; 72.083939;, +46.554962; 24.922522; 75.970795;, +40.450851; 24.922522; 79.389259;, +34.097343; 24.922522; 82.318268;, +27.533615; 24.922522; 84.739754;, +20.800135; 24.922522; 86.638794;, +13.938413; 24.922522; 88.003677;, +6.990757; 24.922522; 88.825981;, +0.000000; 24.922522; 89.100655;, +-6.990757; 24.922522; 88.825981;, +-13.938413; 24.922522; 88.003677;, +-20.800135; 24.922522; 86.638794;, +-27.533615; 24.922522; 84.739754;, +-34.097343; 24.922522; 82.318268;, +-40.450851; 24.922522; 79.389259;, +-46.554962; 24.922522; 75.970795;, +-52.372051; 24.922522; 72.083939;, +-57.866245; 24.922522; 67.752670;, +-63.003677; 24.922522; 63.003677;, +-67.752670; 24.922522; 57.866245;, +-72.083939; 24.922522; 52.372051;, +-75.970795; 24.922522; 46.554962;, +-79.389259; 24.922522; 40.450851;, +-82.318268; 24.922522; 34.097343;, +-84.739754; 24.922522; 27.533615;, +-86.638794; 24.922522; 20.800135;, +-88.003677; 24.922522; 13.938413;, +-88.825981; 24.922522; 6.990757;, +-89.100655; 24.922522; 0.000000;, +-88.825981; 24.922522; -6.990757;, +-88.003677; 24.922522; -13.938413;, +-86.638794; 24.922522; -20.800135;, +-84.739754; 24.922522; -27.533615;, +-82.318268; 24.922522; -34.097343;, +-79.389259; 24.922522; -40.450851;, +-75.970795; 24.922522; -46.554962;, +-72.083939; 24.922522; -52.372051;, +-67.752670; 24.922522; -57.866245;, +-63.003677; 24.922522; -63.003677;, +-57.866245; 24.922522; -67.752670;, +-52.372051; 24.922522; -72.083939;, +-46.554962; 24.922522; -75.970795;, +-40.450851; 24.922522; -79.389259;, +-34.097343; 24.922522; -82.318268;, +-27.533615; 24.922522; -84.739754;, +-20.800135; 24.922522; -86.638794;, +-13.938413; 24.922522; -88.003677;, +-6.990757; 24.922522; -88.825981;, +-0.000000; 24.922522; -89.100655;, +6.990757; 24.922522; -88.825981;, +13.938413; 24.922522; -88.003677;, +20.800135; 24.922522; -86.638794;, +27.533615; 24.922522; -84.739754;, +34.097343; 24.922522; -82.318268;, +40.450851; 24.922522; -79.389259;, +46.554962; 24.922522; -75.970795;, +52.372051; 24.922522; -72.083939;, +57.866245; 24.922522; -67.752670;, +63.003677; 24.922522; -63.003677;, +67.752670; 24.922522; -57.866245;, +72.083939; 24.922522; -52.372051;, +75.970795; 24.922522; -46.554962;, +79.389259; 24.922522; -40.450851;, +82.318268; 24.922522; -34.097343;, +84.739754; 24.922522; -27.533615;, +86.638794; 24.922522; -20.800135;, +88.003677; 24.922522; -13.938413;, +88.825981; 24.922522; -6.990757;, +85.264015; 28.683378; 0.000000;, +85.001175; 28.683378; 6.689738;, +84.214272; 28.683378; 13.338231;, +82.908165; 28.683378; 19.904490;, +81.090897; 28.683378; 26.348030;, +78.773682; 28.683378; 32.629128;, +75.970795; 28.683378; 38.709053;, +72.699524; 28.683378; 44.550327;, +68.980042; 28.683378; 50.116932;, +64.835266; 28.683378; 55.374550;, +60.290764; 28.683378; 60.290764;, +55.374550; 28.683378; 64.835266;, +50.116932; 28.683378; 68.980042;, +44.550327; 28.683378; 72.699524;, +38.709053; 28.683378; 75.970795;, +32.629128; 28.683378; 78.773682;, +26.348030; 28.683378; 81.090897;, +19.904490; 28.683378; 82.908165;, +13.338231; 28.683378; 84.214272;, +6.689738; 28.683378; 85.001175;, +0.000000; 28.683378; 85.264015;, +-6.689738; 28.683378; 85.001175;, +-13.338231; 28.683378; 84.214272;, +-19.904490; 28.683378; 82.908165;, +-26.348030; 28.683378; 81.090897;, +-32.629128; 28.683378; 78.773682;, +-38.709053; 28.683378; 75.970795;, +-44.550327; 28.683378; 72.699524;, +-50.116932; 28.683378; 68.980042;, +-55.374550; 28.683378; 64.835266;, +-60.290764; 28.683378; 60.290764;, +-64.835266; 28.683378; 55.374550;, +-68.980042; 28.683378; 50.116932;, +-72.699524; 28.683378; 44.550327;, +-75.970795; 28.683378; 38.709053;, +-78.773682; 28.683378; 32.629128;, +-81.090897; 28.683378; 26.348030;, +-82.908165; 28.683378; 19.904490;, +-84.214272; 28.683378; 13.338231;, +-85.001175; 28.683378; 6.689738;, +-85.264015; 28.683378; 0.000000;, +-85.001175; 28.683378; -6.689738;, +-84.214272; 28.683378; -13.338231;, +-82.908165; 28.683378; -19.904490;, +-81.090897; 28.683378; -26.348030;, +-78.773682; 28.683378; -32.629128;, +-75.970795; 28.683378; -38.709053;, +-72.699524; 28.683378; -44.550327;, +-68.980042; 28.683378; -50.116932;, +-64.835266; 28.683378; -55.374550;, +-60.290764; 28.683378; -60.290764;, +-55.374550; 28.683378; -64.835266;, +-50.116932; 28.683378; -68.980042;, +-44.550327; 28.683378; -72.699524;, +-38.709053; 28.683378; -75.970795;, +-32.629128; 28.683378; -78.773682;, +-26.348030; 28.683378; -81.090897;, +-19.904490; 28.683378; -82.908165;, +-13.338231; 28.683378; -84.214272;, +-6.689738; 28.683378; -85.001175;, +-0.000000; 28.683378; -85.264015;, +6.689738; 28.683378; -85.001175;, +13.338231; 28.683378; -84.214272;, +19.904490; 28.683378; -82.908165;, +26.348030; 28.683378; -81.090897;, +32.629128; 28.683378; -78.773682;, +38.709053; 28.683378; -75.970795;, +44.550327; 28.683378; -72.699524;, +50.116932; 28.683378; -68.980042;, +55.374550; 28.683378; -64.835266;, +60.290764; 28.683378; -60.290764;, +64.835266; 28.683378; -55.374550;, +68.980042; 28.683378; -50.116932;, +72.699524; 28.683378; -44.550327;, +75.970795; 28.683378; -38.709053;, +78.773682; 28.683378; -32.629128;, +81.090897; 28.683378; -26.348030;, +82.908165; 28.683378; -19.904490;, +84.214272; 28.683378; -13.338231;, +85.001175; 28.683378; -6.689738;, +80.901703; 32.267395; 0.000000;, +80.652306; 32.267395; 6.347474;, +79.905663; 32.267395; 12.655814;, +78.666382; 32.267395; 18.886127;, +76.942085; 32.267395; 25.000000;, +74.743423; 32.267395; 30.959740;, +72.083939; 32.267395; 36.728603;, +68.980042; 32.267395; 42.271023;, +65.450851; 32.267395; 47.552826;, +61.518135; 32.267395; 52.541451;, +57.206139; 32.267395; 57.206139;, +52.541451; 32.267395; 61.518135;, +47.552826; 32.267395; 65.450851;, +42.271023; 32.267395; 68.980042;, +36.728603; 32.267395; 72.083939;, +30.959740; 32.267395; 74.743423;, +25.000000; 32.267395; 76.942085;, +18.886127; 32.267395; 78.666382;, +12.655814; 32.267395; 79.905663;, +6.347474; 32.267395; 80.652306;, +0.000000; 32.267395; 80.901703;, +-6.347474; 32.267395; 80.652306;, +-12.655814; 32.267395; 79.905663;, +-18.886127; 32.267395; 78.666382;, +-25.000000; 32.267395; 76.942085;, +-30.959740; 32.267395; 74.743423;, +-36.728603; 32.267395; 72.083939;, +-42.271023; 32.267395; 68.980042;, +-47.552826; 32.267395; 65.450851;, +-52.541451; 32.267395; 61.518135;, +-57.206139; 32.267395; 57.206139;, +-61.518135; 32.267395; 52.541451;, +-65.450851; 32.267395; 47.552826;, +-68.980042; 32.267395; 42.271023;, +-72.083939; 32.267395; 36.728603;, +-74.743423; 32.267395; 30.959740;, +-76.942085; 32.267395; 25.000000;, +-78.666382; 32.267395; 18.886127;, +-79.905663; 32.267395; 12.655814;, +-80.652306; 32.267395; 6.347474;, +-80.901703; 32.267395; 0.000000;, +-80.652306; 32.267395; -6.347474;, +-79.905663; 32.267395; -12.655814;, +-78.666382; 32.267395; -18.886127;, +-76.942085; 32.267395; -25.000000;, +-74.743423; 32.267395; -30.959740;, +-72.083939; 32.267395; -36.728603;, +-68.980042; 32.267395; -42.271023;, +-65.450851; 32.267395; -47.552826;, +-61.518135; 32.267395; -52.541451;, +-57.206139; 32.267395; -57.206139;, +-52.541451; 32.267395; -61.518135;, +-47.552826; 32.267395; -65.450851;, +-42.271023; 32.267395; -68.980042;, +-36.728603; 32.267395; -72.083939;, +-30.959740; 32.267395; -74.743423;, +-25.000000; 32.267395; -76.942085;, +-18.886127; 32.267395; -78.666382;, +-12.655814; 32.267395; -79.905663;, +-6.347474; 32.267395; -80.652306;, +-0.000000; 32.267395; -80.901703;, +6.347474; 32.267395; -80.652306;, +12.655814; 32.267395; -79.905663;, +18.886127; 32.267395; -78.666382;, +25.000000; 32.267395; -76.942085;, +30.959740; 32.267395; -74.743423;, +36.728603; 32.267395; -72.083939;, +42.271023; 32.267395; -68.980042;, +47.552826; 32.267395; -65.450851;, +52.541451; 32.267395; -61.518135;, +57.206139; 32.267395; -57.206139;, +61.518135; 32.267395; -52.541451;, +65.450851; 32.267395; -47.552826;, +68.980042; 32.267395; -42.271023;, +72.083939; 32.267395; -36.728603;, +74.743423; 32.267395; -30.959740;, +76.942085; 32.267395; -25.000000;, +78.666382; 32.267395; -18.886127;, +79.905663; 32.267395; -12.655814;, +80.652306; 32.267395; -6.347474;, +76.040596; 35.652470; 0.000000;, +75.806190; 35.652470; 5.966076;, +75.104408; 35.652470; 11.895370;, +73.939590; 35.652470; 17.751326;, +72.318901; 35.652470; 23.497837;, +70.252350; 35.652470; 29.099476;, +67.752670; 35.652470; 34.521709;, +64.835266; 35.652470; 39.731102;, +61.518135; 35.652470; 44.695541;, +57.821724; 35.652470; 49.384418;, +53.768822; 35.652470; 53.768822;, +49.384418; 35.652470; 57.821724;, +44.695541; 35.652470; 61.518135;, +39.731102; 35.652470; 64.835266;, +34.521709; 35.652470; 67.752670;, +29.099476; 35.652470; 70.252350;, +23.497837; 35.652470; 72.318901;, +17.751326; 35.652470; 73.939590;, +11.895370; 35.652470; 75.104408;, +5.966076; 35.652470; 75.806190;, +0.000000; 35.652470; 76.040596;, +-5.966076; 35.652470; 75.806190;, +-11.895370; 35.652470; 75.104408;, +-17.751326; 35.652470; 73.939590;, +-23.497837; 35.652470; 72.318901;, +-29.099476; 35.652470; 70.252350;, +-34.521709; 35.652470; 67.752670;, +-39.731102; 35.652470; 64.835266;, +-44.695541; 35.652470; 61.518135;, +-49.384418; 35.652470; 57.821724;, +-53.768822; 35.652470; 53.768822;, +-57.821724; 35.652470; 49.384418;, +-61.518135; 35.652470; 44.695541;, +-64.835266; 35.652470; 39.731102;, +-67.752670; 35.652470; 34.521709;, +-70.252350; 35.652470; 29.099476;, +-72.318901; 35.652470; 23.497837;, +-73.939590; 35.652470; 17.751326;, +-75.104408; 35.652470; 11.895370;, +-75.806190; 35.652470; 5.966076;, +-76.040596; 35.652470; 0.000000;, +-75.806190; 35.652470; -5.966076;, +-75.104408; 35.652470; -11.895370;, +-73.939590; 35.652470; -17.751326;, +-72.318901; 35.652470; -23.497837;, +-70.252350; 35.652470; -29.099476;, +-67.752670; 35.652470; -34.521709;, +-64.835266; 35.652470; -39.731102;, +-61.518135; 35.652470; -44.695541;, +-57.821724; 35.652470; -49.384418;, +-53.768822; 35.652470; -53.768822;, +-49.384418; 35.652470; -57.821724;, +-44.695541; 35.652470; -61.518135;, +-39.731102; 35.652470; -64.835266;, +-34.521709; 35.652470; -67.752670;, +-29.099476; 35.652470; -70.252350;, +-23.497837; 35.652470; -72.318901;, +-17.751326; 35.652470; -73.939590;, +-11.895370; 35.652470; -75.104408;, +-5.966076; 35.652470; -75.806190;, +-0.000000; 35.652470; -76.040596;, +5.966076; 35.652470; -75.806190;, +11.895370; 35.652470; -75.104408;, +17.751326; 35.652470; -73.939590;, +23.497837; 35.652470; -72.318901;, +29.099476; 35.652470; -70.252350;, +34.521709; 35.652470; -67.752670;, +39.731102; 35.652470; -64.835266;, +44.695541; 35.652470; -61.518135;, +49.384418; 35.652470; -57.821724;, +53.768822; 35.652470; -53.768822;, +57.821724; 35.652470; -49.384418;, +61.518135; 35.652470; -44.695541;, +64.835266; 35.652470; -39.731102;, +67.752670; 35.652470; -34.521709;, +70.252350; 35.652470; -29.099476;, +72.318901; 35.652470; -23.497837;, +73.939590; 35.652470; -17.751326;, +75.104408; 35.652470; -11.895370;, +75.806190; 35.652470; -5.966076;, +70.710678; 38.817738; 0.000000;, +70.492699; 38.817738; 5.547896;, +69.840111; 38.817738; 11.061587;, +68.756935; 38.817738; 16.507080;, +67.249847; 38.817738; 21.850801;, +65.328148; 38.817738; 27.059805;, +63.003677; 38.817738; 32.101974;, +60.290764; 38.817738; 36.946228;, +57.206139; 38.817738; 41.562695;, +53.768822; 38.817738; 45.922913;, +50.000000; 38.817738; 50.000000;, +45.922913; 38.817738; 53.768822;, +41.562695; 38.817738; 57.206139;, +36.946228; 38.817738; 60.290764;, +32.101974; 38.817738; 63.003677;, +27.059805; 38.817738; 65.328148;, +21.850801; 38.817738; 67.249847;, +16.507080; 38.817738; 68.756935;, +11.061587; 38.817738; 69.840111;, +5.547896; 38.817738; 70.492699;, +0.000000; 38.817738; 70.710678;, +-5.547896; 38.817738; 70.492699;, +-11.061587; 38.817738; 69.840111;, +-16.507080; 38.817738; 68.756935;, +-21.850801; 38.817738; 67.249847;, +-27.059805; 38.817738; 65.328148;, +-32.101974; 38.817738; 63.003677;, +-36.946228; 38.817738; 60.290764;, +-41.562695; 38.817738; 57.206139;, +-45.922913; 38.817738; 53.768822;, +-50.000000; 38.817738; 50.000000;, +-53.768822; 38.817738; 45.922913;, +-57.206139; 38.817738; 41.562695;, +-60.290764; 38.817738; 36.946228;, +-63.003677; 38.817738; 32.101974;, +-65.328148; 38.817738; 27.059805;, +-67.249847; 38.817738; 21.850801;, +-68.756935; 38.817738; 16.507080;, +-69.840111; 38.817738; 11.061587;, +-70.492699; 38.817738; 5.547896;, +-70.710678; 38.817738; 0.000000;, +-70.492699; 38.817738; -5.547896;, +-69.840111; 38.817738; -11.061587;, +-68.756935; 38.817738; -16.507080;, +-67.249847; 38.817738; -21.850801;, +-65.328148; 38.817738; -27.059805;, +-63.003677; 38.817738; -32.101974;, +-60.290764; 38.817738; -36.946228;, +-57.206139; 38.817738; -41.562695;, +-53.768822; 38.817738; -45.922913;, +-50.000000; 38.817738; -50.000000;, +-45.922913; 38.817738; -53.768822;, +-41.562695; 38.817738; -57.206139;, +-36.946228; 38.817738; -60.290764;, +-32.101974; 38.817738; -63.003677;, +-27.059805; 38.817738; -65.328148;, +-21.850801; 38.817738; -67.249847;, +-16.507080; 38.817738; -68.756935;, +-11.061587; 38.817738; -69.840111;, +-5.547896; 38.817738; -70.492699;, +-0.000000; 38.817738; -70.710678;, +5.547896; 38.817738; -70.492699;, +11.061587; 38.817738; -69.840111;, +16.507080; 38.817738; -68.756935;, +21.850801; 38.817738; -67.249847;, +27.059805; 38.817738; -65.328148;, +32.101974; 38.817738; -63.003677;, +36.946228; 38.817738; -60.290764;, +41.562695; 38.817738; -57.206139;, +45.922913; 38.817738; -53.768822;, +50.000000; 38.817738; -50.000000;, +53.768822; 38.817738; -45.922913;, +57.206139; 38.817738; -41.562695;, +60.290764; 38.817738; -36.946228;, +63.003677; 38.817738; -32.101974;, +65.328148; 38.817738; -27.059805;, +67.249847; 38.817738; -21.850801;, +68.756935; 38.817738; -16.507080;, +69.840111; 38.817738; -11.061587;, +70.492699; 38.817738; -5.547896;, +64.944801; 41.743679; 0.000000;, +64.744598; 41.743679; 5.095510;, +64.145226; 41.743679; 10.159606;, +63.150375; 41.743679; 15.161063;, +61.766178; 41.743679; 20.069048;, +60.001175; 41.743679; 24.853300;, +57.866245; 41.743679; 29.484324;, +55.374550; 41.743679; 33.933567;, +52.541451; 41.743679; 38.173599;, +49.384418; 41.743679; 42.178276;, +45.922913; 41.743679; 45.922913;, +42.178276; 41.743679; 49.384418;, +38.173599; 41.743679; 52.541451;, +33.933567; 41.743679; 55.374550;, +29.484324; 41.743679; 57.866245;, +24.853300; 41.743679; 60.001175;, +20.069048; 41.743679; 61.766178;, +15.161063; 41.743679; 63.150375;, +10.159606; 41.743679; 64.145226;, +5.095510; 41.743679; 64.744598;, +0.000000; 41.743679; 64.944801;, +-5.095510; 41.743679; 64.744598;, +-10.159606; 41.743679; 64.145226;, +-15.161063; 41.743679; 63.150375;, +-20.069048; 41.743679; 61.766178;, +-24.853300; 41.743679; 60.001175;, +-29.484324; 41.743679; 57.866245;, +-33.933567; 41.743679; 55.374550;, +-38.173599; 41.743679; 52.541451;, +-42.178276; 41.743679; 49.384418;, +-45.922913; 41.743679; 45.922913;, +-49.384418; 41.743679; 42.178276;, +-52.541451; 41.743679; 38.173599;, +-55.374550; 41.743679; 33.933567;, +-57.866245; 41.743679; 29.484324;, +-60.001175; 41.743679; 24.853300;, +-61.766178; 41.743679; 20.069048;, +-63.150375; 41.743679; 15.161063;, +-64.145226; 41.743679; 10.159606;, +-64.744598; 41.743679; 5.095510;, +-64.944801; 41.743679; 0.000000;, +-64.744598; 41.743679; -5.095510;, +-64.145226; 41.743679; -10.159606;, +-63.150375; 41.743679; -15.161063;, +-61.766178; 41.743679; -20.069048;, +-60.001175; 41.743679; -24.853300;, +-57.866245; 41.743679; -29.484324;, +-55.374550; 41.743679; -33.933567;, +-52.541451; 41.743679; -38.173599;, +-49.384418; 41.743679; -42.178276;, +-45.922913; 41.743679; -45.922913;, +-42.178276; 41.743679; -49.384418;, +-38.173599; 41.743679; -52.541451;, +-33.933567; 41.743679; -55.374550;, +-29.484324; 41.743679; -57.866245;, +-24.853300; 41.743679; -60.001175;, +-20.069048; 41.743679; -61.766178;, +-15.161063; 41.743679; -63.150375;, +-10.159606; 41.743679; -64.145226;, +-5.095510; 41.743679; -64.744598;, +-0.000000; 41.743679; -64.944801;, +5.095510; 41.743679; -64.744598;, +10.159606; 41.743679; -64.145226;, +15.161063; 41.743679; -63.150375;, +20.069048; 41.743679; -61.766178;, +24.853300; 41.743679; -60.001175;, +29.484324; 41.743679; -57.866245;, +33.933567; 41.743679; -55.374550;, +38.173599; 41.743679; -52.541451;, +42.178276; 41.743679; -49.384418;, +45.922913; 41.743679; -45.922913;, +49.384418; 41.743679; -42.178276;, +52.541451; 41.743679; -38.173599;, +55.374550; 41.743679; -33.933567;, +57.866245; 41.743679; -29.484324;, +60.001175; 41.743679; -24.853300;, +61.766178; 41.743679; -20.069048;, +63.150375; 41.743679; -15.161063;, +64.145226; 41.743679; -10.159606;, +64.744598; 41.743679; -5.095510;, +58.778526; 44.412258; 0.000000;, +58.597332; 44.412258; 4.611710;, +58.054863; 44.412258; 9.194987;, +57.154469; 44.412258; 13.721574;, +55.901699; 44.412258; 18.163563;, +54.304276; 44.412258; 22.493568;, +52.372051; 44.412258; 26.684893;, +50.116932; 44.412258; 30.711695;, +47.552826; 44.412258; 34.549149;, +44.695541; 44.412258; 38.173599;, +41.562695; 44.412258; 41.562695;, +38.173599; 44.412258; 44.695541;, +34.549149; 44.412258; 47.552826;, +30.711695; 44.412258; 50.116932;, +26.684893; 44.412258; 52.372051;, +22.493568; 44.412258; 54.304276;, +18.163563; 44.412258; 55.901699;, +13.721574; 44.412258; 57.154469;, +9.194987; 44.412258; 58.054863;, +4.611710; 44.412258; 58.597332;, +0.000000; 44.412258; 58.778526;, +-4.611710; 44.412258; 58.597332;, +-9.194987; 44.412258; 58.054863;, +-13.721574; 44.412258; 57.154469;, +-18.163563; 44.412258; 55.901699;, +-22.493568; 44.412258; 54.304276;, +-26.684893; 44.412258; 52.372051;, +-30.711695; 44.412258; 50.116932;, +-34.549149; 44.412258; 47.552826;, +-38.173599; 44.412258; 44.695541;, +-41.562695; 44.412258; 41.562695;, +-44.695541; 44.412258; 38.173599;, +-47.552826; 44.412258; 34.549149;, +-50.116932; 44.412258; 30.711695;, +-52.372051; 44.412258; 26.684893;, +-54.304276; 44.412258; 22.493568;, +-55.901699; 44.412258; 18.163563;, +-57.154469; 44.412258; 13.721574;, +-58.054863; 44.412258; 9.194987;, +-58.597332; 44.412258; 4.611710;, +-58.778526; 44.412258; 0.000000;, +-58.597332; 44.412258; -4.611710;, +-58.054863; 44.412258; -9.194987;, +-57.154469; 44.412258; -13.721574;, +-55.901699; 44.412258; -18.163563;, +-54.304276; 44.412258; -22.493568;, +-52.372051; 44.412258; -26.684893;, +-50.116932; 44.412258; -30.711695;, +-47.552826; 44.412258; -34.549149;, +-44.695541; 44.412258; -38.173599;, +-41.562695; 44.412258; -41.562695;, +-38.173599; 44.412258; -44.695541;, +-34.549149; 44.412258; -47.552826;, +-30.711695; 44.412258; -50.116932;, +-26.684893; 44.412258; -52.372051;, +-22.493568; 44.412258; -54.304276;, +-18.163563; 44.412258; -55.901699;, +-13.721574; 44.412258; -57.154469;, +-9.194987; 44.412258; -58.054863;, +-4.611710; 44.412258; -58.597332;, +-0.000000; 44.412258; -58.778526;, +4.611710; 44.412258; -58.597332;, +9.194987; 44.412258; -58.054863;, +13.721574; 44.412258; -57.154469;, +18.163563; 44.412258; -55.901699;, +22.493568; 44.412258; -54.304276;, +26.684893; 44.412258; -52.372051;, +30.711695; 44.412258; -50.116932;, +34.549149; 44.412258; -47.552826;, +38.173599; 44.412258; -44.695541;, +41.562695; 44.412258; -41.562695;, +44.695541; 44.412258; -38.173599;, +47.552826; 44.412258; -34.549149;, +50.116932; 44.412258; -30.711695;, +52.372051; 44.412258; -26.684893;, +54.304276; 44.412258; -22.493568;, +55.901699; 44.412258; -18.163563;, +57.154469; 44.412258; -13.721574;, +58.054863; 44.412258; -9.194987;, +58.597332; 44.412258; -4.611710;, +52.249855; 46.807018; 0.000000;, +52.088787; 46.807018; 4.099476;, +51.606575; 46.807018; 8.173678;, +50.806190; 46.807018; 12.197487;, +49.692566; 46.807018; 16.146093;, +48.272572; 46.807018; 19.995155;, +46.554962; 46.807018; 23.720938;, +44.550327; 46.807018; 27.300474;, +42.271023; 46.807018; 30.711695;, +39.731102; 46.807018; 33.933567;, +36.946228; 46.807018; 36.946228;, +33.933567; 46.807018; 39.731102;, +30.711695; 46.807018; 42.271023;, +27.300474; 46.807018; 44.550327;, +23.720938; 46.807018; 46.554962;, +19.995155; 46.807018; 48.272572;, +16.146093; 46.807018; 49.692566;, +12.197487; 46.807018; 50.806190;, +8.173678; 46.807018; 51.606575;, +4.099476; 46.807018; 52.088787;, +0.000000; 46.807018; 52.249855;, +-4.099476; 46.807018; 52.088787;, +-8.173678; 46.807018; 51.606575;, +-12.197487; 46.807018; 50.806190;, +-16.146093; 46.807018; 49.692566;, +-19.995155; 46.807018; 48.272572;, +-23.720938; 46.807018; 46.554962;, +-27.300474; 46.807018; 44.550327;, +-30.711695; 46.807018; 42.271023;, +-33.933567; 46.807018; 39.731102;, +-36.946228; 46.807018; 36.946228;, +-39.731102; 46.807018; 33.933567;, +-42.271023; 46.807018; 30.711695;, +-44.550327; 46.807018; 27.300474;, +-46.554962; 46.807018; 23.720938;, +-48.272572; 46.807018; 19.995155;, +-49.692566; 46.807018; 16.146093;, +-50.806190; 46.807018; 12.197487;, +-51.606575; 46.807018; 8.173678;, +-52.088787; 46.807018; 4.099476;, +-52.249855; 46.807018; 0.000000;, +-52.088787; 46.807018; -4.099476;, +-51.606575; 46.807018; -8.173678;, +-50.806190; 46.807018; -12.197487;, +-49.692566; 46.807018; -16.146093;, +-48.272572; 46.807018; -19.995155;, +-46.554962; 46.807018; -23.720938;, +-44.550327; 46.807018; -27.300474;, +-42.271023; 46.807018; -30.711695;, +-39.731102; 46.807018; -33.933567;, +-36.946228; 46.807018; -36.946228;, +-33.933567; 46.807018; -39.731102;, +-30.711695; 46.807018; -42.271023;, +-27.300474; 46.807018; -44.550327;, +-23.720938; 46.807018; -46.554962;, +-19.995155; 46.807018; -48.272572;, +-16.146093; 46.807018; -49.692566;, +-12.197487; 46.807018; -50.806190;, +-8.173678; 46.807018; -51.606575;, +-4.099476; 46.807018; -52.088787;, +-0.000000; 46.807018; -52.249855;, +4.099476; 46.807018; -52.088787;, +8.173678; 46.807018; -51.606575;, +12.197487; 46.807018; -50.806190;, +16.146093; 46.807018; -49.692566;, +19.995155; 46.807018; -48.272572;, +23.720938; 46.807018; -46.554962;, +27.300474; 46.807018; -44.550327;, +30.711695; 46.807018; -42.271023;, +33.933567; 46.807018; -39.731102;, +36.946228; 46.807018; -36.946228;, +39.731102; 46.807018; -33.933567;, +42.271023; 46.807018; -30.711695;, +44.550327; 46.807018; -27.300474;, +46.554962; 46.807018; -23.720938;, +48.272572; 46.807018; -19.995155;, +49.692566; 46.807018; -16.146093;, +50.806190; 46.807018; -12.197487;, +51.606575; 46.807018; -8.173678;, +52.088787; 46.807018; -4.099476;, +45.399052; 48.913204; 0.000000;, +45.259098; 48.913204; 3.561968;, +44.840111; 48.913204; 7.101976;, +44.144672; 48.913204; 10.598198;, +43.177063; 48.913204; 14.029078;, +41.943253; 48.913204; 17.373465;, +40.450851; 48.913204; 20.610737;, +38.709053; 48.913204; 23.720938;, +36.728603; 48.913204; 26.684893;, +34.521709; 48.913204; 29.484324;, +32.101974; 48.913204; 32.101974;, +29.484324; 48.913204; 34.521709;, +26.684893; 48.913204; 36.728603;, +23.720938; 48.913204; 38.709053;, +20.610737; 48.913204; 40.450851;, +17.373465; 48.913204; 41.943253;, +14.029078; 48.913204; 43.177063;, +10.598198; 48.913204; 44.144672;, +7.101976; 48.913204; 44.840111;, +3.561968; 48.913204; 45.259098;, +0.000000; 48.913204; 45.399052;, +-3.561968; 48.913204; 45.259098;, +-7.101976; 48.913204; 44.840111;, +-10.598198; 48.913204; 44.144672;, +-14.029078; 48.913204; 43.177063;, +-17.373465; 48.913204; 41.943253;, +-20.610737; 48.913204; 40.450851;, +-23.720938; 48.913204; 38.709053;, +-26.684893; 48.913204; 36.728603;, +-29.484324; 48.913204; 34.521709;, +-32.101974; 48.913204; 32.101974;, +-34.521709; 48.913204; 29.484324;, +-36.728603; 48.913204; 26.684893;, +-38.709053; 48.913204; 23.720938;, +-40.450851; 48.913204; 20.610737;, +-41.943253; 48.913204; 17.373465;, +-43.177063; 48.913204; 14.029078;, +-44.144672; 48.913204; 10.598198;, +-44.840111; 48.913204; 7.101976;, +-45.259098; 48.913204; 3.561968;, +-45.399052; 48.913204; 0.000000;, +-45.259098; 48.913204; -3.561968;, +-44.840111; 48.913204; -7.101976;, +-44.144672; 48.913204; -10.598198;, +-43.177063; 48.913204; -14.029078;, +-41.943253; 48.913204; -17.373465;, +-40.450851; 48.913204; -20.610737;, +-38.709053; 48.913204; -23.720938;, +-36.728603; 48.913204; -26.684893;, +-34.521709; 48.913204; -29.484324;, +-32.101974; 48.913204; -32.101974;, +-29.484324; 48.913204; -34.521709;, +-26.684893; 48.913204; -36.728603;, +-23.720938; 48.913204; -38.709053;, +-20.610737; 48.913204; -40.450851;, +-17.373465; 48.913204; -41.943253;, +-14.029078; 48.913204; -43.177063;, +-10.598198; 48.913204; -44.144672;, +-7.101976; 48.913204; -44.840111;, +-3.561968; 48.913204; -45.259098;, +-0.000000; 48.913204; -45.399052;, +3.561968; 48.913204; -45.259098;, +7.101976; 48.913204; -44.840111;, +10.598198; 48.913204; -44.144672;, +14.029078; 48.913204; -43.177063;, +17.373465; 48.913204; -41.943253;, +20.610737; 48.913204; -40.450851;, +23.720938; 48.913204; -38.709053;, +26.684893; 48.913204; -36.728603;, +29.484324; 48.913204; -34.521709;, +32.101974; 48.913204; -32.101974;, +34.521709; 48.913204; -29.484324;, +36.728603; 48.913204; -26.684893;, +38.709053; 48.913204; -23.720938;, +40.450851; 48.913204; -20.610737;, +41.943253; 48.913204; -17.373465;, +43.177063; 48.913204; -14.029078;, +44.144672; 48.913204; -10.598198;, +44.840111; 48.913204; -7.101976;, +45.259098; 48.913204; -3.561968;, +38.268345; 50.717819; 0.000000;, +38.150375; 50.717819; 3.002500;, +37.797195; 50.717819; 5.986488;, +37.210987; 50.717819; 8.933567;, +36.395359; 50.717819; 11.825568;, +35.355339; 50.717819; 14.644661;, +34.097343; 50.717819; 17.373465;, +32.629128; 50.717819; 19.995155;, +30.959740; 50.717819; 22.493568;, +29.099476; 50.717819; 24.853300;, +27.059805; 50.717819; 27.059805;, +24.853300; 50.717819; 29.099476;, +22.493568; 50.717819; 30.959740;, +19.995155; 50.717819; 32.629128;, +17.373465; 50.717819; 34.097343;, +14.644661; 50.717819; 35.355339;, +11.825568; 50.717819; 36.395359;, +8.933567; 50.717819; 37.210987;, +5.986488; 50.717819; 37.797195;, +3.002500; 50.717819; 38.150375;, +0.000000; 50.717819; 38.268345;, +-3.002500; 50.717819; 38.150375;, +-5.986488; 50.717819; 37.797195;, +-8.933567; 50.717819; 37.210987;, +-11.825568; 50.717819; 36.395359;, +-14.644661; 50.717819; 35.355339;, +-17.373465; 50.717819; 34.097343;, +-19.995155; 50.717819; 32.629128;, +-22.493568; 50.717819; 30.959740;, +-24.853300; 50.717819; 29.099476;, +-27.059805; 50.717819; 27.059805;, +-29.099476; 50.717819; 24.853300;, +-30.959740; 50.717819; 22.493568;, +-32.629128; 50.717819; 19.995155;, +-34.097343; 50.717819; 17.373465;, +-35.355339; 50.717819; 14.644661;, +-36.395359; 50.717819; 11.825568;, +-37.210987; 50.717819; 8.933567;, +-37.797195; 50.717819; 5.986488;, +-38.150375; 50.717819; 3.002500;, +-38.268345; 50.717819; 0.000000;, +-38.150375; 50.717819; -3.002500;, +-37.797195; 50.717819; -5.986488;, +-37.210987; 50.717819; -8.933567;, +-36.395359; 50.717819; -11.825568;, +-35.355339; 50.717819; -14.644661;, +-34.097343; 50.717819; -17.373465;, +-32.629128; 50.717819; -19.995155;, +-30.959740; 50.717819; -22.493568;, +-29.099476; 50.717819; -24.853300;, +-27.059805; 50.717819; -27.059805;, +-24.853300; 50.717819; -29.099476;, +-22.493568; 50.717819; -30.959740;, +-19.995155; 50.717819; -32.629128;, +-17.373465; 50.717819; -34.097343;, +-14.644661; 50.717819; -35.355339;, +-11.825568; 50.717819; -36.395359;, +-8.933567; 50.717819; -37.210987;, +-5.986488; 50.717819; -37.797195;, +-3.002500; 50.717819; -38.150375;, +-0.000000; 50.717819; -38.268345;, +3.002500; 50.717819; -38.150375;, +5.986488; 50.717819; -37.797195;, +8.933567; 50.717819; -37.210987;, +11.825568; 50.717819; -36.395359;, +14.644661; 50.717819; -35.355339;, +17.373465; 50.717819; -34.097343;, +19.995155; 50.717819; -32.629128;, +22.493568; 50.717819; -30.959740;, +24.853300; 50.717819; -29.099476;, +27.059805; 50.717819; -27.059805;, +29.099476; 50.717819; -24.853300;, +30.959740; 50.717819; -22.493568;, +32.629128; 50.717819; -19.995155;, +34.097343; 50.717819; -17.373465;, +35.355339; 50.717819; -14.644661;, +36.395359; 50.717819; -11.825568;, +37.210987; 50.717819; -8.933567;, +37.797195; 50.717819; -5.986488;, +38.150375; 50.717819; -3.002500;, +30.901699; 52.209740; 0.000000;, +30.806440; 52.209740; 2.424519;, +30.521248; 52.209740; 4.834091;, +30.047882; 52.209740; 7.213859;, +29.389263; 52.209740; 9.549150;, +28.549448; 52.209740; 11.825568;, +27.533615; 52.209740; 14.029078;, +26.348030; 52.209740; 16.146093;, +25.000000; 52.209740; 18.163563;, +23.497837; 52.209740; 20.069048;, +21.850801; 52.209740; 21.850801;, +20.069048; 52.209740; 23.497837;, +18.163563; 52.209740; 25.000000;, +16.146093; 52.209740; 26.348030;, +14.029078; 52.209740; 27.533615;, +11.825568; 52.209740; 28.549448;, +9.549150; 52.209740; 29.389263;, +7.213859; 52.209740; 30.047882;, +4.834091; 52.209740; 30.521248;, +2.424519; 52.209740; 30.806440;, +0.000000; 52.209740; 30.901699;, +-2.424519; 52.209740; 30.806440;, +-4.834091; 52.209740; 30.521248;, +-7.213859; 52.209740; 30.047882;, +-9.549150; 52.209740; 29.389263;, +-11.825568; 52.209740; 28.549448;, +-14.029078; 52.209740; 27.533615;, +-16.146093; 52.209740; 26.348030;, +-18.163563; 52.209740; 25.000000;, +-20.069048; 52.209740; 23.497837;, +-21.850801; 52.209740; 21.850801;, +-23.497837; 52.209740; 20.069048;, +-25.000000; 52.209740; 18.163563;, +-26.348030; 52.209740; 16.146093;, +-27.533615; 52.209740; 14.029078;, +-28.549448; 52.209740; 11.825568;, +-29.389263; 52.209740; 9.549150;, +-30.047882; 52.209740; 7.213859;, +-30.521248; 52.209740; 4.834091;, +-30.806440; 52.209740; 2.424519;, +-30.901699; 52.209740; 0.000000;, +-30.806440; 52.209740; -2.424519;, +-30.521248; 52.209740; -4.834091;, +-30.047882; 52.209740; -7.213859;, +-29.389263; 52.209740; -9.549150;, +-28.549448; 52.209740; -11.825568;, +-27.533615; 52.209740; -14.029078;, +-26.348030; 52.209740; -16.146093;, +-25.000000; 52.209740; -18.163563;, +-23.497837; 52.209740; -20.069048;, +-21.850801; 52.209740; -21.850801;, +-20.069048; 52.209740; -23.497837;, +-18.163563; 52.209740; -25.000000;, +-16.146093; 52.209740; -26.348030;, +-14.029078; 52.209740; -27.533615;, +-11.825568; 52.209740; -28.549448;, +-9.549150; 52.209740; -29.389263;, +-7.213859; 52.209740; -30.047882;, +-4.834091; 52.209740; -30.521248;, +-2.424519; 52.209740; -30.806440;, +-0.000000; 52.209740; -30.901699;, +2.424519; 52.209740; -30.806440;, +4.834091; 52.209740; -30.521248;, +7.213859; 52.209740; -30.047882;, +9.549150; 52.209740; -29.389263;, +11.825568; 52.209740; -28.549448;, +14.029078; 52.209740; -27.533615;, +16.146093; 52.209740; -26.348030;, +18.163563; 52.209740; -25.000000;, +20.069048; 52.209740; -23.497837;, +21.850801; 52.209740; -21.850801;, +23.497837; 52.209740; -20.069048;, +25.000000; 52.209740; -18.163563;, +26.348030; 52.209740; -16.146093;, +27.533615; 52.209740; -14.029078;, +28.549448; 52.209740; -11.825568;, +29.389263; 52.209740; -9.549150;, +30.047882; 52.209740; -7.213859;, +30.521248; 52.209740; -4.834091;, +30.806440; 52.209740; -2.424519;, +23.344536; 53.379772; 0.000000;, +23.272573; 53.379772; 1.831591;, +23.057127; 53.379772; 3.651890;, +22.699526; 53.379772; 5.449674;, +22.201973; 53.379772; 7.213859;, +21.567539; 53.379772; 8.933567;, +20.800135; 53.379772; 10.598198;, +19.904490; 53.379772; 12.197487;, +18.886127; 53.379772; 13.721574;, +17.751326; 53.379772; 15.161063;, +16.507080; 53.379772; 16.507080;, +15.161063; 53.379772; 17.751326;, +13.721574; 53.379772; 18.886127;, +12.197487; 53.379772; 19.904490;, +10.598198; 53.379772; 20.800135;, +8.933567; 53.379772; 21.567539;, +7.213859; 53.379772; 22.201973;, +5.449674; 53.379772; 22.699526;, +3.651890; 53.379772; 23.057127;, +1.831591; 53.379772; 23.272573;, +0.000000; 53.379772; 23.344536;, +-1.831591; 53.379772; 23.272573;, +-3.651890; 53.379772; 23.057127;, +-5.449674; 53.379772; 22.699526;, +-7.213859; 53.379772; 22.201973;, +-8.933567; 53.379772; 21.567539;, +-10.598198; 53.379772; 20.800135;, +-12.197487; 53.379772; 19.904490;, +-13.721574; 53.379772; 18.886127;, +-15.161063; 53.379772; 17.751326;, +-16.507080; 53.379772; 16.507080;, +-17.751326; 53.379772; 15.161063;, +-18.886127; 53.379772; 13.721574;, +-19.904490; 53.379772; 12.197487;, +-20.800135; 53.379772; 10.598198;, +-21.567539; 53.379772; 8.933567;, +-22.201973; 53.379772; 7.213859;, +-22.699526; 53.379772; 5.449674;, +-23.057127; 53.379772; 3.651890;, +-23.272573; 53.379772; 1.831591;, +-23.344536; 53.379772; 0.000000;, +-23.272573; 53.379772; -1.831591;, +-23.057127; 53.379772; -3.651890;, +-22.699526; 53.379772; -5.449674;, +-22.201973; 53.379772; -7.213859;, +-21.567539; 53.379772; -8.933567;, +-20.800135; 53.379772; -10.598198;, +-19.904490; 53.379772; -12.197487;, +-18.886127; 53.379772; -13.721574;, +-17.751326; 53.379772; -15.161063;, +-16.507080; 53.379772; -16.507080;, +-15.161063; 53.379772; -17.751326;, +-13.721574; 53.379772; -18.886127;, +-12.197487; 53.379772; -19.904490;, +-10.598198; 53.379772; -20.800135;, +-8.933567; 53.379772; -21.567539;, +-7.213859; 53.379772; -22.201973;, +-5.449674; 53.379772; -22.699526;, +-3.651890; 53.379772; -23.057127;, +-1.831591; 53.379772; -23.272573;, +-0.000000; 53.379772; -23.344536;, +1.831591; 53.379772; -23.272573;, +3.651890; 53.379772; -23.057127;, +5.449674; 53.379772; -22.699526;, +7.213859; 53.379772; -22.201973;, +8.933567; 53.379772; -21.567539;, +10.598198; 53.379772; -20.800135;, +12.197487; 53.379772; -19.904490;, +13.721574; 53.379772; -18.886127;, +15.161063; 53.379772; -17.751326;, +16.507080; 53.379772; -16.507080;, +17.751326; 53.379772; -15.161063;, +18.886127; 53.379772; -13.721574;, +19.904490; 53.379772; -12.197487;, +20.800135; 53.379772; -10.598198;, +21.567539; 53.379772; -8.933567;, +22.201973; 53.379772; -7.213859;, +22.699526; 53.379772; -5.449674;, +23.057127; 53.379772; -3.651890;, +23.272573; 53.379772; -1.831591;, +15.643447; 54.220703; 0.000000;, +15.595223; 54.220703; 1.227371;, +15.450850; 54.220703; 2.447174;, +15.211217; 54.220703; 3.651890;, +14.877802; 54.220703; 4.834091;, +14.452660; 54.220703; 5.986488;, +13.938413; 54.220703; 7.101976;, +13.338231; 54.220703; 8.173678;, +12.655814; 54.220703; 9.194987;, +11.895370; 54.220703; 10.159606;, +11.061587; 54.220703; 11.061587;, +10.159606; 54.220703; 11.895370;, +9.194987; 54.220703; 12.655814;, +8.173678; 54.220703; 13.338231;, +7.101976; 54.220703; 13.938413;, +5.986488; 54.220703; 14.452660;, +4.834091; 54.220703; 14.877802;, +3.651890; 54.220703; 15.211217;, +2.447174; 54.220703; 15.450850;, +1.227371; 54.220703; 15.595223;, +0.000000; 54.220703; 15.643447;, +-1.227371; 54.220703; 15.595223;, +-2.447174; 54.220703; 15.450850;, +-3.651890; 54.220703; 15.211217;, +-4.834091; 54.220703; 14.877802;, +-5.986488; 54.220703; 14.452660;, +-7.101976; 54.220703; 13.938413;, +-8.173678; 54.220703; 13.338231;, +-9.194987; 54.220703; 12.655814;, +-10.159606; 54.220703; 11.895370;, +-11.061587; 54.220703; 11.061587;, +-11.895370; 54.220703; 10.159606;, +-12.655814; 54.220703; 9.194987;, +-13.338231; 54.220703; 8.173678;, +-13.938413; 54.220703; 7.101976;, +-14.452660; 54.220703; 5.986488;, +-14.877802; 54.220703; 4.834091;, +-15.211217; 54.220703; 3.651890;, +-15.450850; 54.220703; 2.447174;, +-15.595223; 54.220703; 1.227371;, +-15.643447; 54.220703; 0.000000;, +-15.595223; 54.220703; -1.227371;, +-15.450850; 54.220703; -2.447174;, +-15.211217; 54.220703; -3.651890;, +-14.877802; 54.220703; -4.834091;, +-14.452660; 54.220703; -5.986488;, +-13.938413; 54.220703; -7.101976;, +-13.338231; 54.220703; -8.173678;, +-12.655814; 54.220703; -9.194987;, +-11.895370; 54.220703; -10.159606;, +-11.061587; 54.220703; -11.061587;, +-10.159606; 54.220703; -11.895370;, +-9.194987; 54.220703; -12.655814;, +-8.173678; 54.220703; -13.338231;, +-7.101976; 54.220703; -13.938413;, +-5.986488; 54.220703; -14.452660;, +-4.834091; 54.220703; -14.877802;, +-3.651890; 54.220703; -15.211217;, +-2.447174; 54.220703; -15.450850;, +-1.227371; 54.220703; -15.595223;, +-0.000000; 54.220703; -15.643447;, +1.227371; 54.220703; -15.595223;, +2.447174; 54.220703; -15.450850;, +3.651890; 54.220703; -15.211217;, +4.834091; 54.220703; -14.877802;, +5.986488; 54.220703; -14.452660;, +7.101976; 54.220703; -13.938413;, +8.173678; 54.220703; -13.338231;, +9.194987; 54.220703; -12.655814;, +10.159606; 54.220703; -11.895370;, +11.061587; 54.220703; -11.061587;, +11.895370; 54.220703; -10.159606;, +12.655814; 54.220703; -9.194987;, +13.338231; 54.220703; -8.173678;, +13.938413; 54.220703; -7.101976;, +14.452660; 54.220703; -5.986488;, +14.877802; 54.220703; -4.834091;, +15.211217; 54.220703; -3.651890;, +15.450850; 54.220703; -2.447174;, +15.595223; 54.220703; -1.227371;, +7.845910; 54.727341; 0.000000;, +7.821723; 54.727341; 0.615583;, +7.749313; 54.727341; 1.227371;, +7.629127; 54.727341; 1.831591;, +7.461904; 54.727341; 2.424519;, +7.248675; 54.727341; 3.002500;, +6.990757; 54.727341; 3.561968;, +6.689738; 54.727341; 4.099476;, +6.347474; 54.727341; 4.611710;, +5.966076; 54.727341; 5.095510;, +5.547896; 54.727341; 5.547896;, +5.095510; 54.727341; 5.966076;, +4.611710; 54.727341; 6.347474;, +4.099476; 54.727341; 6.689738;, +3.561968; 54.727341; 6.990757;, +3.002500; 54.727341; 7.248675;, +2.424519; 54.727341; 7.461904;, +1.831591; 54.727341; 7.629127;, +1.227371; 54.727341; 7.749313;, +0.615583; 54.727341; 7.821723;, +0.000000; 54.727341; 7.845910;, +-0.615583; 54.727341; 7.821723;, +-1.227371; 54.727341; 7.749313;, +-1.831591; 54.727341; 7.629127;, +-2.424519; 54.727341; 7.461904;, +-3.002500; 54.727341; 7.248675;, +-3.561968; 54.727341; 6.990757;, +-4.099476; 54.727341; 6.689738;, +-4.611710; 54.727341; 6.347474;, +-5.095510; 54.727341; 5.966076;, +-5.547896; 54.727341; 5.547896;, +-5.966076; 54.727341; 5.095510;, +-6.347474; 54.727341; 4.611710;, +-6.689738; 54.727341; 4.099476;, +-6.990757; 54.727341; 3.561968;, +-7.248675; 54.727341; 3.002500;, +-7.461904; 54.727341; 2.424519;, +-7.629127; 54.727341; 1.831591;, +-7.749313; 54.727341; 1.227371;, +-7.821723; 54.727341; 0.615583;, +-7.845910; 54.727341; 0.000000;, +-7.821723; 54.727341; -0.615583;, +-7.749313; 54.727341; -1.227371;, +-7.629127; 54.727341; -1.831591;, +-7.461904; 54.727341; -2.424519;, +-7.248675; 54.727341; -3.002500;, +-6.990757; 54.727341; -3.561968;, +-6.689738; 54.727341; -4.099476;, +-6.347474; 54.727341; -4.611710;, +-5.966076; 54.727341; -5.095510;, +-5.547896; 54.727341; -5.547896;, +-5.095510; 54.727341; -5.966076;, +-4.611710; 54.727341; -6.347474;, +-4.099476; 54.727341; -6.689738;, +-3.561968; 54.727341; -6.990757;, +-3.002500; 54.727341; -7.248675;, +-2.424519; 54.727341; -7.461904;, +-1.831591; 54.727341; -7.629127;, +-1.227371; 54.727341; -7.749313;, +-0.615583; 54.727341; -7.821723;, +-0.000000; 54.727341; -7.845910;, +0.615583; 54.727341; -7.821723;, +1.227371; 54.727341; -7.749313;, +1.831591; 54.727341; -7.629127;, +2.424519; 54.727341; -7.461904;, +3.002500; 54.727341; -7.248675;, +3.561968; 54.727341; -6.990757;, +4.099476; 54.727341; -6.689738;, +4.611710; 54.727341; -6.347474;, +5.095510; 54.727341; -5.966076;, +5.547896; 54.727341; -5.547896;, +5.966076; 54.727341; -5.095510;, +6.347474; 54.727341; -4.611710;, +6.689738; 54.727341; -4.099476;, +6.990757; 54.727341; -3.561968;, +7.248675; 54.727341; -3.002500;, +7.461904; 54.727341; -2.424519;, +7.629127; 54.727341; -1.831591;, +7.749313; 54.727341; -1.227371;, +7.821723; 54.727341; -0.615583;, +0.188417; 0.000000; 99.992599;, +0.000000; -0.103434; 99.992599;, +-0.188417; 0.000000; 99.992599;, +-0.188417; -0.000000; -99.992599;, +-0.000000; -0.103434; -99.992599;, +0.188417; 0.000000; -99.992599;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +0.000000; 54.896568; 0.000000;, +100.000000; 0.000000; 0.000000;, +99.691734; 4.307135; 0.000000;, +98.768837; 8.587716; 0.000000;, +97.236992; 12.815350; 0.000000;, +95.105652; 16.963972; 0.000000;, +92.387955; 21.008009; 0.000000;, +89.100655; 24.922522; 0.000000;, +85.264015; 28.683378; 0.000000;, +80.901703; 32.267395; 0.000000;, +76.040596; 35.652470; 0.000000;, +70.710678; 38.817738; 0.000000;, +64.944801; 41.743679; 0.000000;, +58.778526; 44.412258; 0.000000;, +52.249855; 46.807018; 0.000000;, +45.399052; 48.913204; 0.000000;, +38.268345; 50.717819; 0.000000;, +30.901699; 52.209740; 0.000000;, +23.344536; 53.379772; 0.000000;, +15.643447; 54.220703; 0.000000;, +7.845910; 54.727341; 0.000000;; + + 3128; +3;1602,21,1601;, +3;1603,21,1602;, +3;1605,61,1604;, +3;1606,61,1605;, +3;2,82,81;, +3;3,83,82;, +3;4,84,83;, +3;5,85,84;, +3;6,86,85;, +3;7,87,86;, +3;8,88,87;, +3;9,89,88;, +3;10,90,89;, +3;11,91,90;, +3;12,92,91;, +3;13,93,92;, +3;14,94,93;, +3;15,95,94;, +3;16,96,95;, +3;17,97,96;, +3;18,98,97;, +3;19,99,98;, +3;20,100,99;, +3;1601,100,20;, +3;100,1601,21;, +3;102,101,21;, +3;1603,22,102;, +3;23,103,102;, +3;24,104,103;, +3;25,105,104;, +3;26,106,105;, +3;27,107,106;, +3;28,108,107;, +3;29,109,108;, +3;30,110,109;, +3;31,111,110;, +3;32,112,111;, +3;33,113,112;, +3;34,114,113;, +3;35,115,114;, +3;36,116,115;, +3;37,117,116;, +3;38,118,117;, +3;39,119,118;, +3;40,120,119;, +3;41,121,120;, +3;42,122,121;, +3;43,123,122;, +3;44,124,123;, +3;45,125,124;, +3;46,126,125;, +3;47,127,126;, +3;48,128,127;, +3;49,129,128;, +3;50,130,129;, +3;51,131,130;, +3;52,132,131;, +3;53,133,132;, +3;54,134,133;, +3;55,135,134;, +3;56,136,135;, +3;57,137,136;, +3;58,138,137;, +3;59,139,138;, +3;60,140,139;, +3;1604,140,60;, +3;140,1604,61;, +3;142,141,61;, +3;1606,62,142;, +3;63,143,142;, +3;64,144,143;, +3;65,145,144;, +3;66,146,145;, +3;67,147,146;, +3;68,148,147;, +3;69,149,148;, +3;70,150,149;, +3;71,151,150;, +3;72,152,151;, +3;73,153,152;, +3;74,154,153;, +3;75,155,154;, +3;76,156,155;, +3;77,157,156;, +3;78,158,157;, +3;79,159,158;, +3;80,160,159;, +3;1,1687,160;, +3;82,162,161;, +3;83,163,162;, +3;84,164,163;, +3;85,165,164;, +3;86,166,165;, +3;87,167,166;, +3;88,168,167;, +3;89,169,168;, +3;90,170,169;, +3;91,171,170;, +3;92,172,171;, +3;93,173,172;, +3;94,174,173;, +3;95,175,174;, +3;96,176,175;, +3;97,177,176;, +3;98,178,177;, +3;99,179,178;, +3;100,180,179;, +3;101,181,180;, +3;102,182,181;, +3;103,183,182;, +3;104,184,183;, +3;105,185,184;, +3;106,186,185;, +3;107,187,186;, +3;108,188,187;, +3;109,189,188;, +3;110,190,189;, +3;111,191,190;, +3;112,192,191;, +3;113,193,192;, +3;114,194,193;, +3;115,195,194;, +3;116,196,195;, +3;117,197,196;, +3;118,198,197;, +3;119,199,198;, +3;120,200,199;, +3;121,201,200;, +3;122,202,201;, +3;123,203,202;, +3;124,204,203;, +3;125,205,204;, +3;126,206,205;, +3;127,207,206;, +3;128,208,207;, +3;129,209,208;, +3;130,210,209;, +3;131,211,210;, +3;132,212,211;, +3;133,213,212;, +3;134,214,213;, +3;135,215,214;, +3;136,216,215;, +3;137,217,216;, +3;138,218,217;, +3;139,219,218;, +3;140,220,219;, +3;141,221,220;, +3;142,222,221;, +3;143,223,222;, +3;144,224,223;, +3;145,225,224;, +3;146,226,225;, +3;147,227,226;, +3;148,228,227;, +3;149,229,228;, +3;150,230,229;, +3;151,231,230;, +3;152,232,231;, +3;153,233,232;, +3;154,234,233;, +3;155,235,234;, +3;156,236,235;, +3;157,237,236;, +3;158,238,237;, +3;159,239,238;, +3;160,240,239;, +3;1687,1688,240;, +3;162,242,241;, +3;163,243,242;, +3;164,244,243;, +3;165,245,244;, +3;166,246,245;, +3;167,247,246;, +3;168,248,247;, +3;169,249,248;, +3;170,250,249;, +3;171,251,250;, +3;172,252,251;, +3;173,253,252;, +3;174,254,253;, +3;175,255,254;, +3;176,256,255;, +3;177,257,256;, +3;178,258,257;, +3;179,259,258;, +3;180,260,259;, +3;181,261,260;, +3;182,262,261;, +3;183,263,262;, +3;184,264,263;, +3;185,265,264;, +3;186,266,265;, +3;187,267,266;, +3;188,268,267;, +3;189,269,268;, +3;190,270,269;, +3;191,271,270;, +3;192,272,271;, +3;193,273,272;, +3;194,274,273;, +3;195,275,274;, +3;196,276,275;, +3;197,277,276;, +3;198,278,277;, +3;199,279,278;, +3;200,280,279;, +3;201,281,280;, +3;202,282,281;, +3;203,283,282;, +3;204,284,283;, +3;205,285,284;, +3;206,286,285;, +3;207,287,286;, +3;208,288,287;, +3;209,289,288;, +3;210,290,289;, +3;211,291,290;, +3;212,292,291;, +3;213,293,292;, +3;214,294,293;, +3;215,295,294;, +3;216,296,295;, +3;217,297,296;, +3;218,298,297;, +3;219,299,298;, +3;220,300,299;, +3;221,301,300;, +3;222,302,301;, +3;223,303,302;, +3;224,304,303;, +3;225,305,304;, +3;226,306,305;, +3;227,307,306;, +3;228,308,307;, +3;229,309,308;, +3;230,310,309;, +3;231,311,310;, +3;232,312,311;, +3;233,313,312;, +3;234,314,313;, +3;235,315,314;, +3;236,316,315;, +3;237,317,316;, +3;238,318,317;, +3;239,319,318;, +3;240,320,319;, +3;1688,1689,320;, +3;242,322,321;, +3;243,323,322;, +3;244,324,323;, +3;245,325,324;, +3;246,326,325;, +3;247,327,326;, +3;248,328,327;, +3;249,329,328;, +3;250,330,329;, +3;251,331,330;, +3;252,332,331;, +3;253,333,332;, +3;254,334,333;, +3;255,335,334;, +3;256,336,335;, +3;257,337,336;, +3;258,338,337;, +3;259,339,338;, +3;260,340,339;, +3;261,341,340;, +3;262,342,341;, +3;263,343,342;, +3;264,344,343;, +3;265,345,344;, +3;266,346,345;, +3;267,347,346;, +3;268,348,347;, +3;269,349,348;, +3;270,350,349;, +3;271,351,350;, +3;272,352,351;, +3;273,353,352;, +3;274,354,353;, +3;275,355,354;, +3;276,356,355;, +3;277,357,356;, +3;278,358,357;, +3;279,359,358;, +3;280,360,359;, +3;281,361,360;, +3;282,362,361;, +3;283,363,362;, +3;284,364,363;, +3;285,365,364;, +3;286,366,365;, +3;287,367,366;, +3;288,368,367;, +3;289,369,368;, +3;290,370,369;, +3;291,371,370;, +3;292,372,371;, +3;293,373,372;, +3;294,374,373;, +3;295,375,374;, +3;296,376,375;, +3;297,377,376;, +3;298,378,377;, +3;299,379,378;, +3;300,380,379;, +3;301,381,380;, +3;302,382,381;, +3;303,383,382;, +3;304,384,383;, +3;305,385,384;, +3;306,386,385;, +3;307,387,386;, +3;308,388,387;, +3;309,389,388;, +3;310,390,389;, +3;311,391,390;, +3;312,392,391;, +3;313,393,392;, +3;314,394,393;, +3;315,395,394;, +3;316,396,395;, +3;317,397,396;, +3;318,398,397;, +3;319,399,398;, +3;320,400,399;, +3;1689,1690,400;, +3;322,402,401;, +3;323,403,402;, +3;324,404,403;, +3;325,405,404;, +3;326,406,405;, +3;327,407,406;, +3;328,408,407;, +3;329,409,408;, +3;330,410,409;, +3;331,411,410;, +3;332,412,411;, +3;333,413,412;, +3;334,414,413;, +3;335,415,414;, +3;336,416,415;, +3;337,417,416;, +3;338,418,417;, +3;339,419,418;, +3;340,420,419;, +3;341,421,420;, +3;342,422,421;, +3;343,423,422;, +3;344,424,423;, +3;345,425,424;, +3;346,426,425;, +3;347,427,426;, +3;348,428,427;, +3;349,429,428;, +3;350,430,429;, +3;351,431,430;, +3;352,432,431;, +3;353,433,432;, +3;354,434,433;, +3;355,435,434;, +3;356,436,435;, +3;357,437,436;, +3;358,438,437;, +3;359,439,438;, +3;360,440,439;, +3;361,441,440;, +3;362,442,441;, +3;363,443,442;, +3;364,444,443;, +3;365,445,444;, +3;366,446,445;, +3;367,447,446;, +3;368,448,447;, +3;369,449,448;, +3;370,450,449;, +3;371,451,450;, +3;372,452,451;, +3;373,453,452;, +3;374,454,453;, +3;375,455,454;, +3;376,456,455;, +3;377,457,456;, +3;378,458,457;, +3;379,459,458;, +3;380,460,459;, +3;381,461,460;, +3;382,462,461;, +3;383,463,462;, +3;384,464,463;, +3;385,465,464;, +3;386,466,465;, +3;387,467,466;, +3;388,468,467;, +3;389,469,468;, +3;390,470,469;, +3;391,471,470;, +3;392,472,471;, +3;393,473,472;, +3;394,474,473;, +3;395,475,474;, +3;396,476,475;, +3;397,477,476;, +3;398,478,477;, +3;399,479,478;, +3;400,480,479;, +3;1690,1691,480;, +3;402,482,481;, +3;403,483,482;, +3;404,484,483;, +3;405,485,484;, +3;406,486,485;, +3;407,487,486;, +3;408,488,487;, +3;409,489,488;, +3;410,490,489;, +3;411,491,490;, +3;412,492,491;, +3;413,493,492;, +3;414,494,493;, +3;415,495,494;, +3;416,496,495;, +3;417,497,496;, +3;418,498,497;, +3;419,499,498;, +3;420,500,499;, +3;421,501,500;, +3;422,502,501;, +3;423,503,502;, +3;424,504,503;, +3;425,505,504;, +3;426,506,505;, +3;427,507,506;, +3;428,508,507;, +3;429,509,508;, +3;430,510,509;, +3;431,511,510;, +3;432,512,511;, +3;433,513,512;, +3;434,514,513;, +3;435,515,514;, +3;436,516,515;, +3;437,517,516;, +3;438,518,517;, +3;439,519,518;, +3;440,520,519;, +3;441,521,520;, +3;442,522,521;, +3;443,523,522;, +3;444,524,523;, +3;445,525,524;, +3;446,526,525;, +3;447,527,526;, +3;448,528,527;, +3;449,529,528;, +3;450,530,529;, +3;451,531,530;, +3;452,532,531;, +3;453,533,532;, +3;454,534,533;, +3;455,535,534;, +3;456,536,535;, +3;457,537,536;, +3;458,538,537;, +3;459,539,538;, +3;460,540,539;, +3;461,541,540;, +3;462,542,541;, +3;463,543,542;, +3;464,544,543;, +3;465,545,544;, +3;466,546,545;, +3;467,547,546;, +3;468,548,547;, +3;469,549,548;, +3;470,550,549;, +3;471,551,550;, +3;472,552,551;, +3;473,553,552;, +3;474,554,553;, +3;475,555,554;, +3;476,556,555;, +3;477,557,556;, +3;478,558,557;, +3;479,559,558;, +3;480,560,559;, +3;1691,1692,560;, +3;482,562,561;, +3;483,563,562;, +3;484,564,563;, +3;485,565,564;, +3;486,566,565;, +3;487,567,566;, +3;488,568,567;, +3;489,569,568;, +3;490,570,569;, +3;491,571,570;, +3;492,572,571;, +3;493,573,572;, +3;494,574,573;, +3;495,575,574;, +3;496,576,575;, +3;497,577,576;, +3;498,578,577;, +3;499,579,578;, +3;500,580,579;, +3;501,581,580;, +3;502,582,581;, +3;503,583,582;, +3;504,584,583;, +3;505,585,584;, +3;506,586,585;, +3;507,587,586;, +3;508,588,587;, +3;509,589,588;, +3;510,590,589;, +3;511,591,590;, +3;512,592,591;, +3;513,593,592;, +3;514,594,593;, +3;515,595,594;, +3;516,596,595;, +3;517,597,596;, +3;518,598,597;, +3;519,599,598;, +3;520,600,599;, +3;521,601,600;, +3;522,602,601;, +3;523,603,602;, +3;524,604,603;, +3;525,605,604;, +3;526,606,605;, +3;527,607,606;, +3;528,608,607;, +3;529,609,608;, +3;530,610,609;, +3;531,611,610;, +3;532,612,611;, +3;533,613,612;, +3;534,614,613;, +3;535,615,614;, +3;536,616,615;, +3;537,617,616;, +3;538,618,617;, +3;539,619,618;, +3;540,620,619;, +3;541,621,620;, +3;542,622,621;, +3;543,623,622;, +3;544,624,623;, +3;545,625,624;, +3;546,626,625;, +3;547,627,626;, +3;548,628,627;, +3;549,629,628;, +3;550,630,629;, +3;551,631,630;, +3;552,632,631;, +3;553,633,632;, +3;554,634,633;, +3;555,635,634;, +3;556,636,635;, +3;557,637,636;, +3;558,638,637;, +3;559,639,638;, +3;560,640,639;, +3;1692,1693,640;, +3;562,642,641;, +3;563,643,642;, +3;564,644,643;, +3;565,645,644;, +3;566,646,645;, +3;567,647,646;, +3;568,648,647;, +3;569,649,648;, +3;570,650,649;, +3;571,651,650;, +3;572,652,651;, +3;573,653,652;, +3;574,654,653;, +3;575,655,654;, +3;576,656,655;, +3;577,657,656;, +3;578,658,657;, +3;579,659,658;, +3;580,660,659;, +3;581,661,660;, +3;582,662,661;, +3;583,663,662;, +3;584,664,663;, +3;585,665,664;, +3;586,666,665;, +3;587,667,666;, +3;588,668,667;, +3;589,669,668;, +3;590,670,669;, +3;591,671,670;, +3;592,672,671;, +3;593,673,672;, +3;594,674,673;, +3;595,675,674;, +3;596,676,675;, +3;597,677,676;, +3;598,678,677;, +3;599,679,678;, +3;600,680,679;, +3;601,681,680;, +3;602,682,681;, +3;603,683,682;, +3;604,684,683;, +3;605,685,684;, +3;606,686,685;, +3;607,687,686;, +3;608,688,687;, +3;609,689,688;, +3;610,690,689;, +3;611,691,690;, +3;612,692,691;, +3;613,693,692;, +3;614,694,693;, +3;615,695,694;, +3;616,696,695;, +3;617,697,696;, +3;618,698,697;, +3;619,699,698;, +3;620,700,699;, +3;621,701,700;, +3;622,702,701;, +3;623,703,702;, +3;624,704,703;, +3;625,705,704;, +3;626,706,705;, +3;627,707,706;, +3;628,708,707;, +3;629,709,708;, +3;630,710,709;, +3;631,711,710;, +3;632,712,711;, +3;633,713,712;, +3;634,714,713;, +3;635,715,714;, +3;636,716,715;, +3;637,717,716;, +3;638,718,717;, +3;639,719,718;, +3;640,720,719;, +3;1693,1694,720;, +3;642,722,721;, +3;643,723,722;, +3;644,724,723;, +3;645,725,724;, +3;646,726,725;, +3;647,727,726;, +3;648,728,727;, +3;649,729,728;, +3;650,730,729;, +3;651,731,730;, +3;652,732,731;, +3;653,733,732;, +3;654,734,733;, +3;655,735,734;, +3;656,736,735;, +3;657,737,736;, +3;658,738,737;, +3;659,739,738;, +3;660,740,739;, +3;661,741,740;, +3;662,742,741;, +3;663,743,742;, +3;664,744,743;, +3;665,745,744;, +3;666,746,745;, +3;667,747,746;, +3;668,748,747;, +3;669,749,748;, +3;670,750,749;, +3;671,751,750;, +3;672,752,751;, +3;673,753,752;, +3;674,754,753;, +3;675,755,754;, +3;676,756,755;, +3;677,757,756;, +3;678,758,757;, +3;679,759,758;, +3;680,760,759;, +3;681,761,760;, +3;682,762,761;, +3;683,763,762;, +3;684,764,763;, +3;685,765,764;, +3;686,766,765;, +3;687,767,766;, +3;688,768,767;, +3;689,769,768;, +3;690,770,769;, +3;691,771,770;, +3;692,772,771;, +3;693,773,772;, +3;694,774,773;, +3;695,775,774;, +3;696,776,775;, +3;697,777,776;, +3;698,778,777;, +3;699,779,778;, +3;700,780,779;, +3;701,781,780;, +3;702,782,781;, +3;703,783,782;, +3;704,784,783;, +3;705,785,784;, +3;706,786,785;, +3;707,787,786;, +3;708,788,787;, +3;709,789,788;, +3;710,790,789;, +3;711,791,790;, +3;712,792,791;, +3;713,793,792;, +3;714,794,793;, +3;715,795,794;, +3;716,796,795;, +3;717,797,796;, +3;718,798,797;, +3;719,799,798;, +3;720,800,799;, +3;1694,1695,800;, +3;722,802,801;, +3;723,803,802;, +3;724,804,803;, +3;725,805,804;, +3;726,806,805;, +3;727,807,806;, +3;728,808,807;, +3;729,809,808;, +3;730,810,809;, +3;731,811,810;, +3;732,812,811;, +3;733,813,812;, +3;734,814,813;, +3;735,815,814;, +3;736,816,815;, +3;737,817,816;, +3;738,818,817;, +3;739,819,818;, +3;740,820,819;, +3;741,821,820;, +3;742,822,821;, +3;743,823,822;, +3;744,824,823;, +3;745,825,824;, +3;746,826,825;, +3;747,827,826;, +3;748,828,827;, +3;749,829,828;, +3;750,830,829;, +3;751,831,830;, +3;752,832,831;, +3;753,833,832;, +3;754,834,833;, +3;755,835,834;, +3;756,836,835;, +3;757,837,836;, +3;758,838,837;, +3;759,839,838;, +3;760,840,839;, +3;761,841,840;, +3;762,842,841;, +3;763,843,842;, +3;764,844,843;, +3;765,845,844;, +3;766,846,845;, +3;767,847,846;, +3;768,848,847;, +3;769,849,848;, +3;770,850,849;, +3;771,851,850;, +3;772,852,851;, +3;773,853,852;, +3;774,854,853;, +3;775,855,854;, +3;776,856,855;, +3;777,857,856;, +3;778,858,857;, +3;779,859,858;, +3;780,860,859;, +3;781,861,860;, +3;782,862,861;, +3;783,863,862;, +3;784,864,863;, +3;785,865,864;, +3;786,866,865;, +3;787,867,866;, +3;788,868,867;, +3;789,869,868;, +3;790,870,869;, +3;791,871,870;, +3;792,872,871;, +3;793,873,872;, +3;794,874,873;, +3;795,875,874;, +3;796,876,875;, +3;797,877,876;, +3;798,878,877;, +3;799,879,878;, +3;800,880,879;, +3;1695,1696,880;, +3;802,882,881;, +3;803,883,882;, +3;804,884,883;, +3;805,885,884;, +3;806,886,885;, +3;807,887,886;, +3;808,888,887;, +3;809,889,888;, +3;810,890,889;, +3;811,891,890;, +3;812,892,891;, +3;813,893,892;, +3;814,894,893;, +3;815,895,894;, +3;816,896,895;, +3;817,897,896;, +3;818,898,897;, +3;819,899,898;, +3;820,900,899;, +3;821,901,900;, +3;822,902,901;, +3;823,903,902;, +3;824,904,903;, +3;825,905,904;, +3;826,906,905;, +3;827,907,906;, +3;828,908,907;, +3;829,909,908;, +3;830,910,909;, +3;831,911,910;, +3;832,912,911;, +3;833,913,912;, +3;834,914,913;, +3;835,915,914;, +3;836,916,915;, +3;837,917,916;, +3;838,918,917;, +3;839,919,918;, +3;840,920,919;, +3;841,921,920;, +3;842,922,921;, +3;843,923,922;, +3;844,924,923;, +3;845,925,924;, +3;846,926,925;, +3;847,927,926;, +3;848,928,927;, +3;849,929,928;, +3;850,930,929;, +3;851,931,930;, +3;852,932,931;, +3;853,933,932;, +3;854,934,933;, +3;855,935,934;, +3;856,936,935;, +3;857,937,936;, +3;858,938,937;, +3;859,939,938;, +3;860,940,939;, +3;861,941,940;, +3;862,942,941;, +3;863,943,942;, +3;864,944,943;, +3;865,945,944;, +3;866,946,945;, +3;867,947,946;, +3;868,948,947;, +3;869,949,948;, +3;870,950,949;, +3;871,951,950;, +3;872,952,951;, +3;873,953,952;, +3;874,954,953;, +3;875,955,954;, +3;876,956,955;, +3;877,957,956;, +3;878,958,957;, +3;879,959,958;, +3;880,960,959;, +3;1696,1697,960;, +3;882,962,961;, +3;883,963,962;, +3;884,964,963;, +3;885,965,964;, +3;886,966,965;, +3;887,967,966;, +3;888,968,967;, +3;889,969,968;, +3;890,970,969;, +3;891,971,970;, +3;892,972,971;, +3;893,973,972;, +3;894,974,973;, +3;895,975,974;, +3;896,976,975;, +3;897,977,976;, +3;898,978,977;, +3;899,979,978;, +3;900,980,979;, +3;901,981,980;, +3;902,982,981;, +3;903,983,982;, +3;904,984,983;, +3;905,985,984;, +3;906,986,985;, +3;907,987,986;, +3;908,988,987;, +3;909,989,988;, +3;910,990,989;, +3;911,991,990;, +3;912,992,991;, +3;913,993,992;, +3;914,994,993;, +3;915,995,994;, +3;916,996,995;, +3;917,997,996;, +3;918,998,997;, +3;919,999,998;, +3;920,1000,999;, +3;921,1001,1000;, +3;922,1002,1001;, +3;923,1003,1002;, +3;924,1004,1003;, +3;925,1005,1004;, +3;926,1006,1005;, +3;927,1007,1006;, +3;928,1008,1007;, +3;929,1009,1008;, +3;930,1010,1009;, +3;931,1011,1010;, +3;932,1012,1011;, +3;933,1013,1012;, +3;934,1014,1013;, +3;935,1015,1014;, +3;936,1016,1015;, +3;937,1017,1016;, +3;938,1018,1017;, +3;939,1019,1018;, +3;940,1020,1019;, +3;941,1021,1020;, +3;942,1022,1021;, +3;943,1023,1022;, +3;944,1024,1023;, +3;945,1025,1024;, +3;946,1026,1025;, +3;947,1027,1026;, +3;948,1028,1027;, +3;949,1029,1028;, +3;950,1030,1029;, +3;951,1031,1030;, +3;952,1032,1031;, +3;953,1033,1032;, +3;954,1034,1033;, +3;955,1035,1034;, +3;956,1036,1035;, +3;957,1037,1036;, +3;958,1038,1037;, +3;959,1039,1038;, +3;960,1040,1039;, +3;1697,1698,1040;, +3;962,1042,1041;, +3;963,1043,1042;, +3;964,1044,1043;, +3;965,1045,1044;, +3;966,1046,1045;, +3;967,1047,1046;, +3;968,1048,1047;, +3;969,1049,1048;, +3;970,1050,1049;, +3;971,1051,1050;, +3;972,1052,1051;, +3;973,1053,1052;, +3;974,1054,1053;, +3;975,1055,1054;, +3;976,1056,1055;, +3;977,1057,1056;, +3;978,1058,1057;, +3;979,1059,1058;, +3;980,1060,1059;, +3;981,1061,1060;, +3;982,1062,1061;, +3;983,1063,1062;, +3;984,1064,1063;, +3;985,1065,1064;, +3;986,1066,1065;, +3;987,1067,1066;, +3;988,1068,1067;, +3;989,1069,1068;, +3;990,1070,1069;, +3;991,1071,1070;, +3;992,1072,1071;, +3;993,1073,1072;, +3;994,1074,1073;, +3;995,1075,1074;, +3;996,1076,1075;, +3;997,1077,1076;, +3;998,1078,1077;, +3;999,1079,1078;, +3;1000,1080,1079;, +3;1001,1081,1080;, +3;1002,1082,1081;, +3;1003,1083,1082;, +3;1004,1084,1083;, +3;1005,1085,1084;, +3;1006,1086,1085;, +3;1007,1087,1086;, +3;1008,1088,1087;, +3;1009,1089,1088;, +3;1010,1090,1089;, +3;1011,1091,1090;, +3;1012,1092,1091;, +3;1013,1093,1092;, +3;1014,1094,1093;, +3;1015,1095,1094;, +3;1016,1096,1095;, +3;1017,1097,1096;, +3;1018,1098,1097;, +3;1019,1099,1098;, +3;1020,1100,1099;, +3;1021,1101,1100;, +3;1022,1102,1101;, +3;1023,1103,1102;, +3;1024,1104,1103;, +3;1025,1105,1104;, +3;1026,1106,1105;, +3;1027,1107,1106;, +3;1028,1108,1107;, +3;1029,1109,1108;, +3;1030,1110,1109;, +3;1031,1111,1110;, +3;1032,1112,1111;, +3;1033,1113,1112;, +3;1034,1114,1113;, +3;1035,1115,1114;, +3;1036,1116,1115;, +3;1037,1117,1116;, +3;1038,1118,1117;, +3;1039,1119,1118;, +3;1040,1120,1119;, +3;1698,1699,1120;, +3;1042,1122,1121;, +3;1043,1123,1122;, +3;1044,1124,1123;, +3;1045,1125,1124;, +3;1046,1126,1125;, +3;1047,1127,1126;, +3;1048,1128,1127;, +3;1049,1129,1128;, +3;1050,1130,1129;, +3;1051,1131,1130;, +3;1052,1132,1131;, +3;1053,1133,1132;, +3;1054,1134,1133;, +3;1055,1135,1134;, +3;1056,1136,1135;, +3;1057,1137,1136;, +3;1058,1138,1137;, +3;1059,1139,1138;, +3;1060,1140,1139;, +3;1061,1141,1140;, +3;1062,1142,1141;, +3;1063,1143,1142;, +3;1064,1144,1143;, +3;1065,1145,1144;, +3;1066,1146,1145;, +3;1067,1147,1146;, +3;1068,1148,1147;, +3;1069,1149,1148;, +3;1070,1150,1149;, +3;1071,1151,1150;, +3;1072,1152,1151;, +3;1073,1153,1152;, +3;1074,1154,1153;, +3;1075,1155,1154;, +3;1076,1156,1155;, +3;1077,1157,1156;, +3;1078,1158,1157;, +3;1079,1159,1158;, +3;1080,1160,1159;, +3;1081,1161,1160;, +3;1082,1162,1161;, +3;1083,1163,1162;, +3;1084,1164,1163;, +3;1085,1165,1164;, +3;1086,1166,1165;, +3;1087,1167,1166;, +3;1088,1168,1167;, +3;1089,1169,1168;, +3;1090,1170,1169;, +3;1091,1171,1170;, +3;1092,1172,1171;, +3;1093,1173,1172;, +3;1094,1174,1173;, +3;1095,1175,1174;, +3;1096,1176,1175;, +3;1097,1177,1176;, +3;1098,1178,1177;, +3;1099,1179,1178;, +3;1100,1180,1179;, +3;1101,1181,1180;, +3;1102,1182,1181;, +3;1103,1183,1182;, +3;1104,1184,1183;, +3;1105,1185,1184;, +3;1106,1186,1185;, +3;1107,1187,1186;, +3;1108,1188,1187;, +3;1109,1189,1188;, +3;1110,1190,1189;, +3;1111,1191,1190;, +3;1112,1192,1191;, +3;1113,1193,1192;, +3;1114,1194,1193;, +3;1115,1195,1194;, +3;1116,1196,1195;, +3;1117,1197,1196;, +3;1118,1198,1197;, +3;1119,1199,1198;, +3;1120,1200,1199;, +3;1699,1700,1200;, +3;1122,1202,1201;, +3;1123,1203,1202;, +3;1124,1204,1203;, +3;1125,1205,1204;, +3;1126,1206,1205;, +3;1127,1207,1206;, +3;1128,1208,1207;, +3;1129,1209,1208;, +3;1130,1210,1209;, +3;1131,1211,1210;, +3;1132,1212,1211;, +3;1133,1213,1212;, +3;1134,1214,1213;, +3;1135,1215,1214;, +3;1136,1216,1215;, +3;1137,1217,1216;, +3;1138,1218,1217;, +3;1139,1219,1218;, +3;1140,1220,1219;, +3;1141,1221,1220;, +3;1142,1222,1221;, +3;1143,1223,1222;, +3;1144,1224,1223;, +3;1145,1225,1224;, +3;1146,1226,1225;, +3;1147,1227,1226;, +3;1148,1228,1227;, +3;1149,1229,1228;, +3;1150,1230,1229;, +3;1151,1231,1230;, +3;1152,1232,1231;, +3;1153,1233,1232;, +3;1154,1234,1233;, +3;1155,1235,1234;, +3;1156,1236,1235;, +3;1157,1237,1236;, +3;1158,1238,1237;, +3;1159,1239,1238;, +3;1160,1240,1239;, +3;1161,1241,1240;, +3;1162,1242,1241;, +3;1163,1243,1242;, +3;1164,1244,1243;, +3;1165,1245,1244;, +3;1166,1246,1245;, +3;1167,1247,1246;, +3;1168,1248,1247;, +3;1169,1249,1248;, +3;1170,1250,1249;, +3;1171,1251,1250;, +3;1172,1252,1251;, +3;1173,1253,1252;, +3;1174,1254,1253;, +3;1175,1255,1254;, +3;1176,1256,1255;, +3;1177,1257,1256;, +3;1178,1258,1257;, +3;1179,1259,1258;, +3;1180,1260,1259;, +3;1181,1261,1260;, +3;1182,1262,1261;, +3;1183,1263,1262;, +3;1184,1264,1263;, +3;1185,1265,1264;, +3;1186,1266,1265;, +3;1187,1267,1266;, +3;1188,1268,1267;, +3;1189,1269,1268;, +3;1190,1270,1269;, +3;1191,1271,1270;, +3;1192,1272,1271;, +3;1193,1273,1272;, +3;1194,1274,1273;, +3;1195,1275,1274;, +3;1196,1276,1275;, +3;1197,1277,1276;, +3;1198,1278,1277;, +3;1199,1279,1278;, +3;1200,1280,1279;, +3;1700,1701,1280;, +3;1202,1282,1281;, +3;1203,1283,1282;, +3;1204,1284,1283;, +3;1205,1285,1284;, +3;1206,1286,1285;, +3;1207,1287,1286;, +3;1208,1288,1287;, +3;1209,1289,1288;, +3;1210,1290,1289;, +3;1211,1291,1290;, +3;1212,1292,1291;, +3;1213,1293,1292;, +3;1214,1294,1293;, +3;1215,1295,1294;, +3;1216,1296,1295;, +3;1217,1297,1296;, +3;1218,1298,1297;, +3;1219,1299,1298;, +3;1220,1300,1299;, +3;1221,1301,1300;, +3;1222,1302,1301;, +3;1223,1303,1302;, +3;1224,1304,1303;, +3;1225,1305,1304;, +3;1226,1306,1305;, +3;1227,1307,1306;, +3;1228,1308,1307;, +3;1229,1309,1308;, +3;1230,1310,1309;, +3;1231,1311,1310;, +3;1232,1312,1311;, +3;1233,1313,1312;, +3;1234,1314,1313;, +3;1235,1315,1314;, +3;1236,1316,1315;, +3;1237,1317,1316;, +3;1238,1318,1317;, +3;1239,1319,1318;, +3;1240,1320,1319;, +3;1241,1321,1320;, +3;1242,1322,1321;, +3;1243,1323,1322;, +3;1244,1324,1323;, +3;1245,1325,1324;, +3;1246,1326,1325;, +3;1247,1327,1326;, +3;1248,1328,1327;, +3;1249,1329,1328;, +3;1250,1330,1329;, +3;1251,1331,1330;, +3;1252,1332,1331;, +3;1253,1333,1332;, +3;1254,1334,1333;, +3;1255,1335,1334;, +3;1256,1336,1335;, +3;1257,1337,1336;, +3;1258,1338,1337;, +3;1259,1339,1338;, +3;1260,1340,1339;, +3;1261,1341,1340;, +3;1262,1342,1341;, +3;1263,1343,1342;, +3;1264,1344,1343;, +3;1265,1345,1344;, +3;1266,1346,1345;, +3;1267,1347,1346;, +3;1268,1348,1347;, +3;1269,1349,1348;, +3;1270,1350,1349;, +3;1271,1351,1350;, +3;1272,1352,1351;, +3;1273,1353,1352;, +3;1274,1354,1353;, +3;1275,1355,1354;, +3;1276,1356,1355;, +3;1277,1357,1356;, +3;1278,1358,1357;, +3;1279,1359,1358;, +3;1280,1360,1359;, +3;1701,1702,1360;, +3;1282,1362,1361;, +3;1283,1363,1362;, +3;1284,1364,1363;, +3;1285,1365,1364;, +3;1286,1366,1365;, +3;1287,1367,1366;, +3;1288,1368,1367;, +3;1289,1369,1368;, +3;1290,1370,1369;, +3;1291,1371,1370;, +3;1292,1372,1371;, +3;1293,1373,1372;, +3;1294,1374,1373;, +3;1295,1375,1374;, +3;1296,1376,1375;, +3;1297,1377,1376;, +3;1298,1378,1377;, +3;1299,1379,1378;, +3;1300,1380,1379;, +3;1301,1381,1380;, +3;1302,1382,1381;, +3;1303,1383,1382;, +3;1304,1384,1383;, +3;1305,1385,1384;, +3;1306,1386,1385;, +3;1307,1387,1386;, +3;1308,1388,1387;, +3;1309,1389,1388;, +3;1310,1390,1389;, +3;1311,1391,1390;, +3;1312,1392,1391;, +3;1313,1393,1392;, +3;1314,1394,1393;, +3;1315,1395,1394;, +3;1316,1396,1395;, +3;1317,1397,1396;, +3;1318,1398,1397;, +3;1319,1399,1398;, +3;1320,1400,1399;, +3;1321,1401,1400;, +3;1322,1402,1401;, +3;1323,1403,1402;, +3;1324,1404,1403;, +3;1325,1405,1404;, +3;1326,1406,1405;, +3;1327,1407,1406;, +3;1328,1408,1407;, +3;1329,1409,1408;, +3;1330,1410,1409;, +3;1331,1411,1410;, +3;1332,1412,1411;, +3;1333,1413,1412;, +3;1334,1414,1413;, +3;1335,1415,1414;, +3;1336,1416,1415;, +3;1337,1417,1416;, +3;1338,1418,1417;, +3;1339,1419,1418;, +3;1340,1420,1419;, +3;1341,1421,1420;, +3;1342,1422,1421;, +3;1343,1423,1422;, +3;1344,1424,1423;, +3;1345,1425,1424;, +3;1346,1426,1425;, +3;1347,1427,1426;, +3;1348,1428,1427;, +3;1349,1429,1428;, +3;1350,1430,1429;, +3;1351,1431,1430;, +3;1352,1432,1431;, +3;1353,1433,1432;, +3;1354,1434,1433;, +3;1355,1435,1434;, +3;1356,1436,1435;, +3;1357,1437,1436;, +3;1358,1438,1437;, +3;1359,1439,1438;, +3;1360,1440,1439;, +3;1702,1703,1440;, +3;1362,1442,1441;, +3;1363,1443,1442;, +3;1364,1444,1443;, +3;1365,1445,1444;, +3;1366,1446,1445;, +3;1367,1447,1446;, +3;1368,1448,1447;, +3;1369,1449,1448;, +3;1370,1450,1449;, +3;1371,1451,1450;, +3;1372,1452,1451;, +3;1373,1453,1452;, +3;1374,1454,1453;, +3;1375,1455,1454;, +3;1376,1456,1455;, +3;1377,1457,1456;, +3;1378,1458,1457;, +3;1379,1459,1458;, +3;1380,1460,1459;, +3;1381,1461,1460;, +3;1382,1462,1461;, +3;1383,1463,1462;, +3;1384,1464,1463;, +3;1385,1465,1464;, +3;1386,1466,1465;, +3;1387,1467,1466;, +3;1388,1468,1467;, +3;1389,1469,1468;, +3;1390,1470,1469;, +3;1391,1471,1470;, +3;1392,1472,1471;, +3;1393,1473,1472;, +3;1394,1474,1473;, +3;1395,1475,1474;, +3;1396,1476,1475;, +3;1397,1477,1476;, +3;1398,1478,1477;, +3;1399,1479,1478;, +3;1400,1480,1479;, +3;1401,1481,1480;, +3;1402,1482,1481;, +3;1403,1483,1482;, +3;1404,1484,1483;, +3;1405,1485,1484;, +3;1406,1486,1485;, +3;1407,1487,1486;, +3;1408,1488,1487;, +3;1409,1489,1488;, +3;1410,1490,1489;, +3;1411,1491,1490;, +3;1412,1492,1491;, +3;1413,1493,1492;, +3;1414,1494,1493;, +3;1415,1495,1494;, +3;1416,1496,1495;, +3;1417,1497,1496;, +3;1418,1498,1497;, +3;1419,1499,1498;, +3;1420,1500,1499;, +3;1421,1501,1500;, +3;1422,1502,1501;, +3;1423,1503,1502;, +3;1424,1504,1503;, +3;1425,1505,1504;, +3;1426,1506,1505;, +3;1427,1507,1506;, +3;1428,1508,1507;, +3;1429,1509,1508;, +3;1430,1510,1509;, +3;1431,1511,1510;, +3;1432,1512,1511;, +3;1433,1513,1512;, +3;1434,1514,1513;, +3;1435,1515,1514;, +3;1436,1516,1515;, +3;1437,1517,1516;, +3;1438,1518,1517;, +3;1439,1519,1518;, +3;1440,1520,1519;, +3;1703,1704,1520;, +3;1442,1522,1521;, +3;1443,1523,1522;, +3;1444,1524,1523;, +3;1445,1525,1524;, +3;1446,1526,1525;, +3;1447,1527,1526;, +3;1448,1528,1527;, +3;1449,1529,1528;, +3;1450,1530,1529;, +3;1451,1531,1530;, +3;1452,1532,1531;, +3;1453,1533,1532;, +3;1454,1534,1533;, +3;1455,1535,1534;, +3;1456,1536,1535;, +3;1457,1537,1536;, +3;1458,1538,1537;, +3;1459,1539,1538;, +3;1460,1540,1539;, +3;1461,1541,1540;, +3;1462,1542,1541;, +3;1463,1543,1542;, +3;1464,1544,1543;, +3;1465,1545,1544;, +3;1466,1546,1545;, +3;1467,1547,1546;, +3;1468,1548,1547;, +3;1469,1549,1548;, +3;1470,1550,1549;, +3;1471,1551,1550;, +3;1472,1552,1551;, +3;1473,1553,1552;, +3;1474,1554,1553;, +3;1475,1555,1554;, +3;1476,1556,1555;, +3;1477,1557,1556;, +3;1478,1558,1557;, +3;1479,1559,1558;, +3;1480,1560,1559;, +3;1481,1561,1560;, +3;1482,1562,1561;, +3;1483,1563,1562;, +3;1484,1564,1563;, +3;1485,1565,1564;, +3;1486,1566,1565;, +3;1487,1567,1566;, +3;1488,1568,1567;, +3;1489,1569,1568;, +3;1490,1570,1569;, +3;1491,1571,1570;, +3;1492,1572,1571;, +3;1493,1573,1572;, +3;1494,1574,1573;, +3;1495,1575,1574;, +3;1496,1576,1575;, +3;1497,1577,1576;, +3;1498,1578,1577;, +3;1499,1579,1578;, +3;1500,1580,1579;, +3;1501,1581,1580;, +3;1502,1582,1581;, +3;1503,1583,1582;, +3;1504,1584,1583;, +3;1505,1585,1584;, +3;1506,1586,1585;, +3;1507,1587,1586;, +3;1508,1588,1587;, +3;1509,1589,1588;, +3;1510,1590,1589;, +3;1511,1591,1590;, +3;1512,1592,1591;, +3;1513,1593,1592;, +3;1514,1594,1593;, +3;1515,1595,1594;, +3;1516,1596,1595;, +3;1517,1597,1596;, +3;1518,1598,1597;, +3;1519,1599,1598;, +3;1520,1600,1599;, +3;1704,1705,1600;, +3;0,1521,1522;, +3;0,1522,1523;, +3;0,1523,1524;, +3;0,1524,1525;, +3;0,1525,1526;, +3;0,1526,1527;, +3;0,1527,1528;, +3;0,1528,1529;, +3;0,1529,1530;, +3;0,1530,1531;, +3;0,1531,1532;, +3;0,1532,1533;, +3;0,1533,1534;, +3;0,1534,1535;, +3;0,1535,1536;, +3;0,1536,1537;, +3;0,1537,1538;, +3;0,1538,1539;, +3;0,1539,1540;, +3;0,1540,1541;, +3;0,1541,1542;, +3;0,1542,1543;, +3;0,1543,1544;, +3;0,1544,1545;, +3;0,1545,1546;, +3;0,1546,1547;, +3;0,1547,1548;, +3;0,1548,1549;, +3;0,1549,1550;, +3;0,1550,1551;, +3;0,1551,1552;, +3;0,1552,1553;, +3;0,1553,1554;, +3;0,1554,1555;, +3;0,1555,1556;, +3;0,1556,1557;, +3;0,1557,1558;, +3;0,1558,1559;, +3;0,1559,1560;, +3;0,1560,1561;, +3;0,1561,1562;, +3;0,1562,1563;, +3;0,1563,1564;, +3;0,1564,1565;, +3;0,1565,1566;, +3;0,1566,1567;, +3;0,1567,1568;, +3;0,1568,1569;, +3;0,1569,1570;, +3;0,1570,1571;, +3;0,1571,1572;, +3;0,1572,1573;, +3;0,1573,1574;, +3;0,1574,1575;, +3;0,1575,1576;, +3;0,1576,1577;, +3;0,1577,1578;, +3;0,1578,1579;, +3;0,1579,1580;, +3;0,1580,1581;, +3;0,1581,1582;, +3;0,1582,1583;, +3;0,1583,1584;, +3;0,1584,1585;, +3;0,1585,1586;, +3;0,1586,1587;, +3;0,1587,1588;, +3;0,1588,1589;, +3;0,1589,1590;, +3;0,1590,1591;, +3;0,1591,1592;, +3;0,1592,1593;, +3;0,1593,1594;, +3;0,1594,1595;, +3;0,1595,1596;, +3;1681,1596,1597;, +3;1682,1597,1598;, +3;1683,1598,1599;, +3;1684,1599,1600;, +3;1685,1600,1705;, +3;2,81,1686;, +3;3,82,2;, +3;4,83,3;, +3;5,84,4;, +3;6,85,5;, +3;7,86,6;, +3;8,87,7;, +3;9,88,8;, +3;10,89,9;, +3;11,90,10;, +3;12,91,11;, +3;13,92,12;, +3;14,93,13;, +3;15,94,14;, +3;16,95,15;, +3;17,96,16;, +3;18,97,17;, +3;19,98,18;, +3;20,99,19;, +3;100,21,101;, +3;102,21,1603;, +3;23,102,22;, +3;24,103,23;, +3;25,104,24;, +3;26,105,25;, +3;27,106,26;, +3;28,107,27;, +3;29,108,28;, +3;30,109,29;, +3;31,110,30;, +3;32,111,31;, +3;33,112,32;, +3;34,113,33;, +3;35,114,34;, +3;36,115,35;, +3;37,116,36;, +3;38,117,37;, +3;39,118,38;, +3;40,119,39;, +3;41,120,40;, +3;42,121,41;, +3;43,122,42;, +3;44,123,43;, +3;45,124,44;, +3;46,125,45;, +3;47,126,46;, +3;48,127,47;, +3;49,128,48;, +3;50,129,49;, +3;51,130,50;, +3;52,131,51;, +3;53,132,52;, +3;54,133,53;, +3;55,134,54;, +3;56,135,55;, +3;57,136,56;, +3;58,137,57;, +3;59,138,58;, +3;60,139,59;, +3;140,61,141;, +3;142,61,1606;, +3;63,142,62;, +3;64,143,63;, +3;65,144,64;, +3;66,145,65;, +3;67,146,66;, +3;68,147,67;, +3;69,148,68;, +3;70,149,69;, +3;71,150,70;, +3;72,151,71;, +3;73,152,72;, +3;74,153,73;, +3;75,154,74;, +3;76,155,75;, +3;77,156,76;, +3;78,157,77;, +3;79,158,78;, +3;80,159,79;, +3;1,160,80;, +3;82,161,81;, +3;83,162,82;, +3;84,163,83;, +3;85,164,84;, +3;86,165,85;, +3;87,166,86;, +3;88,167,87;, +3;89,168,88;, +3;90,169,89;, +3;91,170,90;, +3;92,171,91;, +3;93,172,92;, +3;94,173,93;, +3;95,174,94;, +3;96,175,95;, +3;97,176,96;, +3;98,177,97;, +3;99,178,98;, +3;100,179,99;, +3;101,180,100;, +3;102,181,101;, +3;103,182,102;, +3;104,183,103;, +3;105,184,104;, +3;106,185,105;, +3;107,186,106;, +3;108,187,107;, +3;109,188,108;, +3;110,189,109;, +3;111,190,110;, +3;112,191,111;, +3;113,192,112;, +3;114,193,113;, +3;115,194,114;, +3;116,195,115;, +3;117,196,116;, +3;118,197,117;, +3;119,198,118;, +3;120,199,119;, +3;121,200,120;, +3;122,201,121;, +3;123,202,122;, +3;124,203,123;, +3;125,204,124;, +3;126,205,125;, +3;127,206,126;, +3;128,207,127;, +3;129,208,128;, +3;130,209,129;, +3;131,210,130;, +3;132,211,131;, +3;133,212,132;, +3;134,213,133;, +3;135,214,134;, +3;136,215,135;, +3;137,216,136;, +3;138,217,137;, +3;139,218,138;, +3;140,219,139;, +3;141,220,140;, +3;142,221,141;, +3;143,222,142;, +3;144,223,143;, +3;145,224,144;, +3;146,225,145;, +3;147,226,146;, +3;148,227,147;, +3;149,228,148;, +3;150,229,149;, +3;151,230,150;, +3;152,231,151;, +3;153,232,152;, +3;154,233,153;, +3;155,234,154;, +3;156,235,155;, +3;157,236,156;, +3;158,237,157;, +3;159,238,158;, +3;160,239,159;, +3;1687,240,160;, +3;162,241,161;, +3;163,242,162;, +3;164,243,163;, +3;165,244,164;, +3;166,245,165;, +3;167,246,166;, +3;168,247,167;, +3;169,248,168;, +3;170,249,169;, +3;171,250,170;, +3;172,251,171;, +3;173,252,172;, +3;174,253,173;, +3;175,254,174;, +3;176,255,175;, +3;177,256,176;, +3;178,257,177;, +3;179,258,178;, +3;180,259,179;, +3;181,260,180;, +3;182,261,181;, +3;183,262,182;, +3;184,263,183;, +3;185,264,184;, +3;186,265,185;, +3;187,266,186;, +3;188,267,187;, +3;189,268,188;, +3;190,269,189;, +3;191,270,190;, +3;192,271,191;, +3;193,272,192;, +3;194,273,193;, +3;195,274,194;, +3;196,275,195;, +3;197,276,196;, +3;198,277,197;, +3;199,278,198;, +3;200,279,199;, +3;201,280,200;, +3;202,281,201;, +3;203,282,202;, +3;204,283,203;, +3;205,284,204;, +3;206,285,205;, +3;207,286,206;, +3;208,287,207;, +3;209,288,208;, +3;210,289,209;, +3;211,290,210;, +3;212,291,211;, +3;213,292,212;, +3;214,293,213;, +3;215,294,214;, +3;216,295,215;, +3;217,296,216;, +3;218,297,217;, +3;219,298,218;, +3;220,299,219;, +3;221,300,220;, +3;222,301,221;, +3;223,302,222;, +3;224,303,223;, +3;225,304,224;, +3;226,305,225;, +3;227,306,226;, +3;228,307,227;, +3;229,308,228;, +3;230,309,229;, +3;231,310,230;, +3;232,311,231;, +3;233,312,232;, +3;234,313,233;, +3;235,314,234;, +3;236,315,235;, +3;237,316,236;, +3;238,317,237;, +3;239,318,238;, +3;240,319,239;, +3;1688,320,240;, +3;242,321,241;, +3;243,322,242;, +3;244,323,243;, +3;245,324,244;, +3;246,325,245;, +3;247,326,246;, +3;248,327,247;, +3;249,328,248;, +3;250,329,249;, +3;251,330,250;, +3;252,331,251;, +3;253,332,252;, +3;254,333,253;, +3;255,334,254;, +3;256,335,255;, +3;257,336,256;, +3;258,337,257;, +3;259,338,258;, +3;260,339,259;, +3;261,340,260;, +3;262,341,261;, +3;263,342,262;, +3;264,343,263;, +3;265,344,264;, +3;266,345,265;, +3;267,346,266;, +3;268,347,267;, +3;269,348,268;, +3;270,349,269;, +3;271,350,270;, +3;272,351,271;, +3;273,352,272;, +3;274,353,273;, +3;275,354,274;, +3;276,355,275;, +3;277,356,276;, +3;278,357,277;, +3;279,358,278;, +3;280,359,279;, +3;281,360,280;, +3;282,361,281;, +3;283,362,282;, +3;284,363,283;, +3;285,364,284;, +3;286,365,285;, +3;287,366,286;, +3;288,367,287;, +3;289,368,288;, +3;290,369,289;, +3;291,370,290;, +3;292,371,291;, +3;293,372,292;, +3;294,373,293;, +3;295,374,294;, +3;296,375,295;, +3;297,376,296;, +3;298,377,297;, +3;299,378,298;, +3;300,379,299;, +3;301,380,300;, +3;302,381,301;, +3;303,382,302;, +3;304,383,303;, +3;305,384,304;, +3;306,385,305;, +3;307,386,306;, +3;308,387,307;, +3;309,388,308;, +3;310,389,309;, +3;311,390,310;, +3;312,391,311;, +3;313,392,312;, +3;314,393,313;, +3;315,394,314;, +3;316,395,315;, +3;317,396,316;, +3;318,397,317;, +3;319,398,318;, +3;320,399,319;, +3;1689,400,320;, +3;322,401,321;, +3;323,402,322;, +3;324,403,323;, +3;325,404,324;, +3;326,405,325;, +3;327,406,326;, +3;328,407,327;, +3;329,408,328;, +3;330,409,329;, +3;331,410,330;, +3;332,411,331;, +3;333,412,332;, +3;334,413,333;, +3;335,414,334;, +3;336,415,335;, +3;337,416,336;, +3;338,417,337;, +3;339,418,338;, +3;340,419,339;, +3;341,420,340;, +3;342,421,341;, +3;343,422,342;, +3;344,423,343;, +3;345,424,344;, +3;346,425,345;, +3;347,426,346;, +3;348,427,347;, +3;349,428,348;, +3;350,429,349;, +3;351,430,350;, +3;352,431,351;, +3;353,432,352;, +3;354,433,353;, +3;355,434,354;, +3;356,435,355;, +3;357,436,356;, +3;358,437,357;, +3;359,438,358;, +3;360,439,359;, +3;361,440,360;, +3;362,441,361;, +3;363,442,362;, +3;364,443,363;, +3;365,444,364;, +3;366,445,365;, +3;367,446,366;, +3;368,447,367;, +3;369,448,368;, +3;370,449,369;, +3;371,450,370;, +3;372,451,371;, +3;373,452,372;, +3;374,453,373;, +3;375,454,374;, +3;376,455,375;, +3;377,456,376;, +3;378,457,377;, +3;379,458,378;, +3;380,459,379;, +3;381,460,380;, +3;382,461,381;, +3;383,462,382;, +3;384,463,383;, +3;385,464,384;, +3;386,465,385;, +3;387,466,386;, +3;388,467,387;, +3;389,468,388;, +3;390,469,389;, +3;391,470,390;, +3;392,471,391;, +3;393,472,392;, +3;394,473,393;, +3;395,474,394;, +3;396,475,395;, +3;397,476,396;, +3;398,477,397;, +3;399,478,398;, +3;400,479,399;, +3;1690,480,400;, +3;402,481,401;, +3;403,482,402;, +3;404,483,403;, +3;405,484,404;, +3;406,485,405;, +3;407,486,406;, +3;408,487,407;, +3;409,488,408;, +3;410,489,409;, +3;411,490,410;, +3;412,491,411;, +3;413,492,412;, +3;414,493,413;, +3;415,494,414;, +3;416,495,415;, +3;417,496,416;, +3;418,497,417;, +3;419,498,418;, +3;420,499,419;, +3;421,500,420;, +3;422,501,421;, +3;423,502,422;, +3;424,503,423;, +3;425,504,424;, +3;426,505,425;, +3;427,506,426;, +3;428,507,427;, +3;429,508,428;, +3;430,509,429;, +3;431,510,430;, +3;432,511,431;, +3;433,512,432;, +3;434,513,433;, +3;435,514,434;, +3;436,515,435;, +3;437,516,436;, +3;438,517,437;, +3;439,518,438;, +3;440,519,439;, +3;441,520,440;, +3;442,521,441;, +3;443,522,442;, +3;444,523,443;, +3;445,524,444;, +3;446,525,445;, +3;447,526,446;, +3;448,527,447;, +3;449,528,448;, +3;450,529,449;, +3;451,530,450;, +3;452,531,451;, +3;453,532,452;, +3;454,533,453;, +3;455,534,454;, +3;456,535,455;, +3;457,536,456;, +3;458,537,457;, +3;459,538,458;, +3;460,539,459;, +3;461,540,460;, +3;462,541,461;, +3;463,542,462;, +3;464,543,463;, +3;465,544,464;, +3;466,545,465;, +3;467,546,466;, +3;468,547,467;, +3;469,548,468;, +3;470,549,469;, +3;471,550,470;, +3;472,551,471;, +3;473,552,472;, +3;474,553,473;, +3;475,554,474;, +3;476,555,475;, +3;477,556,476;, +3;478,557,477;, +3;479,558,478;, +3;480,559,479;, +3;1691,560,480;, +3;482,561,481;, +3;483,562,482;, +3;484,563,483;, +3;485,564,484;, +3;486,565,485;, +3;487,566,486;, +3;488,567,487;, +3;489,568,488;, +3;490,569,489;, +3;491,570,490;, +3;492,571,491;, +3;493,572,492;, +3;494,573,493;, +3;495,574,494;, +3;496,575,495;, +3;497,576,496;, +3;498,577,497;, +3;499,578,498;, +3;500,579,499;, +3;501,580,500;, +3;502,581,501;, +3;503,582,502;, +3;504,583,503;, +3;505,584,504;, +3;506,585,505;, +3;507,586,506;, +3;508,587,507;, +3;509,588,508;, +3;510,589,509;, +3;511,590,510;, +3;512,591,511;, +3;513,592,512;, +3;514,593,513;, +3;515,594,514;, +3;516,595,515;, +3;517,596,516;, +3;518,597,517;, +3;519,598,518;, +3;520,599,519;, +3;521,600,520;, +3;522,601,521;, +3;523,602,522;, +3;524,603,523;, +3;525,604,524;, +3;526,605,525;, +3;527,606,526;, +3;528,607,527;, +3;529,608,528;, +3;530,609,529;, +3;531,610,530;, +3;532,611,531;, +3;533,612,532;, +3;534,613,533;, +3;535,614,534;, +3;536,615,535;, +3;537,616,536;, +3;538,617,537;, +3;539,618,538;, +3;540,619,539;, +3;541,620,540;, +3;542,621,541;, +3;543,622,542;, +3;544,623,543;, +3;545,624,544;, +3;546,625,545;, +3;547,626,546;, +3;548,627,547;, +3;549,628,548;, +3;550,629,549;, +3;551,630,550;, +3;552,631,551;, +3;553,632,552;, +3;554,633,553;, +3;555,634,554;, +3;556,635,555;, +3;557,636,556;, +3;558,637,557;, +3;559,638,558;, +3;560,639,559;, +3;1692,640,560;, +3;562,641,561;, +3;563,642,562;, +3;564,643,563;, +3;565,644,564;, +3;566,645,565;, +3;567,646,566;, +3;568,647,567;, +3;569,648,568;, +3;570,649,569;, +3;571,650,570;, +3;572,651,571;, +3;573,652,572;, +3;574,653,573;, +3;575,654,574;, +3;576,655,575;, +3;577,656,576;, +3;578,657,577;, +3;579,658,578;, +3;580,659,579;, +3;581,660,580;, +3;582,661,581;, +3;583,662,582;, +3;584,663,583;, +3;585,664,584;, +3;586,665,585;, +3;587,666,586;, +3;588,667,587;, +3;589,668,588;, +3;590,669,589;, +3;591,670,590;, +3;592,671,591;, +3;593,672,592;, +3;594,673,593;, +3;595,674,594;, +3;596,675,595;, +3;597,676,596;, +3;598,677,597;, +3;599,678,598;, +3;600,679,599;, +3;601,680,600;, +3;602,681,601;, +3;603,682,602;, +3;604,683,603;, +3;605,684,604;, +3;606,685,605;, +3;607,686,606;, +3;608,687,607;, +3;609,688,608;, +3;610,689,609;, +3;611,690,610;, +3;612,691,611;, +3;613,692,612;, +3;614,693,613;, +3;615,694,614;, +3;616,695,615;, +3;617,696,616;, +3;618,697,617;, +3;619,698,618;, +3;620,699,619;, +3;621,700,620;, +3;622,701,621;, +3;623,702,622;, +3;624,703,623;, +3;625,704,624;, +3;626,705,625;, +3;627,706,626;, +3;628,707,627;, +3;629,708,628;, +3;630,709,629;, +3;631,710,630;, +3;632,711,631;, +3;633,712,632;, +3;634,713,633;, +3;635,714,634;, +3;636,715,635;, +3;637,716,636;, +3;638,717,637;, +3;639,718,638;, +3;640,719,639;, +3;1693,720,640;, +3;642,721,641;, +3;643,722,642;, +3;644,723,643;, +3;645,724,644;, +3;646,725,645;, +3;647,726,646;, +3;648,727,647;, +3;649,728,648;, +3;650,729,649;, +3;651,730,650;, +3;652,731,651;, +3;653,732,652;, +3;654,733,653;, +3;655,734,654;, +3;656,735,655;, +3;657,736,656;, +3;658,737,657;, +3;659,738,658;, +3;660,739,659;, +3;661,740,660;, +3;662,741,661;, +3;663,742,662;, +3;664,743,663;, +3;665,744,664;, +3;666,745,665;, +3;667,746,666;, +3;668,747,667;, +3;669,748,668;, +3;670,749,669;, +3;671,750,670;, +3;672,751,671;, +3;673,752,672;, +3;674,753,673;, +3;675,754,674;, +3;676,755,675;, +3;677,756,676;, +3;678,757,677;, +3;679,758,678;, +3;680,759,679;, +3;681,760,680;, +3;682,761,681;, +3;683,762,682;, +3;684,763,683;, +3;685,764,684;, +3;686,765,685;, +3;687,766,686;, +3;688,767,687;, +3;689,768,688;, +3;690,769,689;, +3;691,770,690;, +3;692,771,691;, +3;693,772,692;, +3;694,773,693;, +3;695,774,694;, +3;696,775,695;, +3;697,776,696;, +3;698,777,697;, +3;699,778,698;, +3;700,779,699;, +3;701,780,700;, +3;702,781,701;, +3;703,782,702;, +3;704,783,703;, +3;705,784,704;, +3;706,785,705;, +3;707,786,706;, +3;708,787,707;, +3;709,788,708;, +3;710,789,709;, +3;711,790,710;, +3;712,791,711;, +3;713,792,712;, +3;714,793,713;, +3;715,794,714;, +3;716,795,715;, +3;717,796,716;, +3;718,797,717;, +3;719,798,718;, +3;720,799,719;, +3;1694,800,720;, +3;722,801,721;, +3;723,802,722;, +3;724,803,723;, +3;725,804,724;, +3;726,805,725;, +3;727,806,726;, +3;728,807,727;, +3;729,808,728;, +3;730,809,729;, +3;731,810,730;, +3;732,811,731;, +3;733,812,732;, +3;734,813,733;, +3;735,814,734;, +3;736,815,735;, +3;737,816,736;, +3;738,817,737;, +3;739,818,738;, +3;740,819,739;, +3;741,820,740;, +3;742,821,741;, +3;743,822,742;, +3;744,823,743;, +3;745,824,744;, +3;746,825,745;, +3;747,826,746;, +3;748,827,747;, +3;749,828,748;, +3;750,829,749;, +3;751,830,750;, +3;752,831,751;, +3;753,832,752;, +3;754,833,753;, +3;755,834,754;, +3;756,835,755;, +3;757,836,756;, +3;758,837,757;, +3;759,838,758;, +3;760,839,759;, +3;761,840,760;, +3;762,841,761;, +3;763,842,762;, +3;764,843,763;, +3;765,844,764;, +3;766,845,765;, +3;767,846,766;, +3;768,847,767;, +3;769,848,768;, +3;770,849,769;, +3;771,850,770;, +3;772,851,771;, +3;773,852,772;, +3;774,853,773;, +3;775,854,774;, +3;776,855,775;, +3;777,856,776;, +3;778,857,777;, +3;779,858,778;, +3;780,859,779;, +3;781,860,780;, +3;782,861,781;, +3;783,862,782;, +3;784,863,783;, +3;785,864,784;, +3;786,865,785;, +3;787,866,786;, +3;788,867,787;, +3;789,868,788;, +3;790,869,789;, +3;791,870,790;, +3;792,871,791;, +3;793,872,792;, +3;794,873,793;, +3;795,874,794;, +3;796,875,795;, +3;797,876,796;, +3;798,877,797;, +3;799,878,798;, +3;800,879,799;, +3;1695,880,800;, +3;802,881,801;, +3;803,882,802;, +3;804,883,803;, +3;805,884,804;, +3;806,885,805;, +3;807,886,806;, +3;808,887,807;, +3;809,888,808;, +3;810,889,809;, +3;811,890,810;, +3;812,891,811;, +3;813,892,812;, +3;814,893,813;, +3;815,894,814;, +3;816,895,815;, +3;817,896,816;, +3;818,897,817;, +3;819,898,818;, +3;820,899,819;, +3;821,900,820;, +3;822,901,821;, +3;823,902,822;, +3;824,903,823;, +3;825,904,824;, +3;826,905,825;, +3;827,906,826;, +3;828,907,827;, +3;829,908,828;, +3;830,909,829;, +3;831,910,830;, +3;832,911,831;, +3;833,912,832;, +3;834,913,833;, +3;835,914,834;, +3;836,915,835;, +3;837,916,836;, +3;838,917,837;, +3;839,918,838;, +3;840,919,839;, +3;841,920,840;, +3;842,921,841;, +3;843,922,842;, +3;844,923,843;, +3;845,924,844;, +3;846,925,845;, +3;847,926,846;, +3;848,927,847;, +3;849,928,848;, +3;850,929,849;, +3;851,930,850;, +3;852,931,851;, +3;853,932,852;, +3;854,933,853;, +3;855,934,854;, +3;856,935,855;, +3;857,936,856;, +3;858,937,857;, +3;859,938,858;, +3;860,939,859;, +3;861,940,860;, +3;862,941,861;, +3;863,942,862;, +3;864,943,863;, +3;865,944,864;, +3;866,945,865;, +3;867,946,866;, +3;868,947,867;, +3;869,948,868;, +3;870,949,869;, +3;871,950,870;, +3;872,951,871;, +3;873,952,872;, +3;874,953,873;, +3;875,954,874;, +3;876,955,875;, +3;877,956,876;, +3;878,957,877;, +3;879,958,878;, +3;880,959,879;, +3;1696,960,880;, +3;882,961,881;, +3;883,962,882;, +3;884,963,883;, +3;885,964,884;, +3;886,965,885;, +3;887,966,886;, +3;888,967,887;, +3;889,968,888;, +3;890,969,889;, +3;891,970,890;, +3;892,971,891;, +3;893,972,892;, +3;894,973,893;, +3;895,974,894;, +3;896,975,895;, +3;897,976,896;, +3;898,977,897;, +3;899,978,898;, +3;900,979,899;, +3;901,980,900;, +3;902,981,901;, +3;903,982,902;, +3;904,983,903;, +3;905,984,904;, +3;906,985,905;, +3;907,986,906;, +3;908,987,907;, +3;909,988,908;, +3;910,989,909;, +3;911,990,910;, +3;912,991,911;, +3;913,992,912;, +3;914,993,913;, +3;915,994,914;, +3;916,995,915;, +3;917,996,916;, +3;918,997,917;, +3;919,998,918;, +3;920,999,919;, +3;921,1000,920;, +3;922,1001,921;, +3;923,1002,922;, +3;924,1003,923;, +3;925,1004,924;, +3;926,1005,925;, +3;927,1006,926;, +3;928,1007,927;, +3;929,1008,928;, +3;930,1009,929;, +3;931,1010,930;, +3;932,1011,931;, +3;933,1012,932;, +3;934,1013,933;, +3;935,1014,934;, +3;936,1015,935;, +3;937,1016,936;, +3;938,1017,937;, +3;939,1018,938;, +3;940,1019,939;, +3;941,1020,940;, +3;942,1021,941;, +3;943,1022,942;, +3;944,1023,943;, +3;945,1024,944;, +3;946,1025,945;, +3;947,1026,946;, +3;948,1027,947;, +3;949,1028,948;, +3;950,1029,949;, +3;951,1030,950;, +3;952,1031,951;, +3;953,1032,952;, +3;954,1033,953;, +3;955,1034,954;, +3;956,1035,955;, +3;957,1036,956;, +3;958,1037,957;, +3;959,1038,958;, +3;960,1039,959;, +3;1697,1040,960;, +3;962,1041,961;, +3;963,1042,962;, +3;964,1043,963;, +3;965,1044,964;, +3;966,1045,965;, +3;967,1046,966;, +3;968,1047,967;, +3;969,1048,968;, +3;970,1049,969;, +3;971,1050,970;, +3;972,1051,971;, +3;973,1052,972;, +3;974,1053,973;, +3;975,1054,974;, +3;976,1055,975;, +3;977,1056,976;, +3;978,1057,977;, +3;979,1058,978;, +3;980,1059,979;, +3;981,1060,980;, +3;982,1061,981;, +3;983,1062,982;, +3;984,1063,983;, +3;985,1064,984;, +3;986,1065,985;, +3;987,1066,986;, +3;988,1067,987;, +3;989,1068,988;, +3;990,1069,989;, +3;991,1070,990;, +3;992,1071,991;, +3;993,1072,992;, +3;994,1073,993;, +3;995,1074,994;, +3;996,1075,995;, +3;997,1076,996;, +3;998,1077,997;, +3;999,1078,998;, +3;1000,1079,999;, +3;1001,1080,1000;, +3;1002,1081,1001;, +3;1003,1082,1002;, +3;1004,1083,1003;, +3;1005,1084,1004;, +3;1006,1085,1005;, +3;1007,1086,1006;, +3;1008,1087,1007;, +3;1009,1088,1008;, +3;1010,1089,1009;, +3;1011,1090,1010;, +3;1012,1091,1011;, +3;1013,1092,1012;, +3;1014,1093,1013;, +3;1015,1094,1014;, +3;1016,1095,1015;, +3;1017,1096,1016;, +3;1018,1097,1017;, +3;1019,1098,1018;, +3;1020,1099,1019;, +3;1021,1100,1020;, +3;1022,1101,1021;, +3;1023,1102,1022;, +3;1024,1103,1023;, +3;1025,1104,1024;, +3;1026,1105,1025;, +3;1027,1106,1026;, +3;1028,1107,1027;, +3;1029,1108,1028;, +3;1030,1109,1029;, +3;1031,1110,1030;, +3;1032,1111,1031;, +3;1033,1112,1032;, +3;1034,1113,1033;, +3;1035,1114,1034;, +3;1036,1115,1035;, +3;1037,1116,1036;, +3;1038,1117,1037;, +3;1039,1118,1038;, +3;1040,1119,1039;, +3;1698,1120,1040;, +3;1042,1121,1041;, +3;1043,1122,1042;, +3;1044,1123,1043;, +3;1045,1124,1044;, +3;1046,1125,1045;, +3;1047,1126,1046;, +3;1048,1127,1047;, +3;1049,1128,1048;, +3;1050,1129,1049;, +3;1051,1130,1050;, +3;1052,1131,1051;, +3;1053,1132,1052;, +3;1054,1133,1053;, +3;1055,1134,1054;, +3;1056,1135,1055;, +3;1057,1136,1056;, +3;1058,1137,1057;, +3;1059,1138,1058;, +3;1060,1139,1059;, +3;1061,1140,1060;, +3;1062,1141,1061;, +3;1063,1142,1062;, +3;1064,1143,1063;, +3;1065,1144,1064;, +3;1066,1145,1065;, +3;1067,1146,1066;, +3;1068,1147,1067;, +3;1069,1148,1068;, +3;1070,1149,1069;, +3;1071,1150,1070;, +3;1072,1151,1071;, +3;1073,1152,1072;, +3;1074,1153,1073;, +3;1075,1154,1074;, +3;1076,1155,1075;, +3;1077,1156,1076;, +3;1078,1157,1077;, +3;1079,1158,1078;, +3;1080,1159,1079;, +3;1081,1160,1080;, +3;1082,1161,1081;, +3;1083,1162,1082;, +3;1084,1163,1083;, +3;1085,1164,1084;, +3;1086,1165,1085;, +3;1087,1166,1086;, +3;1088,1167,1087;, +3;1089,1168,1088;, +3;1090,1169,1089;, +3;1091,1170,1090;, +3;1092,1171,1091;, +3;1093,1172,1092;, +3;1094,1173,1093;, +3;1095,1174,1094;, +3;1096,1175,1095;, +3;1097,1176,1096;, +3;1098,1177,1097;, +3;1099,1178,1098;, +3;1100,1179,1099;, +3;1101,1180,1100;, +3;1102,1181,1101;, +3;1103,1182,1102;, +3;1104,1183,1103;, +3;1105,1184,1104;, +3;1106,1185,1105;, +3;1107,1186,1106;, +3;1108,1187,1107;, +3;1109,1188,1108;, +3;1110,1189,1109;, +3;1111,1190,1110;, +3;1112,1191,1111;, +3;1113,1192,1112;, +3;1114,1193,1113;, +3;1115,1194,1114;, +3;1116,1195,1115;, +3;1117,1196,1116;, +3;1118,1197,1117;, +3;1119,1198,1118;, +3;1120,1199,1119;, +3;1699,1200,1120;, +3;1122,1201,1121;, +3;1123,1202,1122;, +3;1124,1203,1123;, +3;1125,1204,1124;, +3;1126,1205,1125;, +3;1127,1206,1126;, +3;1128,1207,1127;, +3;1129,1208,1128;, +3;1130,1209,1129;, +3;1131,1210,1130;, +3;1132,1211,1131;, +3;1133,1212,1132;, +3;1134,1213,1133;, +3;1135,1214,1134;, +3;1136,1215,1135;, +3;1137,1216,1136;, +3;1138,1217,1137;, +3;1139,1218,1138;, +3;1140,1219,1139;, +3;1141,1220,1140;, +3;1142,1221,1141;, +3;1143,1222,1142;, +3;1144,1223,1143;, +3;1145,1224,1144;, +3;1146,1225,1145;, +3;1147,1226,1146;, +3;1148,1227,1147;, +3;1149,1228,1148;, +3;1150,1229,1149;, +3;1151,1230,1150;, +3;1152,1231,1151;, +3;1153,1232,1152;, +3;1154,1233,1153;, +3;1155,1234,1154;, +3;1156,1235,1155;, +3;1157,1236,1156;, +3;1158,1237,1157;, +3;1159,1238,1158;, +3;1160,1239,1159;, +3;1161,1240,1160;, +3;1162,1241,1161;, +3;1163,1242,1162;, +3;1164,1243,1163;, +3;1165,1244,1164;, +3;1166,1245,1165;, +3;1167,1246,1166;, +3;1168,1247,1167;, +3;1169,1248,1168;, +3;1170,1249,1169;, +3;1171,1250,1170;, +3;1172,1251,1171;, +3;1173,1252,1172;, +3;1174,1253,1173;, +3;1175,1254,1174;, +3;1176,1255,1175;, +3;1177,1256,1176;, +3;1178,1257,1177;, +3;1179,1258,1178;, +3;1180,1259,1179;, +3;1181,1260,1180;, +3;1182,1261,1181;, +3;1183,1262,1182;, +3;1184,1263,1183;, +3;1185,1264,1184;, +3;1186,1265,1185;, +3;1187,1266,1186;, +3;1188,1267,1187;, +3;1189,1268,1188;, +3;1190,1269,1189;, +3;1191,1270,1190;, +3;1192,1271,1191;, +3;1193,1272,1192;, +3;1194,1273,1193;, +3;1195,1274,1194;, +3;1196,1275,1195;, +3;1197,1276,1196;, +3;1198,1277,1197;, +3;1199,1278,1198;, +3;1200,1279,1199;, +3;1700,1280,1200;, +3;1202,1281,1201;, +3;1203,1282,1202;, +3;1204,1283,1203;, +3;1205,1284,1204;, +3;1206,1285,1205;, +3;1207,1286,1206;, +3;1208,1287,1207;, +3;1209,1288,1208;, +3;1210,1289,1209;, +3;1211,1290,1210;, +3;1212,1291,1211;, +3;1213,1292,1212;, +3;1214,1293,1213;, +3;1215,1294,1214;, +3;1216,1295,1215;, +3;1217,1296,1216;, +3;1218,1297,1217;, +3;1219,1298,1218;, +3;1220,1299,1219;, +3;1221,1300,1220;, +3;1222,1301,1221;, +3;1223,1302,1222;, +3;1224,1303,1223;, +3;1225,1304,1224;, +3;1226,1305,1225;, +3;1227,1306,1226;, +3;1228,1307,1227;, +3;1229,1308,1228;, +3;1230,1309,1229;, +3;1231,1310,1230;, +3;1232,1311,1231;, +3;1233,1312,1232;, +3;1234,1313,1233;, +3;1235,1314,1234;, +3;1236,1315,1235;, +3;1237,1316,1236;, +3;1238,1317,1237;, +3;1239,1318,1238;, +3;1240,1319,1239;, +3;1241,1320,1240;, +3;1242,1321,1241;, +3;1243,1322,1242;, +3;1244,1323,1243;, +3;1245,1324,1244;, +3;1246,1325,1245;, +3;1247,1326,1246;, +3;1248,1327,1247;, +3;1249,1328,1248;, +3;1250,1329,1249;, +3;1251,1330,1250;, +3;1252,1331,1251;, +3;1253,1332,1252;, +3;1254,1333,1253;, +3;1255,1334,1254;, +3;1256,1335,1255;, +3;1257,1336,1256;, +3;1258,1337,1257;, +3;1259,1338,1258;, +3;1260,1339,1259;, +3;1261,1340,1260;, +3;1262,1341,1261;, +3;1263,1342,1262;, +3;1264,1343,1263;, +3;1265,1344,1264;, +3;1266,1345,1265;, +3;1267,1346,1266;, +3;1268,1347,1267;, +3;1269,1348,1268;, +3;1270,1349,1269;, +3;1271,1350,1270;, +3;1272,1351,1271;, +3;1273,1352,1272;, +3;1274,1353,1273;, +3;1275,1354,1274;, +3;1276,1355,1275;, +3;1277,1356,1276;, +3;1278,1357,1277;, +3;1279,1358,1278;, +3;1280,1359,1279;, +3;1701,1360,1280;, +3;1282,1361,1281;, +3;1283,1362,1282;, +3;1284,1363,1283;, +3;1285,1364,1284;, +3;1286,1365,1285;, +3;1287,1366,1286;, +3;1288,1367,1287;, +3;1289,1368,1288;, +3;1290,1369,1289;, +3;1291,1370,1290;, +3;1292,1371,1291;, +3;1293,1372,1292;, +3;1294,1373,1293;, +3;1295,1374,1294;, +3;1296,1375,1295;, +3;1297,1376,1296;, +3;1298,1377,1297;, +3;1299,1378,1298;, +3;1300,1379,1299;, +3;1301,1380,1300;, +3;1302,1381,1301;, +3;1303,1382,1302;, +3;1304,1383,1303;, +3;1305,1384,1304;, +3;1306,1385,1305;, +3;1307,1386,1306;, +3;1308,1387,1307;, +3;1309,1388,1308;, +3;1310,1389,1309;, +3;1311,1390,1310;, +3;1312,1391,1311;, +3;1313,1392,1312;, +3;1314,1393,1313;, +3;1315,1394,1314;, +3;1316,1395,1315;, +3;1317,1396,1316;, +3;1318,1397,1317;, +3;1319,1398,1318;, +3;1320,1399,1319;, +3;1321,1400,1320;, +3;1322,1401,1321;, +3;1323,1402,1322;, +3;1324,1403,1323;, +3;1325,1404,1324;, +3;1326,1405,1325;, +3;1327,1406,1326;, +3;1328,1407,1327;, +3;1329,1408,1328;, +3;1330,1409,1329;, +3;1331,1410,1330;, +3;1332,1411,1331;, +3;1333,1412,1332;, +3;1334,1413,1333;, +3;1335,1414,1334;, +3;1336,1415,1335;, +3;1337,1416,1336;, +3;1338,1417,1337;, +3;1339,1418,1338;, +3;1340,1419,1339;, +3;1341,1420,1340;, +3;1342,1421,1341;, +3;1343,1422,1342;, +3;1344,1423,1343;, +3;1345,1424,1344;, +3;1346,1425,1345;, +3;1347,1426,1346;, +3;1348,1427,1347;, +3;1349,1428,1348;, +3;1350,1429,1349;, +3;1351,1430,1350;, +3;1352,1431,1351;, +3;1353,1432,1352;, +3;1354,1433,1353;, +3;1355,1434,1354;, +3;1356,1435,1355;, +3;1357,1436,1356;, +3;1358,1437,1357;, +3;1359,1438,1358;, +3;1360,1439,1359;, +3;1702,1440,1360;, +3;1362,1441,1361;, +3;1363,1442,1362;, +3;1364,1443,1363;, +3;1365,1444,1364;, +3;1366,1445,1365;, +3;1367,1446,1366;, +3;1368,1447,1367;, +3;1369,1448,1368;, +3;1370,1449,1369;, +3;1371,1450,1370;, +3;1372,1451,1371;, +3;1373,1452,1372;, +3;1374,1453,1373;, +3;1375,1454,1374;, +3;1376,1455,1375;, +3;1377,1456,1376;, +3;1378,1457,1377;, +3;1379,1458,1378;, +3;1380,1459,1379;, +3;1381,1460,1380;, +3;1382,1461,1381;, +3;1383,1462,1382;, +3;1384,1463,1383;, +3;1385,1464,1384;, +3;1386,1465,1385;, +3;1387,1466,1386;, +3;1388,1467,1387;, +3;1389,1468,1388;, +3;1390,1469,1389;, +3;1391,1470,1390;, +3;1392,1471,1391;, +3;1393,1472,1392;, +3;1394,1473,1393;, +3;1395,1474,1394;, +3;1396,1475,1395;, +3;1397,1476,1396;, +3;1398,1477,1397;, +3;1399,1478,1398;, +3;1400,1479,1399;, +3;1401,1480,1400;, +3;1402,1481,1401;, +3;1403,1482,1402;, +3;1404,1483,1403;, +3;1405,1484,1404;, +3;1406,1485,1405;, +3;1407,1486,1406;, +3;1408,1487,1407;, +3;1409,1488,1408;, +3;1410,1489,1409;, +3;1411,1490,1410;, +3;1412,1491,1411;, +3;1413,1492,1412;, +3;1414,1493,1413;, +3;1415,1494,1414;, +3;1416,1495,1415;, +3;1417,1496,1416;, +3;1418,1497,1417;, +3;1419,1498,1418;, +3;1420,1499,1419;, +3;1421,1500,1420;, +3;1422,1501,1421;, +3;1423,1502,1422;, +3;1424,1503,1423;, +3;1425,1504,1424;, +3;1426,1505,1425;, +3;1427,1506,1426;, +3;1428,1507,1427;, +3;1429,1508,1428;, +3;1430,1509,1429;, +3;1431,1510,1430;, +3;1432,1511,1431;, +3;1433,1512,1432;, +3;1434,1513,1433;, +3;1435,1514,1434;, +3;1436,1515,1435;, +3;1437,1516,1436;, +3;1438,1517,1437;, +3;1439,1518,1438;, +3;1440,1519,1439;, +3;1703,1520,1440;, +3;1442,1521,1441;, +3;1443,1522,1442;, +3;1444,1523,1443;, +3;1445,1524,1444;, +3;1446,1525,1445;, +3;1447,1526,1446;, +3;1448,1527,1447;, +3;1449,1528,1448;, +3;1450,1529,1449;, +3;1451,1530,1450;, +3;1452,1531,1451;, +3;1453,1532,1452;, +3;1454,1533,1453;, +3;1455,1534,1454;, +3;1456,1535,1455;, +3;1457,1536,1456;, +3;1458,1537,1457;, +3;1459,1538,1458;, +3;1460,1539,1459;, +3;1461,1540,1460;, +3;1462,1541,1461;, +3;1463,1542,1462;, +3;1464,1543,1463;, +3;1465,1544,1464;, +3;1466,1545,1465;, +3;1467,1546,1466;, +3;1468,1547,1467;, +3;1469,1548,1468;, +3;1470,1549,1469;, +3;1471,1550,1470;, +3;1472,1551,1471;, +3;1473,1552,1472;, +3;1474,1553,1473;, +3;1475,1554,1474;, +3;1476,1555,1475;, +3;1477,1556,1476;, +3;1478,1557,1477;, +3;1479,1558,1478;, +3;1480,1559,1479;, +3;1481,1560,1480;, +3;1482,1561,1481;, +3;1483,1562,1482;, +3;1484,1563,1483;, +3;1485,1564,1484;, +3;1486,1565,1485;, +3;1487,1566,1486;, +3;1488,1567,1487;, +3;1489,1568,1488;, +3;1490,1569,1489;, +3;1491,1570,1490;, +3;1492,1571,1491;, +3;1493,1572,1492;, +3;1494,1573,1493;, +3;1495,1574,1494;, +3;1496,1575,1495;, +3;1497,1576,1496;, +3;1498,1577,1497;, +3;1499,1578,1498;, +3;1500,1579,1499;, +3;1501,1580,1500;, +3;1502,1581,1501;, +3;1503,1582,1502;, +3;1504,1583,1503;, +3;1505,1584,1504;, +3;1506,1585,1505;, +3;1507,1586,1506;, +3;1508,1587,1507;, +3;1509,1588,1508;, +3;1510,1589,1509;, +3;1511,1590,1510;, +3;1512,1591,1511;, +3;1513,1592,1512;, +3;1514,1593,1513;, +3;1515,1594,1514;, +3;1516,1595,1515;, +3;1517,1596,1516;, +3;1518,1597,1517;, +3;1519,1598,1518;, +3;1520,1599,1519;, +3;1704,1600,1520;; + +MeshMaterialList { + 1; + 3128; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; +Material { +1.000000; 1.000000; 1.000000; 1.000000;; +2.000000; +0.000000; 0.000000; 0.000000;; +0.000000; 0.000000; 0.000000;; +} +} +MeshNormals { + 1706; +-0.000000; -0.548966; 0.000000;, +-0.999143; -0.021550; 0.013086;, +-0.997090; -0.021551; -0.065347;, +-0.988889; -0.021551; -0.143376;, +-0.974592; -0.021551; -0.220522;, +-0.954286; -0.021551; -0.296307;, +-0.928096; -0.021551; -0.370266;, +-0.896184; -0.021551; -0.441943;, +-0.858747; -0.021551; -0.510894;, +-0.816016; -0.021551; -0.576695;, +-0.768253; -0.021550; -0.638942;, +-0.715754; -0.021551; -0.697248;, +-0.658842; -0.021550; -0.751256;, +-0.597868; -0.021551; -0.800633;, +-0.533208; -0.021550; -0.845073;, +-0.465261; -0.021551; -0.884303;, +-0.394445; -0.021551; -0.918081;, +-0.321197; -0.021551; -0.946198;, +-0.245969; -0.021551; -0.968482;, +-0.169225; -0.021551; -0.984795;, +-0.091437; -0.021551; -0.995037;, +-0.000000; -0.007194; -0.999914;, +0.078399; -0.021553; -0.996149;, +0.143376; -0.021551; -0.988889;, +0.220522; -0.021551; -0.974592;, +0.296307; -0.021551; -0.954286;, +0.370266; -0.021551; -0.928096;, +0.441943; -0.021551; -0.896184;, +0.510894; -0.021551; -0.858747;, +0.576695; -0.021551; -0.816016;, +0.638942; -0.021550; -0.768253;, +0.697248; -0.021551; -0.715754;, +0.751256; -0.021550; -0.658842;, +0.800633; -0.021551; -0.597868;, +0.845073; -0.021550; -0.533208;, +0.884303; -0.021551; -0.465261;, +0.918081; -0.021551; -0.394445;, +0.946198; -0.021551; -0.321197;, +0.968482; -0.021551; -0.245969;, +0.984795; -0.021551; -0.169225;, +0.995037; -0.021551; -0.091437;, +0.999143; -0.021550; -0.013086;, +0.997090; -0.021551; 0.065347;, +0.988889; -0.021551; 0.143376;, +0.974592; -0.021551; 0.220522;, +0.954286; -0.021551; 0.296307;, +0.928096; -0.021551; 0.370266;, +0.896184; -0.021551; 0.441943;, +0.858747; -0.021551; 0.510894;, +0.816016; -0.021551; 0.576695;, +0.768253; -0.021550; 0.638942;, +0.715754; -0.021551; 0.697248;, +0.658842; -0.021550; 0.751256;, +0.597868; -0.021551; 0.800633;, +0.533208; -0.021550; 0.845073;, +0.465261; -0.021551; 0.884303;, +0.394445; -0.021551; 0.918081;, +0.321197; -0.021551; 0.946198;, +0.245969; -0.021551; 0.968482;, +0.169225; -0.021551; 0.984795;, +0.091437; -0.021551; 0.995037;, +0.000000; -0.007194; 0.999914;, +-0.078399; -0.021553; 0.996149;, +-0.143376; -0.021551; 0.988889;, +-0.220522; -0.021551; 0.974592;, +-0.296307; -0.021551; 0.954286;, +-0.370266; -0.021551; 0.928096;, +-0.441943; -0.021551; 0.896184;, +-0.510894; -0.021551; 0.858747;, +-0.576695; -0.021551; 0.816016;, +-0.638942; -0.021550; 0.768253;, +-0.697248; -0.021551; 0.715754;, +-0.751256; -0.021550; 0.658842;, +-0.800633; -0.021551; 0.597868;, +-0.845073; -0.021550; 0.533208;, +-0.884303; -0.021551; 0.465261;, +-0.918081; -0.021551; 0.394445;, +-0.946198; -0.021551; 0.321197;, +-0.968482; -0.021551; 0.245969;, +-0.984795; -0.021551; 0.169225;, +-0.995037; -0.021551; 0.091437;, +-0.996917; -0.043071; -0.000040;, +-0.993841; -0.043071; -0.078257;, +-0.984637; -0.043072; -0.155992;, +-0.969363; -0.043072; -0.232765;, +-0.948112; -0.043071; -0.308103;, +-0.921016; -0.043072; -0.381541;, +-0.888242; -0.043071; -0.452627;, +-0.849991; -0.043071; -0.520922;, +-0.806499; -0.043072; -0.586006;, +-0.758036; -0.043072; -0.647477;, +-0.704898; -0.043071; -0.704956;, +-0.647416; -0.043071; -0.758088;, +-0.585941; -0.043072; -0.806547;, +-0.520853; -0.043072; -0.850033;, +-0.452555; -0.043072; -0.888278;, +-0.381466; -0.043071; -0.921047;, +-0.308026; -0.043071; -0.948137;, +-0.232687; -0.043071; -0.969382;, +-0.155912; -0.043072; -0.984650;, +-0.072618; -0.039999; -0.994695;, +-0.007809; -0.047369; -0.996240;, +0.068507; -0.037693; -0.995285;, +0.155992; -0.043072; -0.984637;, +0.232765; -0.043072; -0.969363;, +0.308103; -0.043071; -0.948112;, +0.381541; -0.043072; -0.921016;, +0.452627; -0.043071; -0.888242;, +0.520922; -0.043071; -0.849991;, +0.586006; -0.043072; -0.806499;, +0.647477; -0.043072; -0.758036;, +0.704956; -0.043071; -0.704898;, +0.758088; -0.043071; -0.647416;, +0.806547; -0.043072; -0.585941;, +0.850033; -0.043072; -0.520853;, +0.888278; -0.043072; -0.452555;, +0.921047; -0.043071; -0.381466;, +0.948137; -0.043071; -0.308026;, +0.969382; -0.043071; -0.232687;, +0.984650; -0.043072; -0.155912;, +0.993847; -0.043071; -0.078177;, +0.996917; -0.043071; 0.000040;, +0.993841; -0.043071; 0.078257;, +0.984637; -0.043072; 0.155992;, +0.969363; -0.043072; 0.232765;, +0.948112; -0.043071; 0.308103;, +0.921016; -0.043072; 0.381541;, +0.888242; -0.043071; 0.452627;, +0.849991; -0.043071; 0.520922;, +0.806499; -0.043072; 0.586006;, +0.758036; -0.043072; 0.647477;, +0.704898; -0.043071; 0.704956;, +0.647416; -0.043071; 0.758088;, +0.585941; -0.043072; 0.806547;, +0.520853; -0.043072; 0.850033;, +0.452555; -0.043072; 0.888278;, +0.381466; -0.043071; 0.921047;, +0.308026; -0.043071; 0.948137;, +0.232687; -0.043071; 0.969382;, +0.155912; -0.043072; 0.984650;, +0.072618; -0.039999; 0.994695;, +0.007809; -0.047369; 0.996240;, +-0.068507; -0.037693; 0.995285;, +-0.155992; -0.043072; 0.984637;, +-0.232765; -0.043072; 0.969363;, +-0.308103; -0.043071; 0.948112;, +-0.381541; -0.043072; 0.921016;, +-0.452627; -0.043071; 0.888242;, +-0.520922; -0.043071; 0.849991;, +-0.586006; -0.043072; 0.806499;, +-0.647477; -0.043072; 0.758036;, +-0.704956; -0.043071; 0.704898;, +-0.758088; -0.043071; 0.647416;, +-0.806547; -0.043072; 0.585941;, +-0.850033; -0.043072; 0.520853;, +-0.888278; -0.043072; 0.452555;, +-0.921047; -0.043071; 0.381466;, +-0.948137; -0.043071; 0.308026;, +-0.969382; -0.043071; 0.232687;, +-0.984650; -0.043072; 0.155912;, +-0.993847; -0.043071; 0.078177;, +-0.987688; -0.085877; -0.000080;, +-0.984637; -0.085877; -0.077573;, +-0.975516; -0.085877; -0.154588;, +-0.960380; -0.085877; -0.230649;, +-0.939323; -0.085877; -0.305289;, +-0.912474; -0.085877; -0.378046;, +-0.880000; -0.085877; -0.448473;, +-0.842101; -0.085877; -0.516134;, +-0.799009; -0.085877; -0.580614;, +-0.750992; -0.085877; -0.641513;, +-0.698344; -0.085877; -0.698458;, +-0.641391; -0.085877; -0.751096;, +-0.580484; -0.085877; -0.799104;, +-0.515997; -0.085877; -0.842185;, +-0.448330; -0.085877; -0.880073;, +-0.377898; -0.085877; -0.912536;, +-0.305136; -0.085877; -0.939372;, +-0.230493; -0.085877; -0.960417;, +-0.154429; -0.085877; -0.975541;, +-0.077413; -0.085877; -0.984650;, +0.000080; -0.085877; -0.987688;, +0.077573; -0.085877; -0.984637;, +0.154588; -0.085877; -0.975516;, +0.230649; -0.085877; -0.960380;, +0.305289; -0.085877; -0.939323;, +0.378046; -0.085877; -0.912474;, +0.448473; -0.085877; -0.880000;, +0.516134; -0.085877; -0.842101;, +0.580614; -0.085877; -0.799009;, +0.641513; -0.085877; -0.750992;, +0.698458; -0.085877; -0.698344;, +0.751096; -0.085877; -0.641391;, +0.799104; -0.085877; -0.580484;, +0.842185; -0.085877; -0.515997;, +0.880073; -0.085877; -0.448330;, +0.912536; -0.085877; -0.377898;, +0.939372; -0.085877; -0.305136;, +0.960417; -0.085877; -0.230493;, +0.975541; -0.085877; -0.154429;, +0.984650; -0.085877; -0.077413;, +0.987688; -0.085877; 0.000080;, +0.984637; -0.085877; 0.077573;, +0.975516; -0.085877; 0.154588;, +0.960380; -0.085877; 0.230649;, +0.939323; -0.085877; 0.305289;, +0.912474; -0.085877; 0.378046;, +0.880000; -0.085877; 0.448473;, +0.842101; -0.085877; 0.516134;, +0.799009; -0.085877; 0.580614;, +0.750992; -0.085877; 0.641513;, +0.698344; -0.085877; 0.698458;, +0.641391; -0.085877; 0.751096;, +0.580484; -0.085877; 0.799104;, +0.515997; -0.085877; 0.842185;, +0.448330; -0.085877; 0.880073;, +0.377898; -0.085877; 0.912536;, +0.305136; -0.085877; 0.939372;, +0.230493; -0.085877; 0.960417;, +0.154429; -0.085877; 0.975541;, +0.077413; -0.085877; 0.984650;, +-0.000080; -0.085877; 0.987688;, +-0.077573; -0.085877; 0.984637;, +-0.154588; -0.085877; 0.975516;, +-0.230649; -0.085877; 0.960380;, +-0.305289; -0.085877; 0.939323;, +-0.378046; -0.085877; 0.912474;, +-0.448473; -0.085877; 0.880000;, +-0.516134; -0.085877; 0.842101;, +-0.580614; -0.085877; 0.799009;, +-0.641513; -0.085877; 0.750992;, +-0.698458; -0.085877; 0.698344;, +-0.751096; -0.085877; 0.641391;, +-0.799104; -0.085877; 0.580484;, +-0.842185; -0.085877; 0.515997;, +-0.880073; -0.085877; 0.448330;, +-0.912536; -0.085877; 0.377898;, +-0.939372; -0.085877; 0.305136;, +-0.960417; -0.085877; 0.230493;, +-0.975541; -0.085877; 0.154429;, +-0.984650; -0.085877; 0.077413;, +-0.972370; -0.128154; -0.000120;, +-0.969363; -0.128154; -0.076411;, +-0.960380; -0.128154; -0.152231;, +-0.945475; -0.128154; -0.227112;, +-0.924742; -0.128154; -0.300593;, +-0.898307; -0.128154; -0.372221;, +-0.866333; -0.128154; -0.441554;, +-0.829019; -0.128154; -0.508164;, +-0.786593; -0.128154; -0.571642;, +-0.739318; -0.128154; -0.631595;, +-0.687484; -0.128154; -0.687654;, +-0.631413; -0.128154; -0.739474;, +-0.571448; -0.128154; -0.786734;, +-0.507960; -0.128154; -0.829144;, +-0.441340; -0.128154; -0.866442;, +-0.371999; -0.128154; -0.898398;, +-0.300365; -0.128154; -0.924816;, +-0.226879; -0.128154; -0.945531;, +-0.151994; -0.128154; -0.960417;, +-0.076172; -0.128154; -0.969382;, +0.000120; -0.128154; -0.972370;, +0.076411; -0.128154; -0.969363;, +0.152231; -0.128154; -0.960380;, +0.227112; -0.128154; -0.945475;, +0.300593; -0.128154; -0.924742;, +0.372221; -0.128154; -0.898307;, +0.441554; -0.128154; -0.866333;, +0.508164; -0.128154; -0.829019;, +0.571642; -0.128154; -0.786593;, +0.631595; -0.128154; -0.739318;, +0.687654; -0.128154; -0.687484;, +0.739474; -0.128154; -0.631413;, +0.786734; -0.128154; -0.571448;, +0.829144; -0.128154; -0.507960;, +0.866442; -0.128154; -0.441340;, +0.898398; -0.128154; -0.371999;, +0.924816; -0.128154; -0.300365;, +0.945531; -0.128154; -0.226879;, +0.960417; -0.128154; -0.151994;, +0.969382; -0.128154; -0.076172;, +0.972370; -0.128154; 0.000120;, +0.969363; -0.128154; 0.076411;, +0.960380; -0.128154; 0.152231;, +0.945475; -0.128154; 0.227112;, +0.924742; -0.128154; 0.300593;, +0.898307; -0.128154; 0.372221;, +0.866333; -0.128154; 0.441554;, +0.829019; -0.128154; 0.508164;, +0.786593; -0.128154; 0.571642;, +0.739318; -0.128154; 0.631595;, +0.687484; -0.128154; 0.687654;, +0.631413; -0.128154; 0.739474;, +0.571448; -0.128154; 0.786734;, +0.507960; -0.128154; 0.829144;, +0.441340; -0.128154; 0.866442;, +0.371999; -0.128154; 0.898398;, +0.300365; -0.128154; 0.924816;, +0.226879; -0.128154; 0.945531;, +0.151994; -0.128154; 0.960417;, +0.076172; -0.128154; 0.969382;, +-0.000120; -0.128154; 0.972370;, +-0.076411; -0.128154; 0.969363;, +-0.152231; -0.128154; 0.960380;, +-0.227112; -0.128154; 0.945475;, +-0.300593; -0.128154; 0.924742;, +-0.372221; -0.128154; 0.898307;, +-0.441554; -0.128154; 0.866333;, +-0.508164; -0.128154; 0.829019;, +-0.571642; -0.128154; 0.786593;, +-0.631595; -0.128154; 0.739318;, +-0.687654; -0.128154; 0.687484;, +-0.739474; -0.128154; 0.631413;, +-0.786734; -0.128154; 0.571448;, +-0.829144; -0.128154; 0.507960;, +-0.866442; -0.128154; 0.441340;, +-0.898398; -0.128154; 0.371999;, +-0.924816; -0.128154; 0.300365;, +-0.945531; -0.128154; 0.226879;, +-0.960417; -0.128154; 0.151994;, +-0.969382; -0.128154; 0.076172;, +-0.951056; -0.169640; -0.000159;, +-0.948112; -0.169640; -0.074777;, +-0.939322; -0.169640; -0.148935;, +-0.924742; -0.169640; -0.222174;, +-0.904459; -0.169640; -0.294044;, +-0.878601; -0.169640; -0.364100;, +-0.847325; -0.169640; -0.431912;, +-0.810826; -0.169640; -0.497061;, +-0.769327; -0.169640; -0.559145;, +-0.723086; -0.169640; -0.617783;, +-0.672386; -0.169640; -0.672611;, +-0.617541; -0.169640; -0.723292;, +-0.558888; -0.169640; -0.769514;, +-0.496790; -0.169640; -0.810992;, +-0.431629; -0.169640; -0.847469;, +-0.363807; -0.169640; -0.878722;, +-0.293741; -0.169640; -0.904557;, +-0.221865; -0.169640; -0.924816;, +-0.148621; -0.169640; -0.939372;, +-0.074461; -0.169640; -0.948137;, +0.000159; -0.169640; -0.951056;, +0.074777; -0.169640; -0.948112;, +0.148935; -0.169640; -0.939322;, +0.222174; -0.169640; -0.924742;, +0.294044; -0.169640; -0.904459;, +0.364100; -0.169640; -0.878601;, +0.431912; -0.169640; -0.847325;, +0.497061; -0.169640; -0.810826;, +0.559145; -0.169640; -0.769327;, +0.617783; -0.169640; -0.723086;, +0.672611; -0.169640; -0.672386;, +0.723292; -0.169640; -0.617541;, +0.769514; -0.169640; -0.558888;, +0.810992; -0.169640; -0.496790;, +0.847469; -0.169640; -0.431629;, +0.878722; -0.169640; -0.363807;, +0.904557; -0.169640; -0.293741;, +0.924816; -0.169640; -0.221865;, +0.939372; -0.169640; -0.148621;, +0.948137; -0.169640; -0.074461;, +0.951056; -0.169640; 0.000159;, +0.948112; -0.169640; 0.074777;, +0.939322; -0.169640; 0.148935;, +0.924742; -0.169640; 0.222174;, +0.904459; -0.169640; 0.294044;, +0.878601; -0.169640; 0.364100;, +0.847325; -0.169640; 0.431912;, +0.810826; -0.169640; 0.497061;, +0.769327; -0.169640; 0.559145;, +0.723086; -0.169640; 0.617783;, +0.672386; -0.169640; 0.672611;, +0.617541; -0.169640; 0.723292;, +0.558888; -0.169640; 0.769514;, +0.496790; -0.169640; 0.810992;, +0.431629; -0.169640; 0.847469;, +0.363807; -0.169640; 0.878722;, +0.293741; -0.169640; 0.904557;, +0.221865; -0.169640; 0.924816;, +0.148621; -0.169640; 0.939372;, +0.074461; -0.169640; 0.948137;, +-0.000159; -0.169640; 0.951056;, +-0.074777; -0.169640; 0.948112;, +-0.148935; -0.169640; 0.939322;, +-0.222174; -0.169640; 0.924742;, +-0.294044; -0.169640; 0.904459;, +-0.364100; -0.169640; 0.878601;, +-0.431912; -0.169640; 0.847325;, +-0.497061; -0.169640; 0.810826;, +-0.559145; -0.169640; 0.769327;, +-0.617783; -0.169640; 0.723086;, +-0.672611; -0.169640; 0.672386;, +-0.723292; -0.169640; 0.617541;, +-0.769514; -0.169640; 0.558888;, +-0.810992; -0.169640; 0.496790;, +-0.847469; -0.169640; 0.431629;, +-0.878722; -0.169640; 0.363807;, +-0.904557; -0.169640; 0.293741;, +-0.924816; -0.169640; 0.221865;, +-0.939372; -0.169640; 0.148621;, +-0.948137; -0.169640; 0.074461;, +-0.923879; -0.210080; -0.000197;, +-0.921016; -0.210081; -0.072683;, +-0.912474; -0.210081; -0.144721;, +-0.898306; -0.210080; -0.215867;, +-0.878600; -0.210081; -0.285681;, +-0.853478; -0.210081; -0.353735;, +-0.823093; -0.210080; -0.419608;, +-0.787634; -0.210080; -0.482893;, +-0.747318; -0.210080; -0.543202;, +-0.702396; -0.210080; -0.600161;, +-0.653142; -0.210080; -0.653420;, +-0.599862; -0.210080; -0.702651;, +-0.542884; -0.210080; -0.747550;, +-0.482558; -0.210080; -0.787839;, +-0.419257; -0.210081; -0.823272;, +-0.353372; -0.210081; -0.853628;, +-0.285307; -0.210081; -0.878722;, +-0.215484; -0.210081; -0.898398;, +-0.144332; -0.210081; -0.912535;, +-0.072291; -0.210080; -0.921047;, +0.000197; -0.210080; -0.923879;, +0.072683; -0.210081; -0.921016;, +0.144721; -0.210081; -0.912474;, +0.215867; -0.210080; -0.898306;, +0.285681; -0.210081; -0.878600;, +0.353735; -0.210081; -0.853478;, +0.419608; -0.210080; -0.823093;, +0.482893; -0.210080; -0.787634;, +0.543202; -0.210080; -0.747318;, +0.600161; -0.210080; -0.702396;, +0.653420; -0.210080; -0.653142;, +0.702651; -0.210080; -0.599862;, +0.747550; -0.210080; -0.542884;, +0.787839; -0.210080; -0.482558;, +0.823272; -0.210081; -0.419257;, +0.853628; -0.210081; -0.353372;, +0.878722; -0.210081; -0.285307;, +0.898398; -0.210081; -0.215484;, +0.912535; -0.210081; -0.144332;, +0.921047; -0.210080; -0.072291;, +0.923879; -0.210080; 0.000197;, +0.921016; -0.210081; 0.072683;, +0.912474; -0.210081; 0.144721;, +0.898306; -0.210080; 0.215867;, +0.878600; -0.210081; 0.285681;, +0.853478; -0.210081; 0.353735;, +0.823093; -0.210080; 0.419608;, +0.787634; -0.210080; 0.482893;, +0.747318; -0.210080; 0.543202;, +0.702396; -0.210080; 0.600161;, +0.653142; -0.210080; 0.653420;, +0.599862; -0.210080; 0.702651;, +0.542884; -0.210080; 0.747550;, +0.482558; -0.210080; 0.787839;, +0.419257; -0.210081; 0.823272;, +0.353372; -0.210081; 0.853628;, +0.285307; -0.210081; 0.878722;, +0.215484; -0.210081; 0.898398;, +0.144332; -0.210081; 0.912535;, +0.072291; -0.210080; 0.921047;, +-0.000197; -0.210080; 0.923879;, +-0.072683; -0.210081; 0.921016;, +-0.144721; -0.210081; 0.912474;, +-0.215867; -0.210080; 0.898306;, +-0.285681; -0.210081; 0.878600;, +-0.353735; -0.210081; 0.853478;, +-0.419608; -0.210080; 0.823093;, +-0.482893; -0.210080; 0.787634;, +-0.543202; -0.210080; 0.747318;, +-0.600161; -0.210080; 0.702396;, +-0.653420; -0.210080; 0.653142;, +-0.702651; -0.210080; 0.599862;, +-0.747550; -0.210080; 0.542884;, +-0.787839; -0.210080; 0.482558;, +-0.823272; -0.210081; 0.419257;, +-0.853628; -0.210081; 0.353372;, +-0.878722; -0.210081; 0.285307;, +-0.898398; -0.210081; 0.215484;, +-0.912535; -0.210081; 0.144332;, +-0.921047; -0.210080; 0.072291;, +-0.891006; -0.249226; -0.000233;, +-0.888241; -0.249226; -0.070140;, +-0.880000; -0.249226; -0.139614;, +-0.866333; -0.249226; -0.208228;, +-0.847325; -0.249226; -0.275558;, +-0.823093; -0.249226; -0.341189;, +-0.793786; -0.249226; -0.404716;, +-0.759586; -0.249226; -0.465748;, +-0.720702; -0.249226; -0.523909;, +-0.677375; -0.249226; -0.578839;, +-0.629871; -0.249226; -0.630201;, +-0.578485; -0.249226; -0.677678;, +-0.523531; -0.249226; -0.720976;, +-0.465350; -0.249226; -0.759829;, +-0.404300; -0.249226; -0.793998;, +-0.340758; -0.249226; -0.823272;, +-0.275114; -0.249226; -0.847469;, +-0.207775; -0.249226; -0.866442;, +-0.139153; -0.249226; -0.880073;, +-0.069675; -0.249226; -0.888278;, +0.000233; -0.249226; -0.891006;, +0.070140; -0.249226; -0.888241;, +0.139614; -0.249226; -0.880000;, +0.208228; -0.249226; -0.866333;, +0.275558; -0.249226; -0.847325;, +0.341189; -0.249226; -0.823093;, +0.404716; -0.249226; -0.793786;, +0.465748; -0.249226; -0.759586;, +0.523909; -0.249226; -0.720702;, +0.578839; -0.249226; -0.677375;, +0.630201; -0.249226; -0.629871;, +0.677678; -0.249226; -0.578485;, +0.720976; -0.249226; -0.523531;, +0.759829; -0.249226; -0.465350;, +0.793998; -0.249226; -0.404300;, +0.823272; -0.249226; -0.340758;, +0.847469; -0.249226; -0.275114;, +0.866442; -0.249226; -0.207775;, +0.880073; -0.249226; -0.139153;, +0.888278; -0.249226; -0.069675;, +0.891006; -0.249226; 0.000233;, +0.888241; -0.249226; 0.070140;, +0.880000; -0.249226; 0.139614;, +0.866333; -0.249226; 0.208228;, +0.847325; -0.249226; 0.275558;, +0.823093; -0.249226; 0.341189;, +0.793786; -0.249226; 0.404716;, +0.759586; -0.249226; 0.465748;, +0.720702; -0.249226; 0.523909;, +0.677375; -0.249226; 0.578839;, +0.629871; -0.249226; 0.630201;, +0.578485; -0.249226; 0.677678;, +0.523531; -0.249226; 0.720976;, +0.465350; -0.249226; 0.759829;, +0.404300; -0.249226; 0.793998;, +0.340758; -0.249226; 0.823272;, +0.275114; -0.249226; 0.847469;, +0.207775; -0.249226; 0.866442;, +0.139153; -0.249226; 0.880073;, +0.069675; -0.249226; 0.888278;, +-0.000233; -0.249226; 0.891006;, +-0.070140; -0.249226; 0.888241;, +-0.139614; -0.249226; 0.880000;, +-0.208228; -0.249226; 0.866333;, +-0.275558; -0.249226; 0.847325;, +-0.341189; -0.249226; 0.823093;, +-0.404716; -0.249226; 0.793786;, +-0.465748; -0.249226; 0.759586;, +-0.523909; -0.249226; 0.720702;, +-0.578839; -0.249226; 0.677375;, +-0.630201; -0.249226; 0.629871;, +-0.677678; -0.249226; 0.578485;, +-0.720976; -0.249226; 0.523531;, +-0.759829; -0.249226; 0.465350;, +-0.793998; -0.249226; 0.404300;, +-0.823272; -0.249226; 0.340758;, +-0.847469; -0.249226; 0.275114;, +-0.866442; -0.249226; 0.207775;, +-0.880073; -0.249226; 0.139153;, +-0.888278; -0.249226; 0.069675;, +-0.852640; -0.286834; -0.000269;, +-0.849990; -0.286834; -0.067165;, +-0.842100; -0.286834; -0.133647;, +-0.829018; -0.286834; -0.199306;, +-0.810825; -0.286834; -0.263736;, +-0.787634; -0.286834; -0.326539;, +-0.759585; -0.286834; -0.387330;, +-0.726855; -0.286834; -0.445732;, +-0.689642; -0.286834; -0.501386;, +-0.648178; -0.286834; -0.553949;, +-0.602717; -0.286834; -0.603097;, +-0.553541; -0.286834; -0.648527;, +-0.500952; -0.286834; -0.689958;, +-0.445274; -0.286834; -0.727135;, +-0.386851; -0.286834; -0.759829;, +-0.326043; -0.286834; -0.787839;, +-0.263225; -0.286834; -0.810991;, +-0.198784; -0.286834; -0.829144;, +-0.133117; -0.286834; -0.842184;, +-0.066630; -0.286834; -0.850032;, +0.000269; -0.286834; -0.852640;, +0.067165; -0.286834; -0.849990;, +0.133647; -0.286834; -0.842100;, +0.199306; -0.286834; -0.829018;, +0.263736; -0.286834; -0.810825;, +0.326539; -0.286834; -0.787634;, +0.387330; -0.286834; -0.759585;, +0.445732; -0.286834; -0.726855;, +0.501386; -0.286834; -0.689642;, +0.553949; -0.286834; -0.648178;, +0.603097; -0.286834; -0.602717;, +0.648527; -0.286834; -0.553541;, +0.689958; -0.286834; -0.500952;, +0.727135; -0.286834; -0.445274;, +0.759829; -0.286834; -0.386851;, +0.787839; -0.286834; -0.326043;, +0.810991; -0.286834; -0.263225;, +0.829144; -0.286834; -0.198784;, +0.842184; -0.286834; -0.133117;, +0.850032; -0.286834; -0.066630;, +0.852640; -0.286834; 0.000269;, +0.849990; -0.286834; 0.067165;, +0.842100; -0.286834; 0.133647;, +0.829018; -0.286834; 0.199306;, +0.810825; -0.286834; 0.263736;, +0.787634; -0.286834; 0.326539;, +0.759585; -0.286834; 0.387330;, +0.726855; -0.286834; 0.445732;, +0.689642; -0.286834; 0.501386;, +0.648178; -0.286834; 0.553949;, +0.602717; -0.286834; 0.603097;, +0.553541; -0.286834; 0.648527;, +0.500952; -0.286834; 0.689958;, +0.445274; -0.286834; 0.727135;, +0.386851; -0.286834; 0.759829;, +0.326043; -0.286834; 0.787839;, +0.263225; -0.286834; 0.810991;, +0.198784; -0.286834; 0.829144;, +0.133117; -0.286834; 0.842184;, +0.066630; -0.286834; 0.850032;, +-0.000269; -0.286834; 0.852640;, +-0.067165; -0.286834; 0.849990;, +-0.133647; -0.286834; 0.842100;, +-0.199306; -0.286834; 0.829018;, +-0.263736; -0.286834; 0.810825;, +-0.326539; -0.286834; 0.787634;, +-0.387330; -0.286834; 0.759585;, +-0.445732; -0.286834; 0.726855;, +-0.501386; -0.286834; 0.689642;, +-0.553949; -0.286834; 0.648178;, +-0.603097; -0.286834; 0.602717;, +-0.648527; -0.286834; 0.553541;, +-0.689958; -0.286834; 0.500952;, +-0.727135; -0.286834; 0.445274;, +-0.759829; -0.286834; 0.386851;, +-0.787839; -0.286834; 0.326043;, +-0.810991; -0.286834; 0.263225;, +-0.829144; -0.286834; 0.198784;, +-0.842184; -0.286834; 0.133117;, +-0.850032; -0.286834; 0.066630;, +-0.809016; -0.322674; -0.000302;, +-0.806499; -0.322674; -0.063776;, +-0.799009; -0.322674; -0.126856;, +-0.786593; -0.322674; -0.189155;, +-0.769327; -0.322675; -0.250287;, +-0.747318; -0.322675; -0.309876;, +-0.720702; -0.322674; -0.367555;, +-0.689642; -0.322674; -0.422967;, +-0.654330; -0.322675; -0.475772;, +-0.614984; -0.322674; -0.525644;, +-0.571847; -0.322674; -0.572275;, +-0.525184; -0.322674; -0.615377;, +-0.475283; -0.322674; -0.654685;, +-0.422452; -0.322674; -0.689958;, +-0.367016; -0.322674; -0.720976;, +-0.309318; -0.322674; -0.747549;, +-0.249713; -0.322674; -0.769514;, +-0.188567; -0.322674; -0.786734;, +-0.126259; -0.322674; -0.799103;, +-0.063174; -0.322674; -0.806546;, +0.000302; -0.322674; -0.809016;, +0.063776; -0.322674; -0.806499;, +0.126856; -0.322674; -0.799009;, +0.189155; -0.322674; -0.786593;, +0.250287; -0.322675; -0.769327;, +0.309876; -0.322675; -0.747318;, +0.367555; -0.322674; -0.720702;, +0.422967; -0.322674; -0.689642;, +0.475772; -0.322675; -0.654330;, +0.525644; -0.322674; -0.614985;, +0.572275; -0.322674; -0.571847;, +0.615377; -0.322674; -0.525184;, +0.654685; -0.322674; -0.475283;, +0.689958; -0.322674; -0.422452;, +0.720976; -0.322674; -0.367016;, +0.747549; -0.322674; -0.309318;, +0.769513; -0.322674; -0.249713;, +0.786734; -0.322674; -0.188567;, +0.799103; -0.322674; -0.126259;, +0.806546; -0.322674; -0.063174;, +0.809016; -0.322674; 0.000302;, +0.806499; -0.322674; 0.063776;, +0.799009; -0.322674; 0.126856;, +0.786593; -0.322674; 0.189155;, +0.769327; -0.322675; 0.250287;, +0.747318; -0.322675; 0.309876;, +0.720702; -0.322674; 0.367555;, +0.689642; -0.322674; 0.422967;, +0.654330; -0.322675; 0.475772;, +0.614984; -0.322674; 0.525644;, +0.571847; -0.322674; 0.572275;, +0.525184; -0.322674; 0.615377;, +0.475283; -0.322674; 0.654685;, +0.422452; -0.322674; 0.689958;, +0.367016; -0.322674; 0.720976;, +0.309318; -0.322674; 0.747549;, +0.249713; -0.322674; 0.769514;, +0.188567; -0.322674; 0.786734;, +0.126259; -0.322674; 0.799103;, +0.063174; -0.322674; 0.806546;, +-0.000302; -0.322674; 0.809016;, +-0.063776; -0.322674; 0.806499;, +-0.126856; -0.322674; 0.799009;, +-0.189155; -0.322674; 0.786593;, +-0.250287; -0.322675; 0.769327;, +-0.309876; -0.322675; 0.747318;, +-0.367555; -0.322674; 0.720702;, +-0.422967; -0.322674; 0.689642;, +-0.475772; -0.322675; 0.654330;, +-0.525644; -0.322674; 0.614985;, +-0.572275; -0.322674; 0.571847;, +-0.615377; -0.322674; 0.525184;, +-0.654685; -0.322674; 0.475283;, +-0.689958; -0.322674; 0.422452;, +-0.720976; -0.322674; 0.367016;, +-0.747549; -0.322674; 0.309318;, +-0.769513; -0.322674; 0.249713;, +-0.786734; -0.322674; 0.188567;, +-0.799103; -0.322674; 0.126259;, +-0.806546; -0.322674; 0.063174;, +-0.760405; -0.356525; -0.000334;, +-0.758035; -0.356525; -0.059994;, +-0.750991; -0.356525; -0.119283;, +-0.739317; -0.356525; -0.177838;, +-0.723085; -0.356525; -0.235296;, +-0.702395; -0.356525; -0.291303;, +-0.677374; -0.356525; -0.345514;, +-0.648177; -0.356525; -0.397595;, +-0.614984; -0.356525; -0.447225;, +-0.578000; -0.356525; -0.494098;, +-0.537452; -0.356525; -0.537924;, +-0.493590; -0.356525; -0.578433;, +-0.446685; -0.356525; -0.615377;, +-0.397026; -0.356525; -0.648526;, +-0.344919; -0.356525; -0.677678;, +-0.290686; -0.356525; -0.702651;, +-0.234661; -0.356525; -0.723291;, +-0.177188; -0.356525; -0.739473;, +-0.118624; -0.356525; -0.751096;, +-0.059328; -0.356525; -0.758087;, +0.000334; -0.356525; -0.760405;, +0.059994; -0.356525; -0.758035;, +0.119283; -0.356525; -0.750991;, +0.177838; -0.356525; -0.739317;, +0.235296; -0.356525; -0.723085;, +0.291303; -0.356525; -0.702395;, +0.345514; -0.356525; -0.677374;, +0.397595; -0.356525; -0.648177;, +0.447225; -0.356525; -0.614984;, +0.494098; -0.356525; -0.578000;, +0.537924; -0.356525; -0.537452;, +0.578433; -0.356525; -0.493590;, +0.615377; -0.356525; -0.446685;, +0.648526; -0.356525; -0.397026;, +0.677678; -0.356525; -0.344919;, +0.702651; -0.356525; -0.290686;, +0.723291; -0.356525; -0.234661;, +0.739473; -0.356525; -0.177188;, +0.751096; -0.356525; -0.118624;, +0.758087; -0.356525; -0.059328;, +0.760405; -0.356525; 0.000334;, +0.758035; -0.356525; 0.059994;, +0.750991; -0.356525; 0.119283;, +0.739317; -0.356525; 0.177838;, +0.723085; -0.356525; 0.235296;, +0.702395; -0.356525; 0.291303;, +0.677374; -0.356525; 0.345514;, +0.648177; -0.356525; 0.397595;, +0.614984; -0.356525; 0.447225;, +0.578000; -0.356525; 0.494098;, +0.537452; -0.356525; 0.537924;, +0.493590; -0.356525; 0.578433;, +0.446685; -0.356525; 0.615377;, +0.397026; -0.356525; 0.648526;, +0.344919; -0.356525; 0.677678;, +0.290686; -0.356525; 0.702651;, +0.234661; -0.356525; 0.723291;, +0.177188; -0.356525; 0.739473;, +0.118624; -0.356525; 0.751096;, +0.059328; -0.356525; 0.758087;, +-0.000334; -0.356525; 0.760405;, +-0.059994; -0.356525; 0.758035;, +-0.119283; -0.356525; 0.750991;, +-0.177838; -0.356525; 0.739317;, +-0.235296; -0.356525; 0.723085;, +-0.291303; -0.356525; 0.702395;, +-0.345514; -0.356525; 0.677374;, +-0.397595; -0.356525; 0.648177;, +-0.447225; -0.356525; 0.614984;, +-0.494098; -0.356525; 0.578000;, +-0.537924; -0.356525; 0.537452;, +-0.578433; -0.356525; 0.493590;, +-0.615377; -0.356525; 0.446685;, +-0.648526; -0.356525; 0.397026;, +-0.677678; -0.356525; 0.344919;, +-0.702651; -0.356525; 0.290686;, +-0.723291; -0.356525; 0.234661;, +-0.739473; -0.356525; 0.177188;, +-0.751096; -0.356525; 0.118624;, +-0.758087; -0.356525; 0.059328;, +-0.707106; -0.388178; -0.000364;, +-0.704898; -0.388178; -0.055841;, +-0.698343; -0.388178; -0.110975;, +-0.687484; -0.388178; -0.165424;, +-0.672385; -0.388178; -0.218854;, +-0.653142; -0.388178; -0.270933;, +-0.629871; -0.388178; -0.321343;, +-0.602717; -0.388178; -0.369772;, +-0.571847; -0.388178; -0.415921;, +-0.537452; -0.388178; -0.459505;, +-0.499742; -0.388178; -0.500256;, +-0.458952; -0.388178; -0.537924;, +-0.415332; -0.388178; -0.572275;, +-0.369152; -0.388178; -0.603097;, +-0.320695; -0.388178; -0.630201;, +-0.270262; -0.388178; -0.653420;, +-0.218162; -0.388178; -0.672610;, +-0.164717; -0.388178; -0.687653;, +-0.110257; -0.388178; -0.698457;, +-0.055116; -0.388178; -0.704955;, +0.000364; -0.388178; -0.707106;, +0.055841; -0.388178; -0.704898;, +0.110975; -0.388178; -0.698343;, +0.165424; -0.388178; -0.687484;, +0.218854; -0.388178; -0.672385;, +0.270933; -0.388178; -0.653142;, +0.321343; -0.388178; -0.629871;, +0.369772; -0.388178; -0.602717;, +0.415921; -0.388178; -0.571847;, +0.459505; -0.388178; -0.537452;, +0.500257; -0.388178; -0.499742;, +0.537924; -0.388178; -0.458952;, +0.572275; -0.388178; -0.415332;, +0.603097; -0.388178; -0.369152;, +0.630201; -0.388178; -0.320695;, +0.653420; -0.388178; -0.270262;, +0.672610; -0.388178; -0.218162;, +0.687653; -0.388178; -0.164717;, +0.698457; -0.388178; -0.110257;, +0.704955; -0.388178; -0.055116;, +0.707106; -0.388178; 0.000364;, +0.704898; -0.388178; 0.055841;, +0.698343; -0.388178; 0.110975;, +0.687484; -0.388178; 0.165424;, +0.672385; -0.388178; 0.218854;, +0.653142; -0.388178; 0.270933;, +0.629871; -0.388178; 0.321343;, +0.602717; -0.388178; 0.369772;, +0.571847; -0.388178; 0.415921;, +0.537452; -0.388178; 0.459505;, +0.499742; -0.388178; 0.500256;, +0.458952; -0.388178; 0.537924;, +0.415332; -0.388178; 0.572275;, +0.369152; -0.388178; 0.603097;, +0.320695; -0.388178; 0.630201;, +0.270262; -0.388178; 0.653420;, +0.218162; -0.388178; 0.672610;, +0.164717; -0.388178; 0.687653;, +0.110257; -0.388178; 0.698457;, +0.055116; -0.388178; 0.704955;, +-0.000364; -0.388178; 0.707106;, +-0.055841; -0.388178; 0.704898;, +-0.110975; -0.388178; 0.698343;, +-0.165424; -0.388178; 0.687484;, +-0.218854; -0.388178; 0.672385;, +-0.270933; -0.388178; 0.653142;, +-0.321343; -0.388178; 0.629871;, +-0.369772; -0.388178; 0.602717;, +-0.415921; -0.388178; 0.571847;, +-0.459505; -0.388178; 0.537452;, +-0.500257; -0.388178; 0.499742;, +-0.537924; -0.388178; 0.458952;, +-0.572275; -0.388178; 0.415332;, +-0.603097; -0.388178; 0.369152;, +-0.630201; -0.388178; 0.320695;, +-0.653420; -0.388178; 0.270262;, +-0.672610; -0.388178; 0.218162;, +-0.687653; -0.388178; 0.164717;, +-0.698457; -0.388178; 0.110257;, +-0.704955; -0.388178; 0.055116;, +-0.649447; -0.417437; -0.000391;, +-0.647415; -0.417437; -0.051345;, +-0.641390; -0.417437; -0.101982;, +-0.631412; -0.417437; -0.151991;, +-0.617540; -0.417437; -0.201062;, +-0.599861; -0.417437; -0.248894;, +-0.578484; -0.417437; -0.295191;, +-0.553540; -0.417437; -0.339669;, +-0.525184; -0.417437; -0.382052;, +-0.493590; -0.417437; -0.422080;, +-0.458952; -0.417437; -0.459505;, +-0.421485; -0.417437; -0.494098;, +-0.381419; -0.417437; -0.525644;, +-0.339002; -0.417437; -0.553949;, +-0.294494; -0.417437; -0.578839;, +-0.248171; -0.417437; -0.600161;, +-0.200318; -0.417437; -0.617782;, +-0.151230; -0.417437; -0.631594;, +-0.101210; -0.417437; -0.641513;, +-0.050565; -0.417437; -0.647476;, +0.000391; -0.417437; -0.649447;, +0.051345; -0.417437; -0.647415;, +0.101982; -0.417437; -0.641390;, +0.151991; -0.417437; -0.631412;, +0.201062; -0.417437; -0.617540;, +0.248894; -0.417437; -0.599861;, +0.295191; -0.417437; -0.578484;, +0.339669; -0.417437; -0.553540;, +0.382052; -0.417437; -0.525184;, +0.422080; -0.417437; -0.493590;, +0.459505; -0.417437; -0.458952;, +0.494098; -0.417437; -0.421485;, +0.525644; -0.417437; -0.381419;, +0.553949; -0.417437; -0.339002;, +0.578839; -0.417437; -0.294494;, +0.600161; -0.417437; -0.248171;, +0.617782; -0.417437; -0.200318;, +0.631594; -0.417437; -0.151230;, +0.641513; -0.417437; -0.101210;, +0.647476; -0.417437; -0.050565;, +0.649447; -0.417437; 0.000391;, +0.647415; -0.417437; 0.051345;, +0.641390; -0.417437; 0.101982;, +0.631412; -0.417437; 0.151991;, +0.617540; -0.417437; 0.201062;, +0.599861; -0.417437; 0.248894;, +0.578484; -0.417437; 0.295191;, +0.553540; -0.417437; 0.339669;, +0.525184; -0.417437; 0.382052;, +0.493590; -0.417437; 0.422080;, +0.458952; -0.417437; 0.459505;, +0.421485; -0.417437; 0.494098;, +0.381419; -0.417437; 0.525644;, +0.339002; -0.417437; 0.553949;, +0.294494; -0.417437; 0.578839;, +0.248171; -0.417437; 0.600161;, +0.200318; -0.417437; 0.617782;, +0.151230; -0.417437; 0.631594;, +0.101210; -0.417437; 0.641513;, +0.050565; -0.417437; 0.647476;, +-0.000391; -0.417437; 0.649447;, +-0.051345; -0.417437; 0.647415;, +-0.101982; -0.417437; 0.641390;, +-0.151991; -0.417437; 0.631412;, +-0.201062; -0.417437; 0.617540;, +-0.248894; -0.417437; 0.599861;, +-0.295191; -0.417437; 0.578484;, +-0.339669; -0.417437; 0.553540;, +-0.382052; -0.417437; 0.525184;, +-0.422080; -0.417437; 0.493590;, +-0.459505; -0.417437; 0.458952;, +-0.494098; -0.417437; 0.421485;, +-0.525644; -0.417437; 0.381419;, +-0.553949; -0.417437; 0.339002;, +-0.578839; -0.417437; 0.294494;, +-0.600161; -0.417437; 0.248171;, +-0.617782; -0.417437; 0.200318;, +-0.631594; -0.417437; 0.151230;, +-0.641513; -0.417437; 0.101210;, +-0.647476; -0.417437; 0.050565;, +-0.587784; -0.444123; -0.000416;, +-0.585940; -0.444123; -0.046532;, +-0.580483; -0.444123; -0.092361;, +-0.571447; -0.444123; -0.137620;, +-0.558887; -0.444123; -0.182031;, +-0.542883; -0.444123; -0.225320;, +-0.523531; -0.444123; -0.267219;, +-0.500951; -0.444123; -0.307471;, +-0.475283; -0.444123; -0.345827;, +-0.446684; -0.444123; -0.382052;, +-0.415332; -0.444123; -0.415920;, +-0.381419; -0.444123; -0.447225;, +-0.345154; -0.444123; -0.475772;, +-0.306762; -0.444123; -0.501386;, +-0.266478; -0.444123; -0.523908;, +-0.224551; -0.444123; -0.543201;, +-0.181240; -0.444123; -0.559145;, +-0.136811; -0.444123; -0.571641;, +-0.091539; -0.444123; -0.580613;, +-0.045702; -0.444123; -0.586005;, +0.000416; -0.444123; -0.587784;, +0.046532; -0.444123; -0.585940;, +0.092361; -0.444123; -0.580483;, +0.137620; -0.444123; -0.571447;, +0.182031; -0.444123; -0.558887;, +0.225320; -0.444123; -0.542883;, +0.267219; -0.444123; -0.523531;, +0.307471; -0.444123; -0.500951;, +0.345827; -0.444123; -0.475283;, +0.382052; -0.444123; -0.446684;, +0.415920; -0.444123; -0.415332;, +0.447225; -0.444123; -0.381419;, +0.475772; -0.444123; -0.345154;, +0.501386; -0.444123; -0.306762;, +0.523908; -0.444123; -0.266478;, +0.543201; -0.444123; -0.224551;, +0.559145; -0.444123; -0.181240;, +0.571641; -0.444123; -0.136811;, +0.580613; -0.444123; -0.091539;, +0.586005; -0.444123; -0.045702;, +0.587784; -0.444123; 0.000416;, +0.585940; -0.444123; 0.046532;, +0.580483; -0.444123; 0.092361;, +0.571447; -0.444123; 0.137620;, +0.558887; -0.444123; 0.182031;, +0.542883; -0.444123; 0.225320;, +0.523531; -0.444123; 0.267219;, +0.500951; -0.444123; 0.307471;, +0.475283; -0.444123; 0.345827;, +0.446684; -0.444123; 0.382052;, +0.415332; -0.444123; 0.415920;, +0.381419; -0.444123; 0.447225;, +0.345154; -0.444123; 0.475772;, +0.306762; -0.444123; 0.501386;, +0.266478; -0.444123; 0.523908;, +0.224551; -0.444123; 0.543201;, +0.181240; -0.444123; 0.559145;, +0.136811; -0.444123; 0.571641;, +0.091539; -0.444123; 0.580613;, +0.045702; -0.444123; 0.586005;, +-0.000416; -0.444123; 0.587784;, +-0.046532; -0.444123; 0.585940;, +-0.092361; -0.444123; 0.580483;, +-0.137620; -0.444123; 0.571447;, +-0.182031; -0.444123; 0.558887;, +-0.225320; -0.444123; 0.542883;, +-0.267219; -0.444123; 0.523531;, +-0.307471; -0.444123; 0.500951;, +-0.345827; -0.444123; 0.475283;, +-0.382052; -0.444123; 0.446684;, +-0.415920; -0.444123; 0.415332;, +-0.447225; -0.444123; 0.381419;, +-0.475772; -0.444123; 0.345154;, +-0.501386; -0.444123; 0.306762;, +-0.523908; -0.444123; 0.266478;, +-0.543201; -0.444123; 0.224551;, +-0.559145; -0.444123; 0.181240;, +-0.571641; -0.444123; 0.136811;, +-0.580613; -0.444123; 0.091539;, +-0.586005; -0.444123; 0.045702;, +-0.522498; -0.468070; -0.000438;, +-0.520852; -0.468070; -0.041432;, +-0.515996; -0.468070; -0.082170;, +-0.507959; -0.468070; -0.122401;, +-0.496789; -0.468070; -0.161878;, +-0.482557; -0.468070; -0.200356;, +-0.465350; -0.468070; -0.237600;, +-0.445273; -0.468070; -0.273378;, +-0.422452; -0.468070; -0.307471;, +-0.397025; -0.468070; -0.339668;, +-0.369151; -0.468070; -0.369772;, +-0.339002; -0.468070; -0.397595;, +-0.306762; -0.468070; -0.422967;, +-0.272630; -0.468070; -0.445732;, +-0.236818; -0.468070; -0.465748;, +-0.199546; -0.468070; -0.482893;, +-0.161044; -0.468070; -0.497060;, +-0.121548; -0.468070; -0.508163;, +-0.081303; -0.468070; -0.516133;, +-0.040557; -0.468071; -0.520921;, +0.000438; -0.468070; -0.522498;, +0.041432; -0.468070; -0.520852;, +0.082170; -0.468070; -0.515996;, +0.122401; -0.468070; -0.507959;, +0.161878; -0.468070; -0.496789;, +0.200356; -0.468070; -0.482557;, +0.237600; -0.468070; -0.465350;, +0.273378; -0.468070; -0.445273;, +0.307471; -0.468070; -0.422452;, +0.339668; -0.468070; -0.397025;, +0.369772; -0.468070; -0.369151;, +0.397595; -0.468070; -0.339002;, +0.422967; -0.468070; -0.306762;, +0.445732; -0.468070; -0.272630;, +0.465748; -0.468070; -0.236818;, +0.482893; -0.468070; -0.199546;, +0.497060; -0.468070; -0.161044;, +0.508163; -0.468070; -0.121548;, +0.516133; -0.468070; -0.081303;, +0.520921; -0.468071; -0.040557;, +0.522498; -0.468070; 0.000438;, +0.520852; -0.468070; 0.041432;, +0.515996; -0.468070; 0.082170;, +0.507959; -0.468070; 0.122401;, +0.496789; -0.468070; 0.161878;, +0.482557; -0.468070; 0.200356;, +0.465350; -0.468070; 0.237600;, +0.445273; -0.468070; 0.273378;, +0.422452; -0.468070; 0.307471;, +0.397025; -0.468070; 0.339668;, +0.369151; -0.468070; 0.369772;, +0.339002; -0.468070; 0.397595;, +0.306762; -0.468070; 0.422967;, +0.272630; -0.468070; 0.445732;, +0.236818; -0.468070; 0.465748;, +0.199546; -0.468070; 0.482893;, +0.161044; -0.468070; 0.497060;, +0.121548; -0.468070; 0.508163;, +0.081303; -0.468070; 0.516133;, +0.040557; -0.468071; 0.520921;, +-0.000438; -0.468070; 0.522498;, +-0.041432; -0.468070; 0.520852;, +-0.082170; -0.468070; 0.515996;, +-0.122401; -0.468070; 0.507959;, +-0.161878; -0.468070; 0.496789;, +-0.200356; -0.468070; 0.482557;, +-0.237600; -0.468070; 0.465350;, +-0.273378; -0.468070; 0.445273;, +-0.307471; -0.468070; 0.422452;, +-0.339668; -0.468070; 0.397025;, +-0.369772; -0.468070; 0.369151;, +-0.397595; -0.468070; 0.339002;, +-0.422967; -0.468070; 0.306762;, +-0.445732; -0.468070; 0.272630;, +-0.465748; -0.468070; 0.236818;, +-0.482893; -0.468070; 0.199546;, +-0.497060; -0.468070; 0.161044;, +-0.508163; -0.468070; 0.121548;, +-0.516133; -0.468070; 0.081303;, +-0.520921; -0.468071; 0.040557;, +-0.453990; -0.489132; -0.000458;, +-0.452554; -0.489132; -0.036077;, +-0.448329; -0.489132; -0.071472;, +-0.441339; -0.489132; -0.106427;, +-0.431628; -0.489132; -0.140727;, +-0.419256; -0.489132; -0.174158;, +-0.404300; -0.489132; -0.206515;, +-0.386850; -0.489132; -0.237600;, +-0.367016; -0.489132; -0.267219;, +-0.344919; -0.489132; -0.295191;, +-0.320695; -0.489132; -0.321343;, +-0.294494; -0.489132; -0.345514;, +-0.266478; -0.489132; -0.367555;, +-0.236818; -0.489132; -0.387329;, +-0.205699; -0.489132; -0.404716;, +-0.173311; -0.489132; -0.419607;, +-0.139855; -0.489132; -0.431911;, +-0.105536; -0.489132; -0.441553;, +-0.070567; -0.489132; -0.448472;, +-0.035163; -0.489132; -0.452626;, +0.000458; -0.489132; -0.453990;, +0.036077; -0.489132; -0.452554;, +0.071472; -0.489132; -0.448329;, +0.106427; -0.489132; -0.441339;, +0.140727; -0.489132; -0.431628;, +0.174158; -0.489132; -0.419256;, +0.206515; -0.489132; -0.404300;, +0.237600; -0.489132; -0.386850;, +0.267219; -0.489132; -0.367016;, +0.295191; -0.489132; -0.344919;, +0.321343; -0.489132; -0.320695;, +0.345514; -0.489132; -0.294494;, +0.367555; -0.489132; -0.266478;, +0.387329; -0.489132; -0.236818;, +0.404716; -0.489132; -0.205699;, +0.419607; -0.489132; -0.173311;, +0.431911; -0.489132; -0.139855;, +0.441553; -0.489132; -0.105536;, +0.448472; -0.489132; -0.070567;, +0.452626; -0.489132; -0.035163;, +0.453990; -0.489132; 0.000458;, +0.452554; -0.489132; 0.036077;, +0.448329; -0.489132; 0.071472;, +0.441339; -0.489132; 0.106427;, +0.431628; -0.489132; 0.140727;, +0.419256; -0.489132; 0.174158;, +0.404300; -0.489132; 0.206515;, +0.386850; -0.489132; 0.237600;, +0.367016; -0.489132; 0.267219;, +0.344919; -0.489132; 0.295191;, +0.320695; -0.489132; 0.321343;, +0.294494; -0.489132; 0.345514;, +0.266478; -0.489132; 0.367555;, +0.236818; -0.489132; 0.387329;, +0.205699; -0.489132; 0.404716;, +0.173311; -0.489132; 0.419607;, +0.139855; -0.489132; 0.431911;, +0.105536; -0.489132; 0.441553;, +0.070567; -0.489132; 0.448472;, +0.035163; -0.489132; 0.452626;, +-0.000458; -0.489132; 0.453990;, +-0.036077; -0.489132; 0.452554;, +-0.071472; -0.489132; 0.448329;, +-0.106427; -0.489132; 0.441339;, +-0.140727; -0.489132; 0.431628;, +-0.174158; -0.489132; 0.419256;, +-0.206515; -0.489132; 0.404300;, +-0.237600; -0.489132; 0.386850;, +-0.267219; -0.489132; 0.367016;, +-0.295191; -0.489132; 0.344919;, +-0.321343; -0.489132; 0.320695;, +-0.345514; -0.489132; 0.294494;, +-0.367555; -0.489132; 0.266478;, +-0.387329; -0.489132; 0.236818;, +-0.404716; -0.489132; 0.205699;, +-0.419607; -0.489132; 0.173311;, +-0.431911; -0.489132; 0.139855;, +-0.441553; -0.489132; 0.105536;, +-0.448472; -0.489132; 0.070567;, +-0.452626; -0.489132; 0.035163;, +-0.382683; -0.507178; -0.000475;, +-0.381466; -0.507178; -0.030499;, +-0.377897; -0.507178; -0.060334;, +-0.371998; -0.507178; -0.089798;, +-0.363806; -0.507178; -0.118707;, +-0.353371; -0.507178; -0.146885;, +-0.340757; -0.507178; -0.174158;, +-0.326042; -0.507178; -0.200356;, +-0.309317; -0.507178; -0.225320;, +-0.290685; -0.507178; -0.248894;, +-0.270261; -0.507178; -0.270933;, +-0.248171; -0.507178; -0.291303;, +-0.224551; -0.507178; -0.309876;, +-0.199546; -0.507178; -0.326539;, +-0.173311; -0.507178; -0.341188;, +-0.146007; -0.507178; -0.353734;, +-0.117803; -0.507178; -0.364100;, +-0.088873; -0.507178; -0.372220;, +-0.059395; -0.507178; -0.378045;, +-0.029551; -0.507178; -0.381540;, +0.000475; -0.507178; -0.382683;, +0.030499; -0.507178; -0.381466;, +0.060334; -0.507178; -0.377897;, +0.089798; -0.507178; -0.371998;, +0.118707; -0.507178; -0.363806;, +0.146885; -0.507178; -0.353371;, +0.174158; -0.507178; -0.340757;, +0.200356; -0.507178; -0.326042;, +0.225320; -0.507178; -0.309317;, +0.248894; -0.507178; -0.290685;, +0.270933; -0.507178; -0.270261;, +0.291303; -0.507178; -0.248171;, +0.309876; -0.507178; -0.224551;, +0.326539; -0.507178; -0.199546;, +0.341188; -0.507178; -0.173311;, +0.353734; -0.507178; -0.146007;, +0.364100; -0.507178; -0.117803;, +0.372220; -0.507178; -0.088873;, +0.378045; -0.507178; -0.059395;, +0.381540; -0.507178; -0.029551;, +0.382683; -0.507178; 0.000475;, +0.381466; -0.507178; 0.030499;, +0.377897; -0.507178; 0.060334;, +0.371998; -0.507178; 0.089798;, +0.363806; -0.507178; 0.118707;, +0.353371; -0.507178; 0.146885;, +0.340757; -0.507178; 0.174158;, +0.326042; -0.507178; 0.200356;, +0.309317; -0.507178; 0.225320;, +0.290685; -0.507178; 0.248894;, +0.270261; -0.507178; 0.270933;, +0.248171; -0.507178; 0.291303;, +0.224551; -0.507178; 0.309876;, +0.199546; -0.507178; 0.326539;, +0.173311; -0.507178; 0.341188;, +0.146007; -0.507178; 0.353734;, +0.117803; -0.507178; 0.364100;, +0.088873; -0.507178; 0.372220;, +0.059395; -0.507178; 0.378045;, +0.029551; -0.507178; 0.381540;, +-0.000475; -0.507178; 0.382683;, +-0.030499; -0.507178; 0.381466;, +-0.060334; -0.507178; 0.377897;, +-0.089798; -0.507178; 0.371998;, +-0.118707; -0.507178; 0.363806;, +-0.146885; -0.507178; 0.353371;, +-0.174158; -0.507178; 0.340757;, +-0.200356; -0.507178; 0.326042;, +-0.225320; -0.507178; 0.309317;, +-0.248894; -0.507178; 0.290685;, +-0.270933; -0.507178; 0.270261;, +-0.291303; -0.507178; 0.248171;, +-0.309876; -0.507178; 0.224551;, +-0.326539; -0.507178; 0.199546;, +-0.341188; -0.507178; 0.173311;, +-0.353734; -0.507178; 0.146007;, +-0.364100; -0.507178; 0.117803;, +-0.372220; -0.507178; 0.088873;, +-0.378045; -0.507178; 0.059395;, +-0.381540; -0.507178; 0.029551;, +-0.309016; -0.522097; -0.000489;, +-0.308025; -0.522097; -0.024733;, +-0.305135; -0.522097; -0.048824;, +-0.300364; -0.522097; -0.072614;, +-0.293741; -0.522097; -0.095957;, +-0.285306; -0.522097; -0.118708;, +-0.275113; -0.522097; -0.140726;, +-0.263224; -0.522097; -0.161878;, +-0.249712; -0.522097; -0.182031;, +-0.234660; -0.522097; -0.201062;, +-0.218161; -0.522097; -0.218854;, +-0.200318; -0.522097; -0.235296;, +-0.181239; -0.522097; -0.250287;, +-0.161043; -0.522097; -0.263735;, +-0.139854; -0.522097; -0.275558;, +-0.117803; -0.522097; -0.285681;, +-0.095026; -0.522097; -0.294043;, +-0.071663; -0.522097; -0.300592;, +-0.047858; -0.522097; -0.305288;, +-0.023757; -0.522097; -0.308102;, +0.000489; -0.522097; -0.309016;, +0.024733; -0.522097; -0.308025;, +0.048824; -0.522097; -0.305135;, +0.072614; -0.522097; -0.300364;, +0.095957; -0.522097; -0.293741;, +0.118708; -0.522097; -0.285306;, +0.140726; -0.522097; -0.275113;, +0.161878; -0.522097; -0.263224;, +0.182031; -0.522097; -0.249712;, +0.201062; -0.522097; -0.234660;, +0.218854; -0.522097; -0.218161;, +0.235296; -0.522097; -0.200318;, +0.250287; -0.522097; -0.181239;, +0.263735; -0.522097; -0.161043;, +0.275558; -0.522097; -0.139854;, +0.285681; -0.522097; -0.117803;, +0.294043; -0.522097; -0.095026;, +0.300592; -0.522097; -0.071663;, +0.305288; -0.522097; -0.047858;, +0.308102; -0.522097; -0.023757;, +0.309016; -0.522097; 0.000489;, +0.308025; -0.522097; 0.024733;, +0.305135; -0.522097; 0.048824;, +0.300364; -0.522097; 0.072614;, +0.293741; -0.522097; 0.095957;, +0.285306; -0.522097; 0.118708;, +0.275113; -0.522097; 0.140726;, +0.263224; -0.522097; 0.161878;, +0.249712; -0.522097; 0.182031;, +0.234660; -0.522097; 0.201062;, +0.218161; -0.522097; 0.218854;, +0.200318; -0.522097; 0.235296;, +0.181239; -0.522097; 0.250287;, +0.161043; -0.522097; 0.263735;, +0.139854; -0.522097; 0.275558;, +0.117803; -0.522097; 0.285681;, +0.095026; -0.522097; 0.294043;, +0.071663; -0.522097; 0.300592;, +0.047858; -0.522097; 0.305288;, +0.023757; -0.522097; 0.308102;, +-0.000489; -0.522097; 0.309016;, +-0.024733; -0.522097; 0.308025;, +-0.048824; -0.522097; 0.305135;, +-0.072614; -0.522097; 0.300364;, +-0.095957; -0.522097; 0.293741;, +-0.118708; -0.522097; 0.285306;, +-0.140726; -0.522097; 0.275113;, +-0.161878; -0.522097; 0.263224;, +-0.182031; -0.522097; 0.249712;, +-0.201062; -0.522097; 0.234660;, +-0.218854; -0.522097; 0.218161;, +-0.235296; -0.522097; 0.200318;, +-0.250287; -0.522097; 0.181239;, +-0.263735; -0.522097; 0.161043;, +-0.275558; -0.522097; 0.139854;, +-0.285681; -0.522097; 0.117803;, +-0.294043; -0.522097; 0.095026;, +-0.300592; -0.522097; 0.071663;, +-0.305288; -0.522097; 0.047858;, +-0.308102; -0.522097; 0.023757;, +-0.233445; -0.533798; -0.000500;, +-0.232686; -0.533798; -0.018815;, +-0.230493; -0.533798; -0.037013;, +-0.226878; -0.533798; -0.054983;, +-0.221865; -0.533798; -0.072614;, +-0.215484; -0.533798; -0.089798;, +-0.207774; -0.533798; -0.106428;, +-0.198783; -0.533798; -0.122401;, +-0.188567; -0.533798; -0.137620;, +-0.177188; -0.533798; -0.151991;, +-0.164717; -0.533798; -0.165424;, +-0.151230; -0.533798; -0.177838;, +-0.136811; -0.533798; -0.189155;, +-0.121548; -0.533798; -0.199306;, +-0.105536; -0.533798; -0.208228;, +-0.088873; -0.533798; -0.215866;, +-0.071663; -0.533798; -0.222174;, +-0.054010; -0.533798; -0.227112;, +-0.036025; -0.533798; -0.230649;, +-0.017817; -0.533798; -0.232765;, +0.000500; -0.533798; -0.233445;, +0.018815; -0.533798; -0.232686;, +0.037013; -0.533798; -0.230493;, +0.054983; -0.533798; -0.226878;, +0.072614; -0.533798; -0.221865;, +0.089798; -0.533798; -0.215484;, +0.106428; -0.533798; -0.207774;, +0.122401; -0.533798; -0.198783;, +0.137620; -0.533798; -0.188567;, +0.151991; -0.533798; -0.177188;, +0.165424; -0.533798; -0.164717;, +0.177838; -0.533798; -0.151230;, +0.189155; -0.533798; -0.136811;, +0.199306; -0.533798; -0.121548;, +0.208228; -0.533798; -0.105536;, +0.215866; -0.533798; -0.088873;, +0.222174; -0.533798; -0.071663;, +0.227112; -0.533798; -0.054010;, +0.230649; -0.533798; -0.036025;, +0.232765; -0.533798; -0.017817;, +0.233445; -0.533798; 0.000500;, +0.232686; -0.533798; 0.018815;, +0.230493; -0.533798; 0.037013;, +0.226878; -0.533798; 0.054983;, +0.221865; -0.533798; 0.072614;, +0.215484; -0.533798; 0.089798;, +0.207774; -0.533798; 0.106428;, +0.198783; -0.533798; 0.122401;, +0.188567; -0.533798; 0.137620;, +0.177188; -0.533798; 0.151991;, +0.164717; -0.533798; 0.165424;, +0.151230; -0.533798; 0.177838;, +0.136811; -0.533798; 0.189155;, +0.121548; -0.533798; 0.199306;, +0.105536; -0.533798; 0.208228;, +0.088873; -0.533798; 0.215866;, +0.071663; -0.533798; 0.222174;, +0.054010; -0.533798; 0.227112;, +0.036025; -0.533798; 0.230649;, +0.017817; -0.533798; 0.232765;, +-0.000500; -0.533798; 0.233445;, +-0.018815; -0.533798; 0.232686;, +-0.037013; -0.533798; 0.230493;, +-0.054983; -0.533798; 0.226878;, +-0.072614; -0.533798; 0.221865;, +-0.089798; -0.533798; 0.215484;, +-0.106428; -0.533798; 0.207774;, +-0.122401; -0.533798; 0.198783;, +-0.137620; -0.533798; 0.188567;, +-0.151991; -0.533798; 0.177188;, +-0.165424; -0.533798; 0.164717;, +-0.177838; -0.533798; 0.151230;, +-0.189155; -0.533798; 0.136811;, +-0.199306; -0.533798; 0.121548;, +-0.208228; -0.533798; 0.105536;, +-0.215866; -0.533798; 0.088873;, +-0.222174; -0.533798; 0.071663;, +-0.227112; -0.533798; 0.054010;, +-0.230649; -0.533798; 0.036025;, +-0.232765; -0.533798; 0.017817;, +-0.156434; -0.542207; -0.000508;, +-0.155912; -0.542207; -0.012780;, +-0.154429; -0.542207; -0.024974;, +-0.151993; -0.542207; -0.037013;, +-0.148621; -0.542207; -0.048824;, +-0.144332; -0.542207; -0.060334;, +-0.139153; -0.542207; -0.071472;, +-0.133117; -0.542207; -0.082170;, +-0.126259; -0.542207; -0.092361;, +-0.118623; -0.542207; -0.101982;, +-0.110256; -0.542207; -0.110975;, +-0.101209; -0.542207; -0.119284;, +-0.091539; -0.542207; -0.126857;, +-0.081303; -0.542207; -0.133648;, +-0.070567; -0.542207; -0.139615;, +-0.059395; -0.542207; -0.144721;, +-0.047858; -0.542207; -0.148935;, +-0.036025; -0.542207; -0.152231;, +-0.023970; -0.542207; -0.154588;, +-0.011767; -0.542207; -0.155992;, +0.000508; -0.542207; -0.156434;, +0.012780; -0.542207; -0.155912;, +0.024974; -0.542207; -0.154429;, +0.037013; -0.542207; -0.151993;, +0.048824; -0.542207; -0.148621;, +0.060334; -0.542207; -0.144332;, +0.071472; -0.542207; -0.139153;, +0.082170; -0.542207; -0.133117;, +0.092361; -0.542207; -0.126259;, +0.101982; -0.542207; -0.118623;, +0.110975; -0.542207; -0.110256;, +0.119284; -0.542207; -0.101209;, +0.126857; -0.542207; -0.091539;, +0.133648; -0.542207; -0.081303;, +0.139615; -0.542207; -0.070567;, +0.144721; -0.542207; -0.059395;, +0.148935; -0.542207; -0.047858;, +0.152231; -0.542207; -0.036025;, +0.154588; -0.542207; -0.023970;, +0.155992; -0.542207; -0.011767;, +0.156434; -0.542207; 0.000508;, +0.155912; -0.542207; 0.012780;, +0.154429; -0.542207; 0.024974;, +0.151993; -0.542207; 0.037013;, +0.148621; -0.542207; 0.048824;, +0.144332; -0.542207; 0.060334;, +0.139153; -0.542207; 0.071472;, +0.133117; -0.542207; 0.082170;, +0.126259; -0.542207; 0.092361;, +0.118623; -0.542207; 0.101982;, +0.110256; -0.542207; 0.110975;, +0.101209; -0.542207; 0.119284;, +0.091539; -0.542207; 0.126857;, +0.081303; -0.542207; 0.133648;, +0.070567; -0.542207; 0.139615;, +0.059395; -0.542207; 0.144721;, +0.047858; -0.542207; 0.148935;, +0.036025; -0.542207; 0.152231;, +0.023970; -0.542207; 0.154588;, +0.011767; -0.542207; 0.155992;, +-0.000508; -0.542207; 0.156434;, +-0.012780; -0.542207; 0.155912;, +-0.024974; -0.542207; 0.154429;, +-0.037013; -0.542207; 0.151993;, +-0.048824; -0.542207; 0.148621;, +-0.060334; -0.542207; 0.144332;, +-0.071472; -0.542207; 0.139153;, +-0.082170; -0.542207; 0.133117;, +-0.092361; -0.542207; 0.126259;, +-0.101982; -0.542207; 0.118623;, +-0.110975; -0.542207; 0.110256;, +-0.119284; -0.542207; 0.101209;, +-0.126857; -0.542207; 0.091539;, +-0.133648; -0.542207; 0.081303;, +-0.139615; -0.542207; 0.070567;, +-0.144721; -0.542207; 0.059395;, +-0.148935; -0.542207; 0.047858;, +-0.152231; -0.542207; 0.036025;, +-0.154588; -0.542207; 0.023970;, +-0.155992; -0.542207; 0.011767;, +-0.086290; -0.546918; -0.000924;, +-0.085951; -0.546918; -0.007692;, +-0.085083; -0.546918; -0.014412;, +-0.083690; -0.546918; -0.021043;, +-0.081781; -0.546918; -0.027544;, +-0.079368; -0.546918; -0.033876;, +-0.076465; -0.546918; -0.039998;, +-0.073091; -0.546918; -0.045874;, +-0.069267; -0.546918; -0.051468;, +-0.065015; -0.546918; -0.056744;, +-0.060363; -0.546918; -0.061670;, +-0.055338; -0.546918; -0.066216;, +-0.049972; -0.546918; -0.070353;, +-0.044298; -0.546918; -0.074057;, +-0.038351; -0.546918; -0.077304;, +-0.032168; -0.546918; -0.080075;, +-0.025786; -0.546918; -0.082352;, +-0.019245; -0.546918; -0.084121;, +-0.012586; -0.546918; -0.085372;, +-0.005849; -0.546918; -0.086096;, +0.000924; -0.546918; -0.086290;, +0.007692; -0.546918; -0.085951;, +0.014412; -0.546918; -0.085083;, +0.021043; -0.546918; -0.083690;, +0.027544; -0.546918; -0.081781;, +0.033876; -0.546918; -0.079368;, +0.039998; -0.546918; -0.076465;, +0.045874; -0.546918; -0.073091;, +0.051468; -0.546918; -0.069267;, +0.056744; -0.546918; -0.065015;, +0.061670; -0.546918; -0.060363;, +0.066216; -0.546918; -0.055338;, +0.070353; -0.546918; -0.049972;, +0.074057; -0.546918; -0.044298;, +0.077304; -0.546918; -0.038351;, +0.080075; -0.546918; -0.032168;, +0.082352; -0.546918; -0.025786;, +0.084121; -0.546918; -0.019245;, +0.085372; -0.546918; -0.012586;, +0.086096; -0.546918; -0.005849;, +0.086290; -0.546918; 0.000924;, +0.085951; -0.546918; 0.007692;, +0.085083; -0.546918; 0.014412;, +0.083690; -0.546918; 0.021043;, +0.081781; -0.546918; 0.027544;, +0.079368; -0.546918; 0.033876;, +0.076465; -0.546918; 0.039998;, +0.073091; -0.546918; 0.045874;, +0.069267; -0.546918; 0.051468;, +0.065015; -0.546918; 0.056744;, +0.060363; -0.546918; 0.061670;, +0.055338; -0.546918; 0.066216;, +0.049972; -0.546918; 0.070353;, +0.044298; -0.546918; 0.074057;, +0.038351; -0.546918; 0.077304;, +0.032168; -0.546918; 0.080075;, +0.025786; -0.546918; 0.082352;, +0.019245; -0.546918; 0.084121;, +0.012586; -0.546918; 0.085372;, +0.005849; -0.546918; 0.086096;, +-0.000924; -0.546918; 0.086290;, +-0.007692; -0.546918; 0.085951;, +-0.014412; -0.546918; 0.085083;, +-0.021043; -0.546918; 0.083690;, +-0.027544; -0.546918; 0.081781;, +-0.033876; -0.546918; 0.079368;, +-0.039998; -0.546918; 0.076465;, +-0.045874; -0.546918; 0.073091;, +-0.051468; -0.546918; 0.069267;, +-0.056744; -0.546918; 0.065015;, +-0.061670; -0.546918; 0.060363;, +-0.066216; -0.546918; 0.055338;, +-0.070353; -0.546918; 0.049972;, +-0.074057; -0.546918; 0.044298;, +-0.077304; -0.546918; 0.038351;, +-0.080075; -0.546918; 0.032168;, +-0.082352; -0.546918; 0.025786;, +-0.084121; -0.546918; 0.019245;, +-0.085372; -0.546918; 0.012586;, +-0.086096; -0.546918; 0.005849;, +-0.039248; -0.007188; -0.999144;, +0.000000; 0.021545; -0.999230;, +0.039248; -0.007188; -0.999144;, +0.039248; -0.007188; 0.999144;, +0.000000; 0.021545; 0.999230;, +-0.039248; -0.007188; 0.999144;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +0.000000; 0.000000; 0.000000;, +-0.000000; -0.548966; 0.000000;, +-0.000000; -0.548966; 0.000000;, +-0.000000; -0.548966; 0.000000;, +-0.000000; -0.548966; 0.000000;, +-0.000000; -0.548966; 0.000000;, +-0.999143; -0.021550; 0.013086;, +-0.996917; -0.043071; -0.000040;, +-0.987688; -0.085877; -0.000080;, +-0.972370; -0.128154; -0.000120;, +-0.951056; -0.169640; -0.000159;, +-0.923879; -0.210080; -0.000197;, +-0.891006; -0.249226; -0.000233;, +-0.852640; -0.286834; -0.000269;, +-0.809016; -0.322674; -0.000302;, +-0.760405; -0.356525; -0.000334;, +-0.707106; -0.388178; -0.000364;, +-0.649447; -0.417437; -0.000391;, +-0.587784; -0.444123; -0.000416;, +-0.522498; -0.468070; -0.000438;, +-0.453990; -0.489132; -0.000458;, +-0.382683; -0.507178; -0.000475;, +-0.309016; -0.522097; -0.000489;, +-0.233445; -0.533798; -0.000500;, +-0.156434; -0.542207; -0.000508;, +-0.086290; -0.546918; -0.000924;; + + 3128; +3;1602,21,1601;, +3;1603,21,1602;, +3;1605,61,1604;, +3;1606,61,1605;, +3;2,82,81;, +3;3,83,82;, +3;4,84,83;, +3;5,85,84;, +3;6,86,85;, +3;7,87,86;, +3;8,88,87;, +3;9,89,88;, +3;10,90,89;, +3;11,91,90;, +3;12,92,91;, +3;13,93,92;, +3;14,94,93;, +3;15,95,94;, +3;16,96,95;, +3;17,97,96;, +3;18,98,97;, +3;19,99,98;, +3;20,100,99;, +3;1601,100,20;, +3;100,1601,21;, +3;102,101,21;, +3;1603,22,102;, +3;23,103,102;, +3;24,104,103;, +3;25,105,104;, +3;26,106,105;, +3;27,107,106;, +3;28,108,107;, +3;29,109,108;, +3;30,110,109;, +3;31,111,110;, +3;32,112,111;, +3;33,113,112;, +3;34,114,113;, +3;35,115,114;, +3;36,116,115;, +3;37,117,116;, +3;38,118,117;, +3;39,119,118;, +3;40,120,119;, +3;41,121,120;, +3;42,122,121;, +3;43,123,122;, +3;44,124,123;, +3;45,125,124;, +3;46,126,125;, +3;47,127,126;, +3;48,128,127;, +3;49,129,128;, +3;50,130,129;, +3;51,131,130;, +3;52,132,131;, +3;53,133,132;, +3;54,134,133;, +3;55,135,134;, +3;56,136,135;, +3;57,137,136;, +3;58,138,137;, +3;59,139,138;, +3;60,140,139;, +3;1604,140,60;, +3;140,1604,61;, +3;142,141,61;, +3;1606,62,142;, +3;63,143,142;, +3;64,144,143;, +3;65,145,144;, +3;66,146,145;, +3;67,147,146;, +3;68,148,147;, +3;69,149,148;, +3;70,150,149;, +3;71,151,150;, +3;72,152,151;, +3;73,153,152;, +3;74,154,153;, +3;75,155,154;, +3;76,156,155;, +3;77,157,156;, +3;78,158,157;, +3;79,159,158;, +3;80,160,159;, +3;1,1687,160;, +3;82,162,161;, +3;83,163,162;, +3;84,164,163;, +3;85,165,164;, +3;86,166,165;, +3;87,167,166;, +3;88,168,167;, +3;89,169,168;, +3;90,170,169;, +3;91,171,170;, +3;92,172,171;, +3;93,173,172;, +3;94,174,173;, +3;95,175,174;, +3;96,176,175;, +3;97,177,176;, +3;98,178,177;, +3;99,179,178;, +3;100,180,179;, +3;101,181,180;, +3;102,182,181;, +3;103,183,182;, +3;104,184,183;, +3;105,185,184;, +3;106,186,185;, +3;107,187,186;, +3;108,188,187;, +3;109,189,188;, +3;110,190,189;, +3;111,191,190;, +3;112,192,191;, +3;113,193,192;, +3;114,194,193;, +3;115,195,194;, +3;116,196,195;, +3;117,197,196;, +3;118,198,197;, +3;119,199,198;, +3;120,200,199;, +3;121,201,200;, +3;122,202,201;, +3;123,203,202;, +3;124,204,203;, +3;125,205,204;, +3;126,206,205;, +3;127,207,206;, +3;128,208,207;, +3;129,209,208;, +3;130,210,209;, +3;131,211,210;, +3;132,212,211;, +3;133,213,212;, +3;134,214,213;, +3;135,215,214;, +3;136,216,215;, +3;137,217,216;, +3;138,218,217;, +3;139,219,218;, +3;140,220,219;, +3;141,221,220;, +3;142,222,221;, +3;143,223,222;, +3;144,224,223;, +3;145,225,224;, +3;146,226,225;, +3;147,227,226;, +3;148,228,227;, +3;149,229,228;, +3;150,230,229;, +3;151,231,230;, +3;152,232,231;, +3;153,233,232;, +3;154,234,233;, +3;155,235,234;, +3;156,236,235;, +3;157,237,236;, +3;158,238,237;, +3;159,239,238;, +3;160,240,239;, +3;1687,1688,240;, +3;162,242,241;, +3;163,243,242;, +3;164,244,243;, +3;165,245,244;, +3;166,246,245;, +3;167,247,246;, +3;168,248,247;, +3;169,249,248;, +3;170,250,249;, +3;171,251,250;, +3;172,252,251;, +3;173,253,252;, +3;174,254,253;, +3;175,255,254;, +3;176,256,255;, +3;177,257,256;, +3;178,258,257;, +3;179,259,258;, +3;180,260,259;, +3;181,261,260;, +3;182,262,261;, +3;183,263,262;, +3;184,264,263;, +3;185,265,264;, +3;186,266,265;, +3;187,267,266;, +3;188,268,267;, +3;189,269,268;, +3;190,270,269;, +3;191,271,270;, +3;192,272,271;, +3;193,273,272;, +3;194,274,273;, +3;195,275,274;, +3;196,276,275;, +3;197,277,276;, +3;198,278,277;, +3;199,279,278;, +3;200,280,279;, +3;201,281,280;, +3;202,282,281;, +3;203,283,282;, +3;204,284,283;, +3;205,285,284;, +3;206,286,285;, +3;207,287,286;, +3;208,288,287;, +3;209,289,288;, +3;210,290,289;, +3;211,291,290;, +3;212,292,291;, +3;213,293,292;, +3;214,294,293;, +3;215,295,294;, +3;216,296,295;, +3;217,297,296;, +3;218,298,297;, +3;219,299,298;, +3;220,300,299;, +3;221,301,300;, +3;222,302,301;, +3;223,303,302;, +3;224,304,303;, +3;225,305,304;, +3;226,306,305;, +3;227,307,306;, +3;228,308,307;, +3;229,309,308;, +3;230,310,309;, +3;231,311,310;, +3;232,312,311;, +3;233,313,312;, +3;234,314,313;, +3;235,315,314;, +3;236,316,315;, +3;237,317,316;, +3;238,318,317;, +3;239,319,318;, +3;240,320,319;, +3;1688,1689,320;, +3;242,322,321;, +3;243,323,322;, +3;244,324,323;, +3;245,325,324;, +3;246,326,325;, +3;247,327,326;, +3;248,328,327;, +3;249,329,328;, +3;250,330,329;, +3;251,331,330;, +3;252,332,331;, +3;253,333,332;, +3;254,334,333;, +3;255,335,334;, +3;256,336,335;, +3;257,337,336;, +3;258,338,337;, +3;259,339,338;, +3;260,340,339;, +3;261,341,340;, +3;262,342,341;, +3;263,343,342;, +3;264,344,343;, +3;265,345,344;, +3;266,346,345;, +3;267,347,346;, +3;268,348,347;, +3;269,349,348;, +3;270,350,349;, +3;271,351,350;, +3;272,352,351;, +3;273,353,352;, +3;274,354,353;, +3;275,355,354;, +3;276,356,355;, +3;277,357,356;, +3;278,358,357;, +3;279,359,358;, +3;280,360,359;, +3;281,361,360;, +3;282,362,361;, +3;283,363,362;, +3;284,364,363;, +3;285,365,364;, +3;286,366,365;, +3;287,367,366;, +3;288,368,367;, +3;289,369,368;, +3;290,370,369;, +3;291,371,370;, +3;292,372,371;, +3;293,373,372;, +3;294,374,373;, +3;295,375,374;, +3;296,376,375;, +3;297,377,376;, +3;298,378,377;, +3;299,379,378;, +3;300,380,379;, +3;301,381,380;, +3;302,382,381;, +3;303,383,382;, +3;304,384,383;, +3;305,385,384;, +3;306,386,385;, +3;307,387,386;, +3;308,388,387;, +3;309,389,388;, +3;310,390,389;, +3;311,391,390;, +3;312,392,391;, +3;313,393,392;, +3;314,394,393;, +3;315,395,394;, +3;316,396,395;, +3;317,397,396;, +3;318,398,397;, +3;319,399,398;, +3;320,400,399;, +3;1689,1690,400;, +3;322,402,401;, +3;323,403,402;, +3;324,404,403;, +3;325,405,404;, +3;326,406,405;, +3;327,407,406;, +3;328,408,407;, +3;329,409,408;, +3;330,410,409;, +3;331,411,410;, +3;332,412,411;, +3;333,413,412;, +3;334,414,413;, +3;335,415,414;, +3;336,416,415;, +3;337,417,416;, +3;338,418,417;, +3;339,419,418;, +3;340,420,419;, +3;341,421,420;, +3;342,422,421;, +3;343,423,422;, +3;344,424,423;, +3;345,425,424;, +3;346,426,425;, +3;347,427,426;, +3;348,428,427;, +3;349,429,428;, +3;350,430,429;, +3;351,431,430;, +3;352,432,431;, +3;353,433,432;, +3;354,434,433;, +3;355,435,434;, +3;356,436,435;, +3;357,437,436;, +3;358,438,437;, +3;359,439,438;, +3;360,440,439;, +3;361,441,440;, +3;362,442,441;, +3;363,443,442;, +3;364,444,443;, +3;365,445,444;, +3;366,446,445;, +3;367,447,446;, +3;368,448,447;, +3;369,449,448;, +3;370,450,449;, +3;371,451,450;, +3;372,452,451;, +3;373,453,452;, +3;374,454,453;, +3;375,455,454;, +3;376,456,455;, +3;377,457,456;, +3;378,458,457;, +3;379,459,458;, +3;380,460,459;, +3;381,461,460;, +3;382,462,461;, +3;383,463,462;, +3;384,464,463;, +3;385,465,464;, +3;386,466,465;, +3;387,467,466;, +3;388,468,467;, +3;389,469,468;, +3;390,470,469;, +3;391,471,470;, +3;392,472,471;, +3;393,473,472;, +3;394,474,473;, +3;395,475,474;, +3;396,476,475;, +3;397,477,476;, +3;398,478,477;, +3;399,479,478;, +3;400,480,479;, +3;1690,1691,480;, +3;402,482,481;, +3;403,483,482;, +3;404,484,483;, +3;405,485,484;, +3;406,486,485;, +3;407,487,486;, +3;408,488,487;, +3;409,489,488;, +3;410,490,489;, +3;411,491,490;, +3;412,492,491;, +3;413,493,492;, +3;414,494,493;, +3;415,495,494;, +3;416,496,495;, +3;417,497,496;, +3;418,498,497;, +3;419,499,498;, +3;420,500,499;, +3;421,501,500;, +3;422,502,501;, +3;423,503,502;, +3;424,504,503;, +3;425,505,504;, +3;426,506,505;, +3;427,507,506;, +3;428,508,507;, +3;429,509,508;, +3;430,510,509;, +3;431,511,510;, +3;432,512,511;, +3;433,513,512;, +3;434,514,513;, +3;435,515,514;, +3;436,516,515;, +3;437,517,516;, +3;438,518,517;, +3;439,519,518;, +3;440,520,519;, +3;441,521,520;, +3;442,522,521;, +3;443,523,522;, +3;444,524,523;, +3;445,525,524;, +3;446,526,525;, +3;447,527,526;, +3;448,528,527;, +3;449,529,528;, +3;450,530,529;, +3;451,531,530;, +3;452,532,531;, +3;453,533,532;, +3;454,534,533;, +3;455,535,534;, +3;456,536,535;, +3;457,537,536;, +3;458,538,537;, +3;459,539,538;, +3;460,540,539;, +3;461,541,540;, +3;462,542,541;, +3;463,543,542;, +3;464,544,543;, +3;465,545,544;, +3;466,546,545;, +3;467,547,546;, +3;468,548,547;, +3;469,549,548;, +3;470,550,549;, +3;471,551,550;, +3;472,552,551;, +3;473,553,552;, +3;474,554,553;, +3;475,555,554;, +3;476,556,555;, +3;477,557,556;, +3;478,558,557;, +3;479,559,558;, +3;480,560,559;, +3;1691,1692,560;, +3;482,562,561;, +3;483,563,562;, +3;484,564,563;, +3;485,565,564;, +3;486,566,565;, +3;487,567,566;, +3;488,568,567;, +3;489,569,568;, +3;490,570,569;, +3;491,571,570;, +3;492,572,571;, +3;493,573,572;, +3;494,574,573;, +3;495,575,574;, +3;496,576,575;, +3;497,577,576;, +3;498,578,577;, +3;499,579,578;, +3;500,580,579;, +3;501,581,580;, +3;502,582,581;, +3;503,583,582;, +3;504,584,583;, +3;505,585,584;, +3;506,586,585;, +3;507,587,586;, +3;508,588,587;, +3;509,589,588;, +3;510,590,589;, +3;511,591,590;, +3;512,592,591;, +3;513,593,592;, +3;514,594,593;, +3;515,595,594;, +3;516,596,595;, +3;517,597,596;, +3;518,598,597;, +3;519,599,598;, +3;520,600,599;, +3;521,601,600;, +3;522,602,601;, +3;523,603,602;, +3;524,604,603;, +3;525,605,604;, +3;526,606,605;, +3;527,607,606;, +3;528,608,607;, +3;529,609,608;, +3;530,610,609;, +3;531,611,610;, +3;532,612,611;, +3;533,613,612;, +3;534,614,613;, +3;535,615,614;, +3;536,616,615;, +3;537,617,616;, +3;538,618,617;, +3;539,619,618;, +3;540,620,619;, +3;541,621,620;, +3;542,622,621;, +3;543,623,622;, +3;544,624,623;, +3;545,625,624;, +3;546,626,625;, +3;547,627,626;, +3;548,628,627;, +3;549,629,628;, +3;550,630,629;, +3;551,631,630;, +3;552,632,631;, +3;553,633,632;, +3;554,634,633;, +3;555,635,634;, +3;556,636,635;, +3;557,637,636;, +3;558,638,637;, +3;559,639,638;, +3;560,640,639;, +3;1692,1693,640;, +3;562,642,641;, +3;563,643,642;, +3;564,644,643;, +3;565,645,644;, +3;566,646,645;, +3;567,647,646;, +3;568,648,647;, +3;569,649,648;, +3;570,650,649;, +3;571,651,650;, +3;572,652,651;, +3;573,653,652;, +3;574,654,653;, +3;575,655,654;, +3;576,656,655;, +3;577,657,656;, +3;578,658,657;, +3;579,659,658;, +3;580,660,659;, +3;581,661,660;, +3;582,662,661;, +3;583,663,662;, +3;584,664,663;, +3;585,665,664;, +3;586,666,665;, +3;587,667,666;, +3;588,668,667;, +3;589,669,668;, +3;590,670,669;, +3;591,671,670;, +3;592,672,671;, +3;593,673,672;, +3;594,674,673;, +3;595,675,674;, +3;596,676,675;, +3;597,677,676;, +3;598,678,677;, +3;599,679,678;, +3;600,680,679;, +3;601,681,680;, +3;602,682,681;, +3;603,683,682;, +3;604,684,683;, +3;605,685,684;, +3;606,686,685;, +3;607,687,686;, +3;608,688,687;, +3;609,689,688;, +3;610,690,689;, +3;611,691,690;, +3;612,692,691;, +3;613,693,692;, +3;614,694,693;, +3;615,695,694;, +3;616,696,695;, +3;617,697,696;, +3;618,698,697;, +3;619,699,698;, +3;620,700,699;, +3;621,701,700;, +3;622,702,701;, +3;623,703,702;, +3;624,704,703;, +3;625,705,704;, +3;626,706,705;, +3;627,707,706;, +3;628,708,707;, +3;629,709,708;, +3;630,710,709;, +3;631,711,710;, +3;632,712,711;, +3;633,713,712;, +3;634,714,713;, +3;635,715,714;, +3;636,716,715;, +3;637,717,716;, +3;638,718,717;, +3;639,719,718;, +3;640,720,719;, +3;1693,1694,720;, +3;642,722,721;, +3;643,723,722;, +3;644,724,723;, +3;645,725,724;, +3;646,726,725;, +3;647,727,726;, +3;648,728,727;, +3;649,729,728;, +3;650,730,729;, +3;651,731,730;, +3;652,732,731;, +3;653,733,732;, +3;654,734,733;, +3;655,735,734;, +3;656,736,735;, +3;657,737,736;, +3;658,738,737;, +3;659,739,738;, +3;660,740,739;, +3;661,741,740;, +3;662,742,741;, +3;663,743,742;, +3;664,744,743;, +3;665,745,744;, +3;666,746,745;, +3;667,747,746;, +3;668,748,747;, +3;669,749,748;, +3;670,750,749;, +3;671,751,750;, +3;672,752,751;, +3;673,753,752;, +3;674,754,753;, +3;675,755,754;, +3;676,756,755;, +3;677,757,756;, +3;678,758,757;, +3;679,759,758;, +3;680,760,759;, +3;681,761,760;, +3;682,762,761;, +3;683,763,762;, +3;684,764,763;, +3;685,765,764;, +3;686,766,765;, +3;687,767,766;, +3;688,768,767;, +3;689,769,768;, +3;690,770,769;, +3;691,771,770;, +3;692,772,771;, +3;693,773,772;, +3;694,774,773;, +3;695,775,774;, +3;696,776,775;, +3;697,777,776;, +3;698,778,777;, +3;699,779,778;, +3;700,780,779;, +3;701,781,780;, +3;702,782,781;, +3;703,783,782;, +3;704,784,783;, +3;705,785,784;, +3;706,786,785;, +3;707,787,786;, +3;708,788,787;, +3;709,789,788;, +3;710,790,789;, +3;711,791,790;, +3;712,792,791;, +3;713,793,792;, +3;714,794,793;, +3;715,795,794;, +3;716,796,795;, +3;717,797,796;, +3;718,798,797;, +3;719,799,798;, +3;720,800,799;, +3;1694,1695,800;, +3;722,802,801;, +3;723,803,802;, +3;724,804,803;, +3;725,805,804;, +3;726,806,805;, +3;727,807,806;, +3;728,808,807;, +3;729,809,808;, +3;730,810,809;, +3;731,811,810;, +3;732,812,811;, +3;733,813,812;, +3;734,814,813;, +3;735,815,814;, +3;736,816,815;, +3;737,817,816;, +3;738,818,817;, +3;739,819,818;, +3;740,820,819;, +3;741,821,820;, +3;742,822,821;, +3;743,823,822;, +3;744,824,823;, +3;745,825,824;, +3;746,826,825;, +3;747,827,826;, +3;748,828,827;, +3;749,829,828;, +3;750,830,829;, +3;751,831,830;, +3;752,832,831;, +3;753,833,832;, +3;754,834,833;, +3;755,835,834;, +3;756,836,835;, +3;757,837,836;, +3;758,838,837;, +3;759,839,838;, +3;760,840,839;, +3;761,841,840;, +3;762,842,841;, +3;763,843,842;, +3;764,844,843;, +3;765,845,844;, +3;766,846,845;, +3;767,847,846;, +3;768,848,847;, +3;769,849,848;, +3;770,850,849;, +3;771,851,850;, +3;772,852,851;, +3;773,853,852;, +3;774,854,853;, +3;775,855,854;, +3;776,856,855;, +3;777,857,856;, +3;778,858,857;, +3;779,859,858;, +3;780,860,859;, +3;781,861,860;, +3;782,862,861;, +3;783,863,862;, +3;784,864,863;, +3;785,865,864;, +3;786,866,865;, +3;787,867,866;, +3;788,868,867;, +3;789,869,868;, +3;790,870,869;, +3;791,871,870;, +3;792,872,871;, +3;793,873,872;, +3;794,874,873;, +3;795,875,874;, +3;796,876,875;, +3;797,877,876;, +3;798,878,877;, +3;799,879,878;, +3;800,880,879;, +3;1695,1696,880;, +3;802,882,881;, +3;803,883,882;, +3;804,884,883;, +3;805,885,884;, +3;806,886,885;, +3;807,887,886;, +3;808,888,887;, +3;809,889,888;, +3;810,890,889;, +3;811,891,890;, +3;812,892,891;, +3;813,893,892;, +3;814,894,893;, +3;815,895,894;, +3;816,896,895;, +3;817,897,896;, +3;818,898,897;, +3;819,899,898;, +3;820,900,899;, +3;821,901,900;, +3;822,902,901;, +3;823,903,902;, +3;824,904,903;, +3;825,905,904;, +3;826,906,905;, +3;827,907,906;, +3;828,908,907;, +3;829,909,908;, +3;830,910,909;, +3;831,911,910;, +3;832,912,911;, +3;833,913,912;, +3;834,914,913;, +3;835,915,914;, +3;836,916,915;, +3;837,917,916;, +3;838,918,917;, +3;839,919,918;, +3;840,920,919;, +3;841,921,920;, +3;842,922,921;, +3;843,923,922;, +3;844,924,923;, +3;845,925,924;, +3;846,926,925;, +3;847,927,926;, +3;848,928,927;, +3;849,929,928;, +3;850,930,929;, +3;851,931,930;, +3;852,932,931;, +3;853,933,932;, +3;854,934,933;, +3;855,935,934;, +3;856,936,935;, +3;857,937,936;, +3;858,938,937;, +3;859,939,938;, +3;860,940,939;, +3;861,941,940;, +3;862,942,941;, +3;863,943,942;, +3;864,944,943;, +3;865,945,944;, +3;866,946,945;, +3;867,947,946;, +3;868,948,947;, +3;869,949,948;, +3;870,950,949;, +3;871,951,950;, +3;872,952,951;, +3;873,953,952;, +3;874,954,953;, +3;875,955,954;, +3;876,956,955;, +3;877,957,956;, +3;878,958,957;, +3;879,959,958;, +3;880,960,959;, +3;1696,1697,960;, +3;882,962,961;, +3;883,963,962;, +3;884,964,963;, +3;885,965,964;, +3;886,966,965;, +3;887,967,966;, +3;888,968,967;, +3;889,969,968;, +3;890,970,969;, +3;891,971,970;, +3;892,972,971;, +3;893,973,972;, +3;894,974,973;, +3;895,975,974;, +3;896,976,975;, +3;897,977,976;, +3;898,978,977;, +3;899,979,978;, +3;900,980,979;, +3;901,981,980;, +3;902,982,981;, +3;903,983,982;, +3;904,984,983;, +3;905,985,984;, +3;906,986,985;, +3;907,987,986;, +3;908,988,987;, +3;909,989,988;, +3;910,990,989;, +3;911,991,990;, +3;912,992,991;, +3;913,993,992;, +3;914,994,993;, +3;915,995,994;, +3;916,996,995;, +3;917,997,996;, +3;918,998,997;, +3;919,999,998;, +3;920,1000,999;, +3;921,1001,1000;, +3;922,1002,1001;, +3;923,1003,1002;, +3;924,1004,1003;, +3;925,1005,1004;, +3;926,1006,1005;, +3;927,1007,1006;, +3;928,1008,1007;, +3;929,1009,1008;, +3;930,1010,1009;, +3;931,1011,1010;, +3;932,1012,1011;, +3;933,1013,1012;, +3;934,1014,1013;, +3;935,1015,1014;, +3;936,1016,1015;, +3;937,1017,1016;, +3;938,1018,1017;, +3;939,1019,1018;, +3;940,1020,1019;, +3;941,1021,1020;, +3;942,1022,1021;, +3;943,1023,1022;, +3;944,1024,1023;, +3;945,1025,1024;, +3;946,1026,1025;, +3;947,1027,1026;, +3;948,1028,1027;, +3;949,1029,1028;, +3;950,1030,1029;, +3;951,1031,1030;, +3;952,1032,1031;, +3;953,1033,1032;, +3;954,1034,1033;, +3;955,1035,1034;, +3;956,1036,1035;, +3;957,1037,1036;, +3;958,1038,1037;, +3;959,1039,1038;, +3;960,1040,1039;, +3;1697,1698,1040;, +3;962,1042,1041;, +3;963,1043,1042;, +3;964,1044,1043;, +3;965,1045,1044;, +3;966,1046,1045;, +3;967,1047,1046;, +3;968,1048,1047;, +3;969,1049,1048;, +3;970,1050,1049;, +3;971,1051,1050;, +3;972,1052,1051;, +3;973,1053,1052;, +3;974,1054,1053;, +3;975,1055,1054;, +3;976,1056,1055;, +3;977,1057,1056;, +3;978,1058,1057;, +3;979,1059,1058;, +3;980,1060,1059;, +3;981,1061,1060;, +3;982,1062,1061;, +3;983,1063,1062;, +3;984,1064,1063;, +3;985,1065,1064;, +3;986,1066,1065;, +3;987,1067,1066;, +3;988,1068,1067;, +3;989,1069,1068;, +3;990,1070,1069;, +3;991,1071,1070;, +3;992,1072,1071;, +3;993,1073,1072;, +3;994,1074,1073;, +3;995,1075,1074;, +3;996,1076,1075;, +3;997,1077,1076;, +3;998,1078,1077;, +3;999,1079,1078;, +3;1000,1080,1079;, +3;1001,1081,1080;, +3;1002,1082,1081;, +3;1003,1083,1082;, +3;1004,1084,1083;, +3;1005,1085,1084;, +3;1006,1086,1085;, +3;1007,1087,1086;, +3;1008,1088,1087;, +3;1009,1089,1088;, +3;1010,1090,1089;, +3;1011,1091,1090;, +3;1012,1092,1091;, +3;1013,1093,1092;, +3;1014,1094,1093;, +3;1015,1095,1094;, +3;1016,1096,1095;, +3;1017,1097,1096;, +3;1018,1098,1097;, +3;1019,1099,1098;, +3;1020,1100,1099;, +3;1021,1101,1100;, +3;1022,1102,1101;, +3;1023,1103,1102;, +3;1024,1104,1103;, +3;1025,1105,1104;, +3;1026,1106,1105;, +3;1027,1107,1106;, +3;1028,1108,1107;, +3;1029,1109,1108;, +3;1030,1110,1109;, +3;1031,1111,1110;, +3;1032,1112,1111;, +3;1033,1113,1112;, +3;1034,1114,1113;, +3;1035,1115,1114;, +3;1036,1116,1115;, +3;1037,1117,1116;, +3;1038,1118,1117;, +3;1039,1119,1118;, +3;1040,1120,1119;, +3;1698,1699,1120;, +3;1042,1122,1121;, +3;1043,1123,1122;, +3;1044,1124,1123;, +3;1045,1125,1124;, +3;1046,1126,1125;, +3;1047,1127,1126;, +3;1048,1128,1127;, +3;1049,1129,1128;, +3;1050,1130,1129;, +3;1051,1131,1130;, +3;1052,1132,1131;, +3;1053,1133,1132;, +3;1054,1134,1133;, +3;1055,1135,1134;, +3;1056,1136,1135;, +3;1057,1137,1136;, +3;1058,1138,1137;, +3;1059,1139,1138;, +3;1060,1140,1139;, +3;1061,1141,1140;, +3;1062,1142,1141;, +3;1063,1143,1142;, +3;1064,1144,1143;, +3;1065,1145,1144;, +3;1066,1146,1145;, +3;1067,1147,1146;, +3;1068,1148,1147;, +3;1069,1149,1148;, +3;1070,1150,1149;, +3;1071,1151,1150;, +3;1072,1152,1151;, +3;1073,1153,1152;, +3;1074,1154,1153;, +3;1075,1155,1154;, +3;1076,1156,1155;, +3;1077,1157,1156;, +3;1078,1158,1157;, +3;1079,1159,1158;, +3;1080,1160,1159;, +3;1081,1161,1160;, +3;1082,1162,1161;, +3;1083,1163,1162;, +3;1084,1164,1163;, +3;1085,1165,1164;, +3;1086,1166,1165;, +3;1087,1167,1166;, +3;1088,1168,1167;, +3;1089,1169,1168;, +3;1090,1170,1169;, +3;1091,1171,1170;, +3;1092,1172,1171;, +3;1093,1173,1172;, +3;1094,1174,1173;, +3;1095,1175,1174;, +3;1096,1176,1175;, +3;1097,1177,1176;, +3;1098,1178,1177;, +3;1099,1179,1178;, +3;1100,1180,1179;, +3;1101,1181,1180;, +3;1102,1182,1181;, +3;1103,1183,1182;, +3;1104,1184,1183;, +3;1105,1185,1184;, +3;1106,1186,1185;, +3;1107,1187,1186;, +3;1108,1188,1187;, +3;1109,1189,1188;, +3;1110,1190,1189;, +3;1111,1191,1190;, +3;1112,1192,1191;, +3;1113,1193,1192;, +3;1114,1194,1193;, +3;1115,1195,1194;, +3;1116,1196,1195;, +3;1117,1197,1196;, +3;1118,1198,1197;, +3;1119,1199,1198;, +3;1120,1200,1199;, +3;1699,1700,1200;, +3;1122,1202,1201;, +3;1123,1203,1202;, +3;1124,1204,1203;, +3;1125,1205,1204;, +3;1126,1206,1205;, +3;1127,1207,1206;, +3;1128,1208,1207;, +3;1129,1209,1208;, +3;1130,1210,1209;, +3;1131,1211,1210;, +3;1132,1212,1211;, +3;1133,1213,1212;, +3;1134,1214,1213;, +3;1135,1215,1214;, +3;1136,1216,1215;, +3;1137,1217,1216;, +3;1138,1218,1217;, +3;1139,1219,1218;, +3;1140,1220,1219;, +3;1141,1221,1220;, +3;1142,1222,1221;, +3;1143,1223,1222;, +3;1144,1224,1223;, +3;1145,1225,1224;, +3;1146,1226,1225;, +3;1147,1227,1226;, +3;1148,1228,1227;, +3;1149,1229,1228;, +3;1150,1230,1229;, +3;1151,1231,1230;, +3;1152,1232,1231;, +3;1153,1233,1232;, +3;1154,1234,1233;, +3;1155,1235,1234;, +3;1156,1236,1235;, +3;1157,1237,1236;, +3;1158,1238,1237;, +3;1159,1239,1238;, +3;1160,1240,1239;, +3;1161,1241,1240;, +3;1162,1242,1241;, +3;1163,1243,1242;, +3;1164,1244,1243;, +3;1165,1245,1244;, +3;1166,1246,1245;, +3;1167,1247,1246;, +3;1168,1248,1247;, +3;1169,1249,1248;, +3;1170,1250,1249;, +3;1171,1251,1250;, +3;1172,1252,1251;, +3;1173,1253,1252;, +3;1174,1254,1253;, +3;1175,1255,1254;, +3;1176,1256,1255;, +3;1177,1257,1256;, +3;1178,1258,1257;, +3;1179,1259,1258;, +3;1180,1260,1259;, +3;1181,1261,1260;, +3;1182,1262,1261;, +3;1183,1263,1262;, +3;1184,1264,1263;, +3;1185,1265,1264;, +3;1186,1266,1265;, +3;1187,1267,1266;, +3;1188,1268,1267;, +3;1189,1269,1268;, +3;1190,1270,1269;, +3;1191,1271,1270;, +3;1192,1272,1271;, +3;1193,1273,1272;, +3;1194,1274,1273;, +3;1195,1275,1274;, +3;1196,1276,1275;, +3;1197,1277,1276;, +3;1198,1278,1277;, +3;1199,1279,1278;, +3;1200,1280,1279;, +3;1700,1701,1280;, +3;1202,1282,1281;, +3;1203,1283,1282;, +3;1204,1284,1283;, +3;1205,1285,1284;, +3;1206,1286,1285;, +3;1207,1287,1286;, +3;1208,1288,1287;, +3;1209,1289,1288;, +3;1210,1290,1289;, +3;1211,1291,1290;, +3;1212,1292,1291;, +3;1213,1293,1292;, +3;1214,1294,1293;, +3;1215,1295,1294;, +3;1216,1296,1295;, +3;1217,1297,1296;, +3;1218,1298,1297;, +3;1219,1299,1298;, +3;1220,1300,1299;, +3;1221,1301,1300;, +3;1222,1302,1301;, +3;1223,1303,1302;, +3;1224,1304,1303;, +3;1225,1305,1304;, +3;1226,1306,1305;, +3;1227,1307,1306;, +3;1228,1308,1307;, +3;1229,1309,1308;, +3;1230,1310,1309;, +3;1231,1311,1310;, +3;1232,1312,1311;, +3;1233,1313,1312;, +3;1234,1314,1313;, +3;1235,1315,1314;, +3;1236,1316,1315;, +3;1237,1317,1316;, +3;1238,1318,1317;, +3;1239,1319,1318;, +3;1240,1320,1319;, +3;1241,1321,1320;, +3;1242,1322,1321;, +3;1243,1323,1322;, +3;1244,1324,1323;, +3;1245,1325,1324;, +3;1246,1326,1325;, +3;1247,1327,1326;, +3;1248,1328,1327;, +3;1249,1329,1328;, +3;1250,1330,1329;, +3;1251,1331,1330;, +3;1252,1332,1331;, +3;1253,1333,1332;, +3;1254,1334,1333;, +3;1255,1335,1334;, +3;1256,1336,1335;, +3;1257,1337,1336;, +3;1258,1338,1337;, +3;1259,1339,1338;, +3;1260,1340,1339;, +3;1261,1341,1340;, +3;1262,1342,1341;, +3;1263,1343,1342;, +3;1264,1344,1343;, +3;1265,1345,1344;, +3;1266,1346,1345;, +3;1267,1347,1346;, +3;1268,1348,1347;, +3;1269,1349,1348;, +3;1270,1350,1349;, +3;1271,1351,1350;, +3;1272,1352,1351;, +3;1273,1353,1352;, +3;1274,1354,1353;, +3;1275,1355,1354;, +3;1276,1356,1355;, +3;1277,1357,1356;, +3;1278,1358,1357;, +3;1279,1359,1358;, +3;1280,1360,1359;, +3;1701,1702,1360;, +3;1282,1362,1361;, +3;1283,1363,1362;, +3;1284,1364,1363;, +3;1285,1365,1364;, +3;1286,1366,1365;, +3;1287,1367,1366;, +3;1288,1368,1367;, +3;1289,1369,1368;, +3;1290,1370,1369;, +3;1291,1371,1370;, +3;1292,1372,1371;, +3;1293,1373,1372;, +3;1294,1374,1373;, +3;1295,1375,1374;, +3;1296,1376,1375;, +3;1297,1377,1376;, +3;1298,1378,1377;, +3;1299,1379,1378;, +3;1300,1380,1379;, +3;1301,1381,1380;, +3;1302,1382,1381;, +3;1303,1383,1382;, +3;1304,1384,1383;, +3;1305,1385,1384;, +3;1306,1386,1385;, +3;1307,1387,1386;, +3;1308,1388,1387;, +3;1309,1389,1388;, +3;1310,1390,1389;, +3;1311,1391,1390;, +3;1312,1392,1391;, +3;1313,1393,1392;, +3;1314,1394,1393;, +3;1315,1395,1394;, +3;1316,1396,1395;, +3;1317,1397,1396;, +3;1318,1398,1397;, +3;1319,1399,1398;, +3;1320,1400,1399;, +3;1321,1401,1400;, +3;1322,1402,1401;, +3;1323,1403,1402;, +3;1324,1404,1403;, +3;1325,1405,1404;, +3;1326,1406,1405;, +3;1327,1407,1406;, +3;1328,1408,1407;, +3;1329,1409,1408;, +3;1330,1410,1409;, +3;1331,1411,1410;, +3;1332,1412,1411;, +3;1333,1413,1412;, +3;1334,1414,1413;, +3;1335,1415,1414;, +3;1336,1416,1415;, +3;1337,1417,1416;, +3;1338,1418,1417;, +3;1339,1419,1418;, +3;1340,1420,1419;, +3;1341,1421,1420;, +3;1342,1422,1421;, +3;1343,1423,1422;, +3;1344,1424,1423;, +3;1345,1425,1424;, +3;1346,1426,1425;, +3;1347,1427,1426;, +3;1348,1428,1427;, +3;1349,1429,1428;, +3;1350,1430,1429;, +3;1351,1431,1430;, +3;1352,1432,1431;, +3;1353,1433,1432;, +3;1354,1434,1433;, +3;1355,1435,1434;, +3;1356,1436,1435;, +3;1357,1437,1436;, +3;1358,1438,1437;, +3;1359,1439,1438;, +3;1360,1440,1439;, +3;1702,1703,1440;, +3;1362,1442,1441;, +3;1363,1443,1442;, +3;1364,1444,1443;, +3;1365,1445,1444;, +3;1366,1446,1445;, +3;1367,1447,1446;, +3;1368,1448,1447;, +3;1369,1449,1448;, +3;1370,1450,1449;, +3;1371,1451,1450;, +3;1372,1452,1451;, +3;1373,1453,1452;, +3;1374,1454,1453;, +3;1375,1455,1454;, +3;1376,1456,1455;, +3;1377,1457,1456;, +3;1378,1458,1457;, +3;1379,1459,1458;, +3;1380,1460,1459;, +3;1381,1461,1460;, +3;1382,1462,1461;, +3;1383,1463,1462;, +3;1384,1464,1463;, +3;1385,1465,1464;, +3;1386,1466,1465;, +3;1387,1467,1466;, +3;1388,1468,1467;, +3;1389,1469,1468;, +3;1390,1470,1469;, +3;1391,1471,1470;, +3;1392,1472,1471;, +3;1393,1473,1472;, +3;1394,1474,1473;, +3;1395,1475,1474;, +3;1396,1476,1475;, +3;1397,1477,1476;, +3;1398,1478,1477;, +3;1399,1479,1478;, +3;1400,1480,1479;, +3;1401,1481,1480;, +3;1402,1482,1481;, +3;1403,1483,1482;, +3;1404,1484,1483;, +3;1405,1485,1484;, +3;1406,1486,1485;, +3;1407,1487,1486;, +3;1408,1488,1487;, +3;1409,1489,1488;, +3;1410,1490,1489;, +3;1411,1491,1490;, +3;1412,1492,1491;, +3;1413,1493,1492;, +3;1414,1494,1493;, +3;1415,1495,1494;, +3;1416,1496,1495;, +3;1417,1497,1496;, +3;1418,1498,1497;, +3;1419,1499,1498;, +3;1420,1500,1499;, +3;1421,1501,1500;, +3;1422,1502,1501;, +3;1423,1503,1502;, +3;1424,1504,1503;, +3;1425,1505,1504;, +3;1426,1506,1505;, +3;1427,1507,1506;, +3;1428,1508,1507;, +3;1429,1509,1508;, +3;1430,1510,1509;, +3;1431,1511,1510;, +3;1432,1512,1511;, +3;1433,1513,1512;, +3;1434,1514,1513;, +3;1435,1515,1514;, +3;1436,1516,1515;, +3;1437,1517,1516;, +3;1438,1518,1517;, +3;1439,1519,1518;, +3;1440,1520,1519;, +3;1703,1704,1520;, +3;1442,1522,1521;, +3;1443,1523,1522;, +3;1444,1524,1523;, +3;1445,1525,1524;, +3;1446,1526,1525;, +3;1447,1527,1526;, +3;1448,1528,1527;, +3;1449,1529,1528;, +3;1450,1530,1529;, +3;1451,1531,1530;, +3;1452,1532,1531;, +3;1453,1533,1532;, +3;1454,1534,1533;, +3;1455,1535,1534;, +3;1456,1536,1535;, +3;1457,1537,1536;, +3;1458,1538,1537;, +3;1459,1539,1538;, +3;1460,1540,1539;, +3;1461,1541,1540;, +3;1462,1542,1541;, +3;1463,1543,1542;, +3;1464,1544,1543;, +3;1465,1545,1544;, +3;1466,1546,1545;, +3;1467,1547,1546;, +3;1468,1548,1547;, +3;1469,1549,1548;, +3;1470,1550,1549;, +3;1471,1551,1550;, +3;1472,1552,1551;, +3;1473,1553,1552;, +3;1474,1554,1553;, +3;1475,1555,1554;, +3;1476,1556,1555;, +3;1477,1557,1556;, +3;1478,1558,1557;, +3;1479,1559,1558;, +3;1480,1560,1559;, +3;1481,1561,1560;, +3;1482,1562,1561;, +3;1483,1563,1562;, +3;1484,1564,1563;, +3;1485,1565,1564;, +3;1486,1566,1565;, +3;1487,1567,1566;, +3;1488,1568,1567;, +3;1489,1569,1568;, +3;1490,1570,1569;, +3;1491,1571,1570;, +3;1492,1572,1571;, +3;1493,1573,1572;, +3;1494,1574,1573;, +3;1495,1575,1574;, +3;1496,1576,1575;, +3;1497,1577,1576;, +3;1498,1578,1577;, +3;1499,1579,1578;, +3;1500,1580,1579;, +3;1501,1581,1580;, +3;1502,1582,1581;, +3;1503,1583,1582;, +3;1504,1584,1583;, +3;1505,1585,1584;, +3;1506,1586,1585;, +3;1507,1587,1586;, +3;1508,1588,1587;, +3;1509,1589,1588;, +3;1510,1590,1589;, +3;1511,1591,1590;, +3;1512,1592,1591;, +3;1513,1593,1592;, +3;1514,1594,1593;, +3;1515,1595,1594;, +3;1516,1596,1595;, +3;1517,1597,1596;, +3;1518,1598,1597;, +3;1519,1599,1598;, +3;1520,1600,1599;, +3;1704,1705,1600;, +3;0,1521,1522;, +3;0,1522,1523;, +3;0,1523,1524;, +3;0,1524,1525;, +3;0,1525,1526;, +3;0,1526,1527;, +3;0,1527,1528;, +3;0,1528,1529;, +3;0,1529,1530;, +3;0,1530,1531;, +3;0,1531,1532;, +3;0,1532,1533;, +3;0,1533,1534;, +3;0,1534,1535;, +3;0,1535,1536;, +3;0,1536,1537;, +3;0,1537,1538;, +3;0,1538,1539;, +3;0,1539,1540;, +3;0,1540,1541;, +3;0,1541,1542;, +3;0,1542,1543;, +3;0,1543,1544;, +3;0,1544,1545;, +3;0,1545,1546;, +3;0,1546,1547;, +3;0,1547,1548;, +3;0,1548,1549;, +3;0,1549,1550;, +3;0,1550,1551;, +3;0,1551,1552;, +3;0,1552,1553;, +3;0,1553,1554;, +3;0,1554,1555;, +3;0,1555,1556;, +3;0,1556,1557;, +3;0,1557,1558;, +3;0,1558,1559;, +3;0,1559,1560;, +3;0,1560,1561;, +3;0,1561,1562;, +3;0,1562,1563;, +3;0,1563,1564;, +3;0,1564,1565;, +3;0,1565,1566;, +3;0,1566,1567;, +3;0,1567,1568;, +3;0,1568,1569;, +3;0,1569,1570;, +3;0,1570,1571;, +3;0,1571,1572;, +3;0,1572,1573;, +3;0,1573,1574;, +3;0,1574,1575;, +3;0,1575,1576;, +3;0,1576,1577;, +3;0,1577,1578;, +3;0,1578,1579;, +3;0,1579,1580;, +3;0,1580,1581;, +3;0,1581,1582;, +3;0,1582,1583;, +3;0,1583,1584;, +3;0,1584,1585;, +3;0,1585,1586;, +3;0,1586,1587;, +3;0,1587,1588;, +3;0,1588,1589;, +3;0,1589,1590;, +3;0,1590,1591;, +3;0,1591,1592;, +3;0,1592,1593;, +3;0,1593,1594;, +3;0,1594,1595;, +3;0,1595,1596;, +3;1681,1596,1597;, +3;1682,1597,1598;, +3;1683,1598,1599;, +3;1684,1599,1600;, +3;1685,1600,1705;, +3;2,81,1686;, +3;3,82,2;, +3;4,83,3;, +3;5,84,4;, +3;6,85,5;, +3;7,86,6;, +3;8,87,7;, +3;9,88,8;, +3;10,89,9;, +3;11,90,10;, +3;12,91,11;, +3;13,92,12;, +3;14,93,13;, +3;15,94,14;, +3;16,95,15;, +3;17,96,16;, +3;18,97,17;, +3;19,98,18;, +3;20,99,19;, +3;100,21,101;, +3;102,21,1603;, +3;23,102,22;, +3;24,103,23;, +3;25,104,24;, +3;26,105,25;, +3;27,106,26;, +3;28,107,27;, +3;29,108,28;, +3;30,109,29;, +3;31,110,30;, +3;32,111,31;, +3;33,112,32;, +3;34,113,33;, +3;35,114,34;, +3;36,115,35;, +3;37,116,36;, +3;38,117,37;, +3;39,118,38;, +3;40,119,39;, +3;41,120,40;, +3;42,121,41;, +3;43,122,42;, +3;44,123,43;, +3;45,124,44;, +3;46,125,45;, +3;47,126,46;, +3;48,127,47;, +3;49,128,48;, +3;50,129,49;, +3;51,130,50;, +3;52,131,51;, +3;53,132,52;, +3;54,133,53;, +3;55,134,54;, +3;56,135,55;, +3;57,136,56;, +3;58,137,57;, +3;59,138,58;, +3;60,139,59;, +3;140,61,141;, +3;142,61,1606;, +3;63,142,62;, +3;64,143,63;, +3;65,144,64;, +3;66,145,65;, +3;67,146,66;, +3;68,147,67;, +3;69,148,68;, +3;70,149,69;, +3;71,150,70;, +3;72,151,71;, +3;73,152,72;, +3;74,153,73;, +3;75,154,74;, +3;76,155,75;, +3;77,156,76;, +3;78,157,77;, +3;79,158,78;, +3;80,159,79;, +3;1,160,80;, +3;82,161,81;, +3;83,162,82;, +3;84,163,83;, +3;85,164,84;, +3;86,165,85;, +3;87,166,86;, +3;88,167,87;, +3;89,168,88;, +3;90,169,89;, +3;91,170,90;, +3;92,171,91;, +3;93,172,92;, +3;94,173,93;, +3;95,174,94;, +3;96,175,95;, +3;97,176,96;, +3;98,177,97;, +3;99,178,98;, +3;100,179,99;, +3;101,180,100;, +3;102,181,101;, +3;103,182,102;, +3;104,183,103;, +3;105,184,104;, +3;106,185,105;, +3;107,186,106;, +3;108,187,107;, +3;109,188,108;, +3;110,189,109;, +3;111,190,110;, +3;112,191,111;, +3;113,192,112;, +3;114,193,113;, +3;115,194,114;, +3;116,195,115;, +3;117,196,116;, +3;118,197,117;, +3;119,198,118;, +3;120,199,119;, +3;121,200,120;, +3;122,201,121;, +3;123,202,122;, +3;124,203,123;, +3;125,204,124;, +3;126,205,125;, +3;127,206,126;, +3;128,207,127;, +3;129,208,128;, +3;130,209,129;, +3;131,210,130;, +3;132,211,131;, +3;133,212,132;, +3;134,213,133;, +3;135,214,134;, +3;136,215,135;, +3;137,216,136;, +3;138,217,137;, +3;139,218,138;, +3;140,219,139;, +3;141,220,140;, +3;142,221,141;, +3;143,222,142;, +3;144,223,143;, +3;145,224,144;, +3;146,225,145;, +3;147,226,146;, +3;148,227,147;, +3;149,228,148;, +3;150,229,149;, +3;151,230,150;, +3;152,231,151;, +3;153,232,152;, +3;154,233,153;, +3;155,234,154;, +3;156,235,155;, +3;157,236,156;, +3;158,237,157;, +3;159,238,158;, +3;160,239,159;, +3;1687,240,160;, +3;162,241,161;, +3;163,242,162;, +3;164,243,163;, +3;165,244,164;, +3;166,245,165;, +3;167,246,166;, +3;168,247,167;, +3;169,248,168;, +3;170,249,169;, +3;171,250,170;, +3;172,251,171;, +3;173,252,172;, +3;174,253,173;, +3;175,254,174;, +3;176,255,175;, +3;177,256,176;, +3;178,257,177;, +3;179,258,178;, +3;180,259,179;, +3;181,260,180;, +3;182,261,181;, +3;183,262,182;, +3;184,263,183;, +3;185,264,184;, +3;186,265,185;, +3;187,266,186;, +3;188,267,187;, +3;189,268,188;, +3;190,269,189;, +3;191,270,190;, +3;192,271,191;, +3;193,272,192;, +3;194,273,193;, +3;195,274,194;, +3;196,275,195;, +3;197,276,196;, +3;198,277,197;, +3;199,278,198;, +3;200,279,199;, +3;201,280,200;, +3;202,281,201;, +3;203,282,202;, +3;204,283,203;, +3;205,284,204;, +3;206,285,205;, +3;207,286,206;, +3;208,287,207;, +3;209,288,208;, +3;210,289,209;, +3;211,290,210;, +3;212,291,211;, +3;213,292,212;, +3;214,293,213;, +3;215,294,214;, +3;216,295,215;, +3;217,296,216;, +3;218,297,217;, +3;219,298,218;, +3;220,299,219;, +3;221,300,220;, +3;222,301,221;, +3;223,302,222;, +3;224,303,223;, +3;225,304,224;, +3;226,305,225;, +3;227,306,226;, +3;228,307,227;, +3;229,308,228;, +3;230,309,229;, +3;231,310,230;, +3;232,311,231;, +3;233,312,232;, +3;234,313,233;, +3;235,314,234;, +3;236,315,235;, +3;237,316,236;, +3;238,317,237;, +3;239,318,238;, +3;240,319,239;, +3;1688,320,240;, +3;242,321,241;, +3;243,322,242;, +3;244,323,243;, +3;245,324,244;, +3;246,325,245;, +3;247,326,246;, +3;248,327,247;, +3;249,328,248;, +3;250,329,249;, +3;251,330,250;, +3;252,331,251;, +3;253,332,252;, +3;254,333,253;, +3;255,334,254;, +3;256,335,255;, +3;257,336,256;, +3;258,337,257;, +3;259,338,258;, +3;260,339,259;, +3;261,340,260;, +3;262,341,261;, +3;263,342,262;, +3;264,343,263;, +3;265,344,264;, +3;266,345,265;, +3;267,346,266;, +3;268,347,267;, +3;269,348,268;, +3;270,349,269;, +3;271,350,270;, +3;272,351,271;, +3;273,352,272;, +3;274,353,273;, +3;275,354,274;, +3;276,355,275;, +3;277,356,276;, +3;278,357,277;, +3;279,358,278;, +3;280,359,279;, +3;281,360,280;, +3;282,361,281;, +3;283,362,282;, +3;284,363,283;, +3;285,364,284;, +3;286,365,285;, +3;287,366,286;, +3;288,367,287;, +3;289,368,288;, +3;290,369,289;, +3;291,370,290;, +3;292,371,291;, +3;293,372,292;, +3;294,373,293;, +3;295,374,294;, +3;296,375,295;, +3;297,376,296;, +3;298,377,297;, +3;299,378,298;, +3;300,379,299;, +3;301,380,300;, +3;302,381,301;, +3;303,382,302;, +3;304,383,303;, +3;305,384,304;, +3;306,385,305;, +3;307,386,306;, +3;308,387,307;, +3;309,388,308;, +3;310,389,309;, +3;311,390,310;, +3;312,391,311;, +3;313,392,312;, +3;314,393,313;, +3;315,394,314;, +3;316,395,315;, +3;317,396,316;, +3;318,397,317;, +3;319,398,318;, +3;320,399,319;, +3;1689,400,320;, +3;322,401,321;, +3;323,402,322;, +3;324,403,323;, +3;325,404,324;, +3;326,405,325;, +3;327,406,326;, +3;328,407,327;, +3;329,408,328;, +3;330,409,329;, +3;331,410,330;, +3;332,411,331;, +3;333,412,332;, +3;334,413,333;, +3;335,414,334;, +3;336,415,335;, +3;337,416,336;, +3;338,417,337;, +3;339,418,338;, +3;340,419,339;, +3;341,420,340;, +3;342,421,341;, +3;343,422,342;, +3;344,423,343;, +3;345,424,344;, +3;346,425,345;, +3;347,426,346;, +3;348,427,347;, +3;349,428,348;, +3;350,429,349;, +3;351,430,350;, +3;352,431,351;, +3;353,432,352;, +3;354,433,353;, +3;355,434,354;, +3;356,435,355;, +3;357,436,356;, +3;358,437,357;, +3;359,438,358;, +3;360,439,359;, +3;361,440,360;, +3;362,441,361;, +3;363,442,362;, +3;364,443,363;, +3;365,444,364;, +3;366,445,365;, +3;367,446,366;, +3;368,447,367;, +3;369,448,368;, +3;370,449,369;, +3;371,450,370;, +3;372,451,371;, +3;373,452,372;, +3;374,453,373;, +3;375,454,374;, +3;376,455,375;, +3;377,456,376;, +3;378,457,377;, +3;379,458,378;, +3;380,459,379;, +3;381,460,380;, +3;382,461,381;, +3;383,462,382;, +3;384,463,383;, +3;385,464,384;, +3;386,465,385;, +3;387,466,386;, +3;388,467,387;, +3;389,468,388;, +3;390,469,389;, +3;391,470,390;, +3;392,471,391;, +3;393,472,392;, +3;394,473,393;, +3;395,474,394;, +3;396,475,395;, +3;397,476,396;, +3;398,477,397;, +3;399,478,398;, +3;400,479,399;, +3;1690,480,400;, +3;402,481,401;, +3;403,482,402;, +3;404,483,403;, +3;405,484,404;, +3;406,485,405;, +3;407,486,406;, +3;408,487,407;, +3;409,488,408;, +3;410,489,409;, +3;411,490,410;, +3;412,491,411;, +3;413,492,412;, +3;414,493,413;, +3;415,494,414;, +3;416,495,415;, +3;417,496,416;, +3;418,497,417;, +3;419,498,418;, +3;420,499,419;, +3;421,500,420;, +3;422,501,421;, +3;423,502,422;, +3;424,503,423;, +3;425,504,424;, +3;426,505,425;, +3;427,506,426;, +3;428,507,427;, +3;429,508,428;, +3;430,509,429;, +3;431,510,430;, +3;432,511,431;, +3;433,512,432;, +3;434,513,433;, +3;435,514,434;, +3;436,515,435;, +3;437,516,436;, +3;438,517,437;, +3;439,518,438;, +3;440,519,439;, +3;441,520,440;, +3;442,521,441;, +3;443,522,442;, +3;444,523,443;, +3;445,524,444;, +3;446,525,445;, +3;447,526,446;, +3;448,527,447;, +3;449,528,448;, +3;450,529,449;, +3;451,530,450;, +3;452,531,451;, +3;453,532,452;, +3;454,533,453;, +3;455,534,454;, +3;456,535,455;, +3;457,536,456;, +3;458,537,457;, +3;459,538,458;, +3;460,539,459;, +3;461,540,460;, +3;462,541,461;, +3;463,542,462;, +3;464,543,463;, +3;465,544,464;, +3;466,545,465;, +3;467,546,466;, +3;468,547,467;, +3;469,548,468;, +3;470,549,469;, +3;471,550,470;, +3;472,551,471;, +3;473,552,472;, +3;474,553,473;, +3;475,554,474;, +3;476,555,475;, +3;477,556,476;, +3;478,557,477;, +3;479,558,478;, +3;480,559,479;, +3;1691,560,480;, +3;482,561,481;, +3;483,562,482;, +3;484,563,483;, +3;485,564,484;, +3;486,565,485;, +3;487,566,486;, +3;488,567,487;, +3;489,568,488;, +3;490,569,489;, +3;491,570,490;, +3;492,571,491;, +3;493,572,492;, +3;494,573,493;, +3;495,574,494;, +3;496,575,495;, +3;497,576,496;, +3;498,577,497;, +3;499,578,498;, +3;500,579,499;, +3;501,580,500;, +3;502,581,501;, +3;503,582,502;, +3;504,583,503;, +3;505,584,504;, +3;506,585,505;, +3;507,586,506;, +3;508,587,507;, +3;509,588,508;, +3;510,589,509;, +3;511,590,510;, +3;512,591,511;, +3;513,592,512;, +3;514,593,513;, +3;515,594,514;, +3;516,595,515;, +3;517,596,516;, +3;518,597,517;, +3;519,598,518;, +3;520,599,519;, +3;521,600,520;, +3;522,601,521;, +3;523,602,522;, +3;524,603,523;, +3;525,604,524;, +3;526,605,525;, +3;527,606,526;, +3;528,607,527;, +3;529,608,528;, +3;530,609,529;, +3;531,610,530;, +3;532,611,531;, +3;533,612,532;, +3;534,613,533;, +3;535,614,534;, +3;536,615,535;, +3;537,616,536;, +3;538,617,537;, +3;539,618,538;, +3;540,619,539;, +3;541,620,540;, +3;542,621,541;, +3;543,622,542;, +3;544,623,543;, +3;545,624,544;, +3;546,625,545;, +3;547,626,546;, +3;548,627,547;, +3;549,628,548;, +3;550,629,549;, +3;551,630,550;, +3;552,631,551;, +3;553,632,552;, +3;554,633,553;, +3;555,634,554;, +3;556,635,555;, +3;557,636,556;, +3;558,637,557;, +3;559,638,558;, +3;560,639,559;, +3;1692,640,560;, +3;562,641,561;, +3;563,642,562;, +3;564,643,563;, +3;565,644,564;, +3;566,645,565;, +3;567,646,566;, +3;568,647,567;, +3;569,648,568;, +3;570,649,569;, +3;571,650,570;, +3;572,651,571;, +3;573,652,572;, +3;574,653,573;, +3;575,654,574;, +3;576,655,575;, +3;577,656,576;, +3;578,657,577;, +3;579,658,578;, +3;580,659,579;, +3;581,660,580;, +3;582,661,581;, +3;583,662,582;, +3;584,663,583;, +3;585,664,584;, +3;586,665,585;, +3;587,666,586;, +3;588,667,587;, +3;589,668,588;, +3;590,669,589;, +3;591,670,590;, +3;592,671,591;, +3;593,672,592;, +3;594,673,593;, +3;595,674,594;, +3;596,675,595;, +3;597,676,596;, +3;598,677,597;, +3;599,678,598;, +3;600,679,599;, +3;601,680,600;, +3;602,681,601;, +3;603,682,602;, +3;604,683,603;, +3;605,684,604;, +3;606,685,605;, +3;607,686,606;, +3;608,687,607;, +3;609,688,608;, +3;610,689,609;, +3;611,690,610;, +3;612,691,611;, +3;613,692,612;, +3;614,693,613;, +3;615,694,614;, +3;616,695,615;, +3;617,696,616;, +3;618,697,617;, +3;619,698,618;, +3;620,699,619;, +3;621,700,620;, +3;622,701,621;, +3;623,702,622;, +3;624,703,623;, +3;625,704,624;, +3;626,705,625;, +3;627,706,626;, +3;628,707,627;, +3;629,708,628;, +3;630,709,629;, +3;631,710,630;, +3;632,711,631;, +3;633,712,632;, +3;634,713,633;, +3;635,714,634;, +3;636,715,635;, +3;637,716,636;, +3;638,717,637;, +3;639,718,638;, +3;640,719,639;, +3;1693,720,640;, +3;642,721,641;, +3;643,722,642;, +3;644,723,643;, +3;645,724,644;, +3;646,725,645;, +3;647,726,646;, +3;648,727,647;, +3;649,728,648;, +3;650,729,649;, +3;651,730,650;, +3;652,731,651;, +3;653,732,652;, +3;654,733,653;, +3;655,734,654;, +3;656,735,655;, +3;657,736,656;, +3;658,737,657;, +3;659,738,658;, +3;660,739,659;, +3;661,740,660;, +3;662,741,661;, +3;663,742,662;, +3;664,743,663;, +3;665,744,664;, +3;666,745,665;, +3;667,746,666;, +3;668,747,667;, +3;669,748,668;, +3;670,749,669;, +3;671,750,670;, +3;672,751,671;, +3;673,752,672;, +3;674,753,673;, +3;675,754,674;, +3;676,755,675;, +3;677,756,676;, +3;678,757,677;, +3;679,758,678;, +3;680,759,679;, +3;681,760,680;, +3;682,761,681;, +3;683,762,682;, +3;684,763,683;, +3;685,764,684;, +3;686,765,685;, +3;687,766,686;, +3;688,767,687;, +3;689,768,688;, +3;690,769,689;, +3;691,770,690;, +3;692,771,691;, +3;693,772,692;, +3;694,773,693;, +3;695,774,694;, +3;696,775,695;, +3;697,776,696;, +3;698,777,697;, +3;699,778,698;, +3;700,779,699;, +3;701,780,700;, +3;702,781,701;, +3;703,782,702;, +3;704,783,703;, +3;705,784,704;, +3;706,785,705;, +3;707,786,706;, +3;708,787,707;, +3;709,788,708;, +3;710,789,709;, +3;711,790,710;, +3;712,791,711;, +3;713,792,712;, +3;714,793,713;, +3;715,794,714;, +3;716,795,715;, +3;717,796,716;, +3;718,797,717;, +3;719,798,718;, +3;720,799,719;, +3;1694,800,720;, +3;722,801,721;, +3;723,802,722;, +3;724,803,723;, +3;725,804,724;, +3;726,805,725;, +3;727,806,726;, +3;728,807,727;, +3;729,808,728;, +3;730,809,729;, +3;731,810,730;, +3;732,811,731;, +3;733,812,732;, +3;734,813,733;, +3;735,814,734;, +3;736,815,735;, +3;737,816,736;, +3;738,817,737;, +3;739,818,738;, +3;740,819,739;, +3;741,820,740;, +3;742,821,741;, +3;743,822,742;, +3;744,823,743;, +3;745,824,744;, +3;746,825,745;, +3;747,826,746;, +3;748,827,747;, +3;749,828,748;, +3;750,829,749;, +3;751,830,750;, +3;752,831,751;, +3;753,832,752;, +3;754,833,753;, +3;755,834,754;, +3;756,835,755;, +3;757,836,756;, +3;758,837,757;, +3;759,838,758;, +3;760,839,759;, +3;761,840,760;, +3;762,841,761;, +3;763,842,762;, +3;764,843,763;, +3;765,844,764;, +3;766,845,765;, +3;767,846,766;, +3;768,847,767;, +3;769,848,768;, +3;770,849,769;, +3;771,850,770;, +3;772,851,771;, +3;773,852,772;, +3;774,853,773;, +3;775,854,774;, +3;776,855,775;, +3;777,856,776;, +3;778,857,777;, +3;779,858,778;, +3;780,859,779;, +3;781,860,780;, +3;782,861,781;, +3;783,862,782;, +3;784,863,783;, +3;785,864,784;, +3;786,865,785;, +3;787,866,786;, +3;788,867,787;, +3;789,868,788;, +3;790,869,789;, +3;791,870,790;, +3;792,871,791;, +3;793,872,792;, +3;794,873,793;, +3;795,874,794;, +3;796,875,795;, +3;797,876,796;, +3;798,877,797;, +3;799,878,798;, +3;800,879,799;, +3;1695,880,800;, +3;802,881,801;, +3;803,882,802;, +3;804,883,803;, +3;805,884,804;, +3;806,885,805;, +3;807,886,806;, +3;808,887,807;, +3;809,888,808;, +3;810,889,809;, +3;811,890,810;, +3;812,891,811;, +3;813,892,812;, +3;814,893,813;, +3;815,894,814;, +3;816,895,815;, +3;817,896,816;, +3;818,897,817;, +3;819,898,818;, +3;820,899,819;, +3;821,900,820;, +3;822,901,821;, +3;823,902,822;, +3;824,903,823;, +3;825,904,824;, +3;826,905,825;, +3;827,906,826;, +3;828,907,827;, +3;829,908,828;, +3;830,909,829;, +3;831,910,830;, +3;832,911,831;, +3;833,912,832;, +3;834,913,833;, +3;835,914,834;, +3;836,915,835;, +3;837,916,836;, +3;838,917,837;, +3;839,918,838;, +3;840,919,839;, +3;841,920,840;, +3;842,921,841;, +3;843,922,842;, +3;844,923,843;, +3;845,924,844;, +3;846,925,845;, +3;847,926,846;, +3;848,927,847;, +3;849,928,848;, +3;850,929,849;, +3;851,930,850;, +3;852,931,851;, +3;853,932,852;, +3;854,933,853;, +3;855,934,854;, +3;856,935,855;, +3;857,936,856;, +3;858,937,857;, +3;859,938,858;, +3;860,939,859;, +3;861,940,860;, +3;862,941,861;, +3;863,942,862;, +3;864,943,863;, +3;865,944,864;, +3;866,945,865;, +3;867,946,866;, +3;868,947,867;, +3;869,948,868;, +3;870,949,869;, +3;871,950,870;, +3;872,951,871;, +3;873,952,872;, +3;874,953,873;, +3;875,954,874;, +3;876,955,875;, +3;877,956,876;, +3;878,957,877;, +3;879,958,878;, +3;880,959,879;, +3;1696,960,880;, +3;882,961,881;, +3;883,962,882;, +3;884,963,883;, +3;885,964,884;, +3;886,965,885;, +3;887,966,886;, +3;888,967,887;, +3;889,968,888;, +3;890,969,889;, +3;891,970,890;, +3;892,971,891;, +3;893,972,892;, +3;894,973,893;, +3;895,974,894;, +3;896,975,895;, +3;897,976,896;, +3;898,977,897;, +3;899,978,898;, +3;900,979,899;, +3;901,980,900;, +3;902,981,901;, +3;903,982,902;, +3;904,983,903;, +3;905,984,904;, +3;906,985,905;, +3;907,986,906;, +3;908,987,907;, +3;909,988,908;, +3;910,989,909;, +3;911,990,910;, +3;912,991,911;, +3;913,992,912;, +3;914,993,913;, +3;915,994,914;, +3;916,995,915;, +3;917,996,916;, +3;918,997,917;, +3;919,998,918;, +3;920,999,919;, +3;921,1000,920;, +3;922,1001,921;, +3;923,1002,922;, +3;924,1003,923;, +3;925,1004,924;, +3;926,1005,925;, +3;927,1006,926;, +3;928,1007,927;, +3;929,1008,928;, +3;930,1009,929;, +3;931,1010,930;, +3;932,1011,931;, +3;933,1012,932;, +3;934,1013,933;, +3;935,1014,934;, +3;936,1015,935;, +3;937,1016,936;, +3;938,1017,937;, +3;939,1018,938;, +3;940,1019,939;, +3;941,1020,940;, +3;942,1021,941;, +3;943,1022,942;, +3;944,1023,943;, +3;945,1024,944;, +3;946,1025,945;, +3;947,1026,946;, +3;948,1027,947;, +3;949,1028,948;, +3;950,1029,949;, +3;951,1030,950;, +3;952,1031,951;, +3;953,1032,952;, +3;954,1033,953;, +3;955,1034,954;, +3;956,1035,955;, +3;957,1036,956;, +3;958,1037,957;, +3;959,1038,958;, +3;960,1039,959;, +3;1697,1040,960;, +3;962,1041,961;, +3;963,1042,962;, +3;964,1043,963;, +3;965,1044,964;, +3;966,1045,965;, +3;967,1046,966;, +3;968,1047,967;, +3;969,1048,968;, +3;970,1049,969;, +3;971,1050,970;, +3;972,1051,971;, +3;973,1052,972;, +3;974,1053,973;, +3;975,1054,974;, +3;976,1055,975;, +3;977,1056,976;, +3;978,1057,977;, +3;979,1058,978;, +3;980,1059,979;, +3;981,1060,980;, +3;982,1061,981;, +3;983,1062,982;, +3;984,1063,983;, +3;985,1064,984;, +3;986,1065,985;, +3;987,1066,986;, +3;988,1067,987;, +3;989,1068,988;, +3;990,1069,989;, +3;991,1070,990;, +3;992,1071,991;, +3;993,1072,992;, +3;994,1073,993;, +3;995,1074,994;, +3;996,1075,995;, +3;997,1076,996;, +3;998,1077,997;, +3;999,1078,998;, +3;1000,1079,999;, +3;1001,1080,1000;, +3;1002,1081,1001;, +3;1003,1082,1002;, +3;1004,1083,1003;, +3;1005,1084,1004;, +3;1006,1085,1005;, +3;1007,1086,1006;, +3;1008,1087,1007;, +3;1009,1088,1008;, +3;1010,1089,1009;, +3;1011,1090,1010;, +3;1012,1091,1011;, +3;1013,1092,1012;, +3;1014,1093,1013;, +3;1015,1094,1014;, +3;1016,1095,1015;, +3;1017,1096,1016;, +3;1018,1097,1017;, +3;1019,1098,1018;, +3;1020,1099,1019;, +3;1021,1100,1020;, +3;1022,1101,1021;, +3;1023,1102,1022;, +3;1024,1103,1023;, +3;1025,1104,1024;, +3;1026,1105,1025;, +3;1027,1106,1026;, +3;1028,1107,1027;, +3;1029,1108,1028;, +3;1030,1109,1029;, +3;1031,1110,1030;, +3;1032,1111,1031;, +3;1033,1112,1032;, +3;1034,1113,1033;, +3;1035,1114,1034;, +3;1036,1115,1035;, +3;1037,1116,1036;, +3;1038,1117,1037;, +3;1039,1118,1038;, +3;1040,1119,1039;, +3;1698,1120,1040;, +3;1042,1121,1041;, +3;1043,1122,1042;, +3;1044,1123,1043;, +3;1045,1124,1044;, +3;1046,1125,1045;, +3;1047,1126,1046;, +3;1048,1127,1047;, +3;1049,1128,1048;, +3;1050,1129,1049;, +3;1051,1130,1050;, +3;1052,1131,1051;, +3;1053,1132,1052;, +3;1054,1133,1053;, +3;1055,1134,1054;, +3;1056,1135,1055;, +3;1057,1136,1056;, +3;1058,1137,1057;, +3;1059,1138,1058;, +3;1060,1139,1059;, +3;1061,1140,1060;, +3;1062,1141,1061;, +3;1063,1142,1062;, +3;1064,1143,1063;, +3;1065,1144,1064;, +3;1066,1145,1065;, +3;1067,1146,1066;, +3;1068,1147,1067;, +3;1069,1148,1068;, +3;1070,1149,1069;, +3;1071,1150,1070;, +3;1072,1151,1071;, +3;1073,1152,1072;, +3;1074,1153,1073;, +3;1075,1154,1074;, +3;1076,1155,1075;, +3;1077,1156,1076;, +3;1078,1157,1077;, +3;1079,1158,1078;, +3;1080,1159,1079;, +3;1081,1160,1080;, +3;1082,1161,1081;, +3;1083,1162,1082;, +3;1084,1163,1083;, +3;1085,1164,1084;, +3;1086,1165,1085;, +3;1087,1166,1086;, +3;1088,1167,1087;, +3;1089,1168,1088;, +3;1090,1169,1089;, +3;1091,1170,1090;, +3;1092,1171,1091;, +3;1093,1172,1092;, +3;1094,1173,1093;, +3;1095,1174,1094;, +3;1096,1175,1095;, +3;1097,1176,1096;, +3;1098,1177,1097;, +3;1099,1178,1098;, +3;1100,1179,1099;, +3;1101,1180,1100;, +3;1102,1181,1101;, +3;1103,1182,1102;, +3;1104,1183,1103;, +3;1105,1184,1104;, +3;1106,1185,1105;, +3;1107,1186,1106;, +3;1108,1187,1107;, +3;1109,1188,1108;, +3;1110,1189,1109;, +3;1111,1190,1110;, +3;1112,1191,1111;, +3;1113,1192,1112;, +3;1114,1193,1113;, +3;1115,1194,1114;, +3;1116,1195,1115;, +3;1117,1196,1116;, +3;1118,1197,1117;, +3;1119,1198,1118;, +3;1120,1199,1119;, +3;1699,1200,1120;, +3;1122,1201,1121;, +3;1123,1202,1122;, +3;1124,1203,1123;, +3;1125,1204,1124;, +3;1126,1205,1125;, +3;1127,1206,1126;, +3;1128,1207,1127;, +3;1129,1208,1128;, +3;1130,1209,1129;, +3;1131,1210,1130;, +3;1132,1211,1131;, +3;1133,1212,1132;, +3;1134,1213,1133;, +3;1135,1214,1134;, +3;1136,1215,1135;, +3;1137,1216,1136;, +3;1138,1217,1137;, +3;1139,1218,1138;, +3;1140,1219,1139;, +3;1141,1220,1140;, +3;1142,1221,1141;, +3;1143,1222,1142;, +3;1144,1223,1143;, +3;1145,1224,1144;, +3;1146,1225,1145;, +3;1147,1226,1146;, +3;1148,1227,1147;, +3;1149,1228,1148;, +3;1150,1229,1149;, +3;1151,1230,1150;, +3;1152,1231,1151;, +3;1153,1232,1152;, +3;1154,1233,1153;, +3;1155,1234,1154;, +3;1156,1235,1155;, +3;1157,1236,1156;, +3;1158,1237,1157;, +3;1159,1238,1158;, +3;1160,1239,1159;, +3;1161,1240,1160;, +3;1162,1241,1161;, +3;1163,1242,1162;, +3;1164,1243,1163;, +3;1165,1244,1164;, +3;1166,1245,1165;, +3;1167,1246,1166;, +3;1168,1247,1167;, +3;1169,1248,1168;, +3;1170,1249,1169;, +3;1171,1250,1170;, +3;1172,1251,1171;, +3;1173,1252,1172;, +3;1174,1253,1173;, +3;1175,1254,1174;, +3;1176,1255,1175;, +3;1177,1256,1176;, +3;1178,1257,1177;, +3;1179,1258,1178;, +3;1180,1259,1179;, +3;1181,1260,1180;, +3;1182,1261,1181;, +3;1183,1262,1182;, +3;1184,1263,1183;, +3;1185,1264,1184;, +3;1186,1265,1185;, +3;1187,1266,1186;, +3;1188,1267,1187;, +3;1189,1268,1188;, +3;1190,1269,1189;, +3;1191,1270,1190;, +3;1192,1271,1191;, +3;1193,1272,1192;, +3;1194,1273,1193;, +3;1195,1274,1194;, +3;1196,1275,1195;, +3;1197,1276,1196;, +3;1198,1277,1197;, +3;1199,1278,1198;, +3;1200,1279,1199;, +3;1700,1280,1200;, +3;1202,1281,1201;, +3;1203,1282,1202;, +3;1204,1283,1203;, +3;1205,1284,1204;, +3;1206,1285,1205;, +3;1207,1286,1206;, +3;1208,1287,1207;, +3;1209,1288,1208;, +3;1210,1289,1209;, +3;1211,1290,1210;, +3;1212,1291,1211;, +3;1213,1292,1212;, +3;1214,1293,1213;, +3;1215,1294,1214;, +3;1216,1295,1215;, +3;1217,1296,1216;, +3;1218,1297,1217;, +3;1219,1298,1218;, +3;1220,1299,1219;, +3;1221,1300,1220;, +3;1222,1301,1221;, +3;1223,1302,1222;, +3;1224,1303,1223;, +3;1225,1304,1224;, +3;1226,1305,1225;, +3;1227,1306,1226;, +3;1228,1307,1227;, +3;1229,1308,1228;, +3;1230,1309,1229;, +3;1231,1310,1230;, +3;1232,1311,1231;, +3;1233,1312,1232;, +3;1234,1313,1233;, +3;1235,1314,1234;, +3;1236,1315,1235;, +3;1237,1316,1236;, +3;1238,1317,1237;, +3;1239,1318,1238;, +3;1240,1319,1239;, +3;1241,1320,1240;, +3;1242,1321,1241;, +3;1243,1322,1242;, +3;1244,1323,1243;, +3;1245,1324,1244;, +3;1246,1325,1245;, +3;1247,1326,1246;, +3;1248,1327,1247;, +3;1249,1328,1248;, +3;1250,1329,1249;, +3;1251,1330,1250;, +3;1252,1331,1251;, +3;1253,1332,1252;, +3;1254,1333,1253;, +3;1255,1334,1254;, +3;1256,1335,1255;, +3;1257,1336,1256;, +3;1258,1337,1257;, +3;1259,1338,1258;, +3;1260,1339,1259;, +3;1261,1340,1260;, +3;1262,1341,1261;, +3;1263,1342,1262;, +3;1264,1343,1263;, +3;1265,1344,1264;, +3;1266,1345,1265;, +3;1267,1346,1266;, +3;1268,1347,1267;, +3;1269,1348,1268;, +3;1270,1349,1269;, +3;1271,1350,1270;, +3;1272,1351,1271;, +3;1273,1352,1272;, +3;1274,1353,1273;, +3;1275,1354,1274;, +3;1276,1355,1275;, +3;1277,1356,1276;, +3;1278,1357,1277;, +3;1279,1358,1278;, +3;1280,1359,1279;, +3;1701,1360,1280;, +3;1282,1361,1281;, +3;1283,1362,1282;, +3;1284,1363,1283;, +3;1285,1364,1284;, +3;1286,1365,1285;, +3;1287,1366,1286;, +3;1288,1367,1287;, +3;1289,1368,1288;, +3;1290,1369,1289;, +3;1291,1370,1290;, +3;1292,1371,1291;, +3;1293,1372,1292;, +3;1294,1373,1293;, +3;1295,1374,1294;, +3;1296,1375,1295;, +3;1297,1376,1296;, +3;1298,1377,1297;, +3;1299,1378,1298;, +3;1300,1379,1299;, +3;1301,1380,1300;, +3;1302,1381,1301;, +3;1303,1382,1302;, +3;1304,1383,1303;, +3;1305,1384,1304;, +3;1306,1385,1305;, +3;1307,1386,1306;, +3;1308,1387,1307;, +3;1309,1388,1308;, +3;1310,1389,1309;, +3;1311,1390,1310;, +3;1312,1391,1311;, +3;1313,1392,1312;, +3;1314,1393,1313;, +3;1315,1394,1314;, +3;1316,1395,1315;, +3;1317,1396,1316;, +3;1318,1397,1317;, +3;1319,1398,1318;, +3;1320,1399,1319;, +3;1321,1400,1320;, +3;1322,1401,1321;, +3;1323,1402,1322;, +3;1324,1403,1323;, +3;1325,1404,1324;, +3;1326,1405,1325;, +3;1327,1406,1326;, +3;1328,1407,1327;, +3;1329,1408,1328;, +3;1330,1409,1329;, +3;1331,1410,1330;, +3;1332,1411,1331;, +3;1333,1412,1332;, +3;1334,1413,1333;, +3;1335,1414,1334;, +3;1336,1415,1335;, +3;1337,1416,1336;, +3;1338,1417,1337;, +3;1339,1418,1338;, +3;1340,1419,1339;, +3;1341,1420,1340;, +3;1342,1421,1341;, +3;1343,1422,1342;, +3;1344,1423,1343;, +3;1345,1424,1344;, +3;1346,1425,1345;, +3;1347,1426,1346;, +3;1348,1427,1347;, +3;1349,1428,1348;, +3;1350,1429,1349;, +3;1351,1430,1350;, +3;1352,1431,1351;, +3;1353,1432,1352;, +3;1354,1433,1353;, +3;1355,1434,1354;, +3;1356,1435,1355;, +3;1357,1436,1356;, +3;1358,1437,1357;, +3;1359,1438,1358;, +3;1360,1439,1359;, +3;1702,1440,1360;, +3;1362,1441,1361;, +3;1363,1442,1362;, +3;1364,1443,1363;, +3;1365,1444,1364;, +3;1366,1445,1365;, +3;1367,1446,1366;, +3;1368,1447,1367;, +3;1369,1448,1368;, +3;1370,1449,1369;, +3;1371,1450,1370;, +3;1372,1451,1371;, +3;1373,1452,1372;, +3;1374,1453,1373;, +3;1375,1454,1374;, +3;1376,1455,1375;, +3;1377,1456,1376;, +3;1378,1457,1377;, +3;1379,1458,1378;, +3;1380,1459,1379;, +3;1381,1460,1380;, +3;1382,1461,1381;, +3;1383,1462,1382;, +3;1384,1463,1383;, +3;1385,1464,1384;, +3;1386,1465,1385;, +3;1387,1466,1386;, +3;1388,1467,1387;, +3;1389,1468,1388;, +3;1390,1469,1389;, +3;1391,1470,1390;, +3;1392,1471,1391;, +3;1393,1472,1392;, +3;1394,1473,1393;, +3;1395,1474,1394;, +3;1396,1475,1395;, +3;1397,1476,1396;, +3;1398,1477,1397;, +3;1399,1478,1398;, +3;1400,1479,1399;, +3;1401,1480,1400;, +3;1402,1481,1401;, +3;1403,1482,1402;, +3;1404,1483,1403;, +3;1405,1484,1404;, +3;1406,1485,1405;, +3;1407,1486,1406;, +3;1408,1487,1407;, +3;1409,1488,1408;, +3;1410,1489,1409;, +3;1411,1490,1410;, +3;1412,1491,1411;, +3;1413,1492,1412;, +3;1414,1493,1413;, +3;1415,1494,1414;, +3;1416,1495,1415;, +3;1417,1496,1416;, +3;1418,1497,1417;, +3;1419,1498,1418;, +3;1420,1499,1419;, +3;1421,1500,1420;, +3;1422,1501,1421;, +3;1423,1502,1422;, +3;1424,1503,1423;, +3;1425,1504,1424;, +3;1426,1505,1425;, +3;1427,1506,1426;, +3;1428,1507,1427;, +3;1429,1508,1428;, +3;1430,1509,1429;, +3;1431,1510,1430;, +3;1432,1511,1431;, +3;1433,1512,1432;, +3;1434,1513,1433;, +3;1435,1514,1434;, +3;1436,1515,1435;, +3;1437,1516,1436;, +3;1438,1517,1437;, +3;1439,1518,1438;, +3;1440,1519,1439;, +3;1703,1520,1440;, +3;1442,1521,1441;, +3;1443,1522,1442;, +3;1444,1523,1443;, +3;1445,1524,1444;, +3;1446,1525,1445;, +3;1447,1526,1446;, +3;1448,1527,1447;, +3;1449,1528,1448;, +3;1450,1529,1449;, +3;1451,1530,1450;, +3;1452,1531,1451;, +3;1453,1532,1452;, +3;1454,1533,1453;, +3;1455,1534,1454;, +3;1456,1535,1455;, +3;1457,1536,1456;, +3;1458,1537,1457;, +3;1459,1538,1458;, +3;1460,1539,1459;, +3;1461,1540,1460;, +3;1462,1541,1461;, +3;1463,1542,1462;, +3;1464,1543,1463;, +3;1465,1544,1464;, +3;1466,1545,1465;, +3;1467,1546,1466;, +3;1468,1547,1467;, +3;1469,1548,1468;, +3;1470,1549,1469;, +3;1471,1550,1470;, +3;1472,1551,1471;, +3;1473,1552,1472;, +3;1474,1553,1473;, +3;1475,1554,1474;, +3;1476,1555,1475;, +3;1477,1556,1476;, +3;1478,1557,1477;, +3;1479,1558,1478;, +3;1480,1559,1479;, +3;1481,1560,1480;, +3;1482,1561,1481;, +3;1483,1562,1482;, +3;1484,1563,1483;, +3;1485,1564,1484;, +3;1486,1565,1485;, +3;1487,1566,1486;, +3;1488,1567,1487;, +3;1489,1568,1488;, +3;1490,1569,1489;, +3;1491,1570,1490;, +3;1492,1571,1491;, +3;1493,1572,1492;, +3;1494,1573,1493;, +3;1495,1574,1494;, +3;1496,1575,1495;, +3;1497,1576,1496;, +3;1498,1577,1497;, +3;1499,1578,1498;, +3;1500,1579,1499;, +3;1501,1580,1500;, +3;1502,1581,1501;, +3;1503,1582,1502;, +3;1504,1583,1503;, +3;1505,1584,1504;, +3;1506,1585,1505;, +3;1507,1586,1506;, +3;1508,1587,1507;, +3;1509,1588,1508;, +3;1510,1589,1509;, +3;1511,1590,1510;, +3;1512,1591,1511;, +3;1513,1592,1512;, +3;1514,1593,1513;, +3;1515,1594,1514;, +3;1516,1595,1515;, +3;1517,1596,1516;, +3;1518,1597,1517;, +3;1519,1598,1518;, +3;1520,1599,1519;, +3;1704,1600,1520;; + +} +MeshTextureCoords { + 1706; +0.000000; 0.000000;, +1.000000; 0.500000;, +0.012500; 0.500000;, +0.025000; 0.500000;, +0.037500; 0.500000;, +0.050000; 0.500000;, +0.062500; 0.500000;, +0.075000; 0.500000;, +0.087500; 0.500000;, +0.100000; 0.500000;, +0.112500; 0.500000;, +0.125000; 0.500000;, +0.137500; 0.500000;, +0.150000; 0.500000;, +0.162500; 0.500000;, +0.175000; 0.500000;, +0.187500; 0.500000;, +0.200000; 0.500000;, +0.212500; 0.500000;, +0.225000; 0.500000;, +0.237500; 0.500000;, +0.250000; 0.500000;, +0.262500; 0.500000;, +0.275000; 0.500000;, +0.287500; 0.500000;, +0.300000; 0.500000;, +0.312500; 0.500000;, +0.325000; 0.500000;, +0.337500; 0.500000;, +0.350000; 0.500000;, +0.362500; 0.500000;, +0.375000; 0.500000;, +0.387500; 0.500000;, +0.400000; 0.500000;, +0.412500; 0.500000;, +0.425000; 0.500000;, +0.437500; 0.500000;, +0.450000; 0.500000;, +0.462500; 0.500000;, +0.475000; 0.500000;, +0.487500; 0.500000;, +0.500000; 0.500000;, +0.512500; 0.500000;, +0.525000; 0.500000;, +0.537500; 0.500000;, +0.550000; 0.500000;, +0.562500; 0.500000;, +0.575000; 0.500000;, +0.587500; 0.500000;, +0.600000; 0.500000;, +0.612500; 0.500000;, +0.625000; 0.500000;, +0.637500; 0.500000;, +0.650000; 0.500000;, +0.662500; 0.500000;, +0.675000; 0.500000;, +0.687500; 0.500000;, +0.700000; 0.500000;, +0.712500; 0.500000;, +0.725000; 0.500000;, +0.737500; 0.500000;, +0.750000; 0.500000;, +0.762500; 0.500000;, +0.775000; 0.500000;, +0.787500; 0.500000;, +0.800000; 0.500000;, +0.812500; 0.500000;, +0.825000; 0.500000;, +0.837500; 0.500000;, +0.850000; 0.500000;, +0.862500; 0.500000;, +0.875000; 0.500000;, +0.887500; 0.500000;, +0.900000; 0.500000;, +0.912500; 0.500000;, +0.925000; 0.500000;, +0.937500; 0.500000;, +0.950000; 0.500000;, +0.962500; 0.500000;, +0.975000; 0.500000;, +0.987500; 0.500000;, +0.000000; 0.475000;, +0.012500; 0.475000;, +0.025000; 0.475000;, +0.037500; 0.475000;, +0.050000; 0.475000;, +0.062500; 0.475000;, +0.075000; 0.475000;, +0.087500; 0.475000;, +0.100000; 0.475000;, +0.112500; 0.475000;, +0.125000; 0.475000;, +0.137500; 0.475000;, +0.150000; 0.475000;, +0.162500; 0.475000;, +0.175000; 0.475000;, +0.187500; 0.475000;, +0.200000; 0.475000;, +0.212500; 0.475000;, +0.225000; 0.475000;, +0.237500; 0.475000;, +0.250000; 0.475000;, +0.262500; 0.475000;, +0.275000; 0.475000;, +0.287500; 0.475000;, +0.300000; 0.475000;, +0.312500; 0.475000;, +0.325000; 0.475000;, +0.337500; 0.475000;, +0.350000; 0.475000;, +0.362500; 0.475000;, +0.375000; 0.475000;, +0.387500; 0.475000;, +0.400000; 0.475000;, +0.412500; 0.475000;, +0.425000; 0.475000;, +0.437500; 0.475000;, +0.450000; 0.475000;, +0.462500; 0.475000;, +0.475000; 0.475000;, +0.487500; 0.475000;, +0.500000; 0.475000;, +0.512500; 0.475000;, +0.525000; 0.475000;, +0.537500; 0.475000;, +0.550000; 0.475000;, +0.562500; 0.475000;, +0.575000; 0.475000;, +0.587500; 0.475000;, +0.600000; 0.475000;, +0.612500; 0.475000;, +0.625000; 0.475000;, +0.637500; 0.475000;, +0.650000; 0.475000;, +0.662500; 0.475000;, +0.675000; 0.475000;, +0.687500; 0.475000;, +0.700000; 0.475000;, +0.712500; 0.475000;, +0.725000; 0.475000;, +0.737500; 0.475000;, +0.750000; 0.475000;, +0.762500; 0.475000;, +0.775000; 0.475000;, +0.787500; 0.475000;, +0.800000; 0.475000;, +0.812500; 0.475000;, +0.825000; 0.475000;, +0.837500; 0.475000;, +0.850000; 0.475000;, +0.862500; 0.475000;, +0.875000; 0.475000;, +0.887500; 0.475000;, +0.900000; 0.475000;, +0.912500; 0.475000;, +0.925000; 0.475000;, +0.937500; 0.475000;, +0.950000; 0.475000;, +0.962500; 0.475000;, +0.975000; 0.475000;, +0.987500; 0.475000;, +0.000000; 0.450000;, +0.012500; 0.450000;, +0.025000; 0.450000;, +0.037500; 0.450000;, +0.050000; 0.450000;, +0.062500; 0.450000;, +0.075000; 0.450000;, +0.087500; 0.450000;, +0.100000; 0.450000;, +0.112500; 0.450000;, +0.125000; 0.450000;, +0.137500; 0.450000;, +0.150000; 0.450000;, +0.162500; 0.450000;, +0.175000; 0.450000;, +0.187500; 0.450000;, +0.200000; 0.450000;, +0.212500; 0.450000;, +0.225000; 0.450000;, +0.237500; 0.450000;, +0.250000; 0.450000;, +0.262500; 0.450000;, +0.275000; 0.450000;, +0.287500; 0.450000;, +0.300000; 0.450000;, +0.312500; 0.450000;, +0.325000; 0.450000;, +0.337500; 0.450000;, +0.350000; 0.450000;, +0.362500; 0.450000;, +0.375000; 0.450000;, +0.387500; 0.450000;, +0.400000; 0.450000;, +0.412500; 0.450000;, +0.425000; 0.450000;, +0.437500; 0.450000;, +0.450000; 0.450000;, +0.462500; 0.450000;, +0.475000; 0.450000;, +0.487500; 0.450000;, +0.500000; 0.450000;, +0.512500; 0.450000;, +0.525000; 0.450000;, +0.537500; 0.450000;, +0.550000; 0.450000;, +0.562500; 0.450000;, +0.575000; 0.450000;, +0.587500; 0.450000;, +0.600000; 0.450000;, +0.612500; 0.450000;, +0.625000; 0.450000;, +0.637500; 0.450000;, +0.650000; 0.450000;, +0.662500; 0.450000;, +0.675000; 0.450000;, +0.687500; 0.450000;, +0.700000; 0.450000;, +0.712500; 0.450000;, +0.725000; 0.450000;, +0.737500; 0.450000;, +0.750000; 0.450000;, +0.762500; 0.450000;, +0.775000; 0.450000;, +0.787500; 0.450000;, +0.800000; 0.450000;, +0.812500; 0.450000;, +0.825000; 0.450000;, +0.837500; 0.450000;, +0.850000; 0.450000;, +0.862500; 0.450000;, +0.875000; 0.450000;, +0.887500; 0.450000;, +0.900000; 0.450000;, +0.912500; 0.450000;, +0.925000; 0.450000;, +0.937500; 0.450000;, +0.950000; 0.450000;, +0.962500; 0.450000;, +0.975000; 0.450000;, +0.987500; 0.450000;, +0.000000; 0.425000;, +0.012500; 0.425000;, +0.025000; 0.425000;, +0.037500; 0.425000;, +0.050000; 0.425000;, +0.062500; 0.425000;, +0.075000; 0.425000;, +0.087500; 0.425000;, +0.100000; 0.425000;, +0.112500; 0.425000;, +0.125000; 0.425000;, +0.137500; 0.425000;, +0.150000; 0.425000;, +0.162500; 0.425000;, +0.175000; 0.425000;, +0.187500; 0.425000;, +0.200000; 0.425000;, +0.212500; 0.425000;, +0.225000; 0.425000;, +0.237500; 0.425000;, +0.250000; 0.425000;, +0.262500; 0.425000;, +0.275000; 0.425000;, +0.287500; 0.425000;, +0.300000; 0.425000;, +0.312500; 0.425000;, +0.325000; 0.425000;, +0.337500; 0.425000;, +0.350000; 0.425000;, +0.362500; 0.425000;, +0.375000; 0.425000;, +0.387500; 0.425000;, +0.400000; 0.425000;, +0.412500; 0.425000;, +0.425000; 0.425000;, +0.437500; 0.425000;, +0.450000; 0.425000;, +0.462500; 0.425000;, +0.475000; 0.425000;, +0.487500; 0.425000;, +0.500000; 0.425000;, +0.512500; 0.425000;, +0.525000; 0.425000;, +0.537500; 0.425000;, +0.550000; 0.425000;, +0.562500; 0.425000;, +0.575000; 0.425000;, +0.587500; 0.425000;, +0.600000; 0.425000;, +0.612500; 0.425000;, +0.625000; 0.425000;, +0.637500; 0.425000;, +0.650000; 0.425000;, +0.662500; 0.425000;, +0.675000; 0.425000;, +0.687500; 0.425000;, +0.700000; 0.425000;, +0.712500; 0.425000;, +0.725000; 0.425000;, +0.737500; 0.425000;, +0.750000; 0.425000;, +0.762500; 0.425000;, +0.775000; 0.425000;, +0.787500; 0.425000;, +0.800000; 0.425000;, +0.812500; 0.425000;, +0.825000; 0.425000;, +0.837500; 0.425000;, +0.850000; 0.425000;, +0.862500; 0.425000;, +0.875000; 0.425000;, +0.887500; 0.425000;, +0.900000; 0.425000;, +0.912500; 0.425000;, +0.925000; 0.425000;, +0.937500; 0.425000;, +0.950000; 0.425000;, +0.962500; 0.425000;, +0.975000; 0.425000;, +0.987500; 0.425000;, +0.000000; 0.400000;, +0.012500; 0.400000;, +0.025000; 0.400000;, +0.037500; 0.400000;, +0.050000; 0.400000;, +0.062500; 0.400000;, +0.075000; 0.400000;, +0.087500; 0.400000;, +0.100000; 0.400000;, +0.112500; 0.400000;, +0.125000; 0.400000;, +0.137500; 0.400000;, +0.150000; 0.400000;, +0.162500; 0.400000;, +0.175000; 0.400000;, +0.187500; 0.400000;, +0.200000; 0.400000;, +0.212500; 0.400000;, +0.225000; 0.400000;, +0.237500; 0.400000;, +0.250000; 0.400000;, +0.262500; 0.400000;, +0.275000; 0.400000;, +0.287500; 0.400000;, +0.300000; 0.400000;, +0.312500; 0.400000;, +0.325000; 0.400000;, +0.337500; 0.400000;, +0.350000; 0.400000;, +0.362500; 0.400000;, +0.375000; 0.400000;, +0.387500; 0.400000;, +0.400000; 0.400000;, +0.412500; 0.400000;, +0.425000; 0.400000;, +0.437500; 0.400000;, +0.450000; 0.400000;, +0.462500; 0.400000;, +0.475000; 0.400000;, +0.487500; 0.400000;, +0.500000; 0.400000;, +0.512500; 0.400000;, +0.525000; 0.400000;, +0.537500; 0.400000;, +0.550000; 0.400000;, +0.562500; 0.400000;, +0.575000; 0.400000;, +0.587500; 0.400000;, +0.600000; 0.400000;, +0.612500; 0.400000;, +0.625000; 0.400000;, +0.637500; 0.400000;, +0.650000; 0.400000;, +0.662500; 0.400000;, +0.675000; 0.400000;, +0.687500; 0.400000;, +0.700000; 0.400000;, +0.712500; 0.400000;, +0.725000; 0.400000;, +0.737500; 0.400000;, +0.750000; 0.400000;, +0.762500; 0.400000;, +0.775000; 0.400000;, +0.787500; 0.400000;, +0.800000; 0.400000;, +0.812500; 0.400000;, +0.825000; 0.400000;, +0.837500; 0.400000;, +0.850000; 0.400000;, +0.862500; 0.400000;, +0.875000; 0.400000;, +0.887500; 0.400000;, +0.900000; 0.400000;, +0.912500; 0.400000;, +0.925000; 0.400000;, +0.937500; 0.400000;, +0.950000; 0.400000;, +0.962500; 0.400000;, +0.975000; 0.400000;, +0.987500; 0.400000;, +0.000000; 0.375000;, +0.012500; 0.375000;, +0.025000; 0.375000;, +0.037500; 0.375000;, +0.050000; 0.375000;, +0.062500; 0.375000;, +0.075000; 0.375000;, +0.087500; 0.375000;, +0.100000; 0.375000;, +0.112500; 0.375000;, +0.125000; 0.375000;, +0.137500; 0.375000;, +0.150000; 0.375000;, +0.162500; 0.375000;, +0.175000; 0.375000;, +0.187500; 0.375000;, +0.200000; 0.375000;, +0.212500; 0.375000;, +0.225000; 0.375000;, +0.237500; 0.375000;, +0.250000; 0.375000;, +0.262500; 0.375000;, +0.275000; 0.375000;, +0.287500; 0.375000;, +0.300000; 0.375000;, +0.312500; 0.375000;, +0.325000; 0.375000;, +0.337500; 0.375000;, +0.350000; 0.375000;, +0.362500; 0.375000;, +0.375000; 0.375000;, +0.387500; 0.375000;, +0.400000; 0.375000;, +0.412500; 0.375000;, +0.425000; 0.375000;, +0.437500; 0.375000;, +0.450000; 0.375000;, +0.462500; 0.375000;, +0.475000; 0.375000;, +0.487500; 0.375000;, +0.500000; 0.375000;, +0.512500; 0.375000;, +0.525000; 0.375000;, +0.537500; 0.375000;, +0.550000; 0.375000;, +0.562500; 0.375000;, +0.575000; 0.375000;, +0.587500; 0.375000;, +0.600000; 0.375000;, +0.612500; 0.375000;, +0.625000; 0.375000;, +0.637500; 0.375000;, +0.650000; 0.375000;, +0.662500; 0.375000;, +0.675000; 0.375000;, +0.687500; 0.375000;, +0.700000; 0.375000;, +0.712500; 0.375000;, +0.725000; 0.375000;, +0.737500; 0.375000;, +0.750000; 0.375000;, +0.762500; 0.375000;, +0.775000; 0.375000;, +0.787500; 0.375000;, +0.800000; 0.375000;, +0.812500; 0.375000;, +0.825000; 0.375000;, +0.837500; 0.375000;, +0.850000; 0.375000;, +0.862500; 0.375000;, +0.875000; 0.375000;, +0.887500; 0.375000;, +0.900000; 0.375000;, +0.912500; 0.375000;, +0.925000; 0.375000;, +0.937500; 0.375000;, +0.950000; 0.375000;, +0.962500; 0.375000;, +0.975000; 0.375000;, +0.987500; 0.375000;, +0.000000; 0.350000;, +0.012500; 0.350000;, +0.025000; 0.350000;, +0.037500; 0.350000;, +0.050000; 0.350000;, +0.062500; 0.350000;, +0.075000; 0.350000;, +0.087500; 0.350000;, +0.100000; 0.350000;, +0.112500; 0.350000;, +0.125000; 0.350000;, +0.137500; 0.350000;, +0.150000; 0.350000;, +0.162500; 0.350000;, +0.175000; 0.350000;, +0.187500; 0.350000;, +0.200000; 0.350000;, +0.212500; 0.350000;, +0.225000; 0.350000;, +0.237500; 0.350000;, +0.250000; 0.350000;, +0.262500; 0.350000;, +0.275000; 0.350000;, +0.287500; 0.350000;, +0.300000; 0.350000;, +0.312500; 0.350000;, +0.325000; 0.350000;, +0.337500; 0.350000;, +0.350000; 0.350000;, +0.362500; 0.350000;, +0.375000; 0.350000;, +0.387500; 0.350000;, +0.400000; 0.350000;, +0.412500; 0.350000;, +0.425000; 0.350000;, +0.437500; 0.350000;, +0.450000; 0.350000;, +0.462500; 0.350000;, +0.475000; 0.350000;, +0.487500; 0.350000;, +0.500000; 0.350000;, +0.512500; 0.350000;, +0.525000; 0.350000;, +0.537500; 0.350000;, +0.550000; 0.350000;, +0.562500; 0.350000;, +0.575000; 0.350000;, +0.587500; 0.350000;, +0.600000; 0.350000;, +0.612500; 0.350000;, +0.625000; 0.350000;, +0.637500; 0.350000;, +0.650000; 0.350000;, +0.662500; 0.350000;, +0.675000; 0.350000;, +0.687500; 0.350000;, +0.700000; 0.350000;, +0.712500; 0.350000;, +0.725000; 0.350000;, +0.737500; 0.350000;, +0.750000; 0.350000;, +0.762500; 0.350000;, +0.775000; 0.350000;, +0.787500; 0.350000;, +0.800000; 0.350000;, +0.812500; 0.350000;, +0.825000; 0.350000;, +0.837500; 0.350000;, +0.850000; 0.350000;, +0.862500; 0.350000;, +0.875000; 0.350000;, +0.887500; 0.350000;, +0.900000; 0.350000;, +0.912500; 0.350000;, +0.925000; 0.350000;, +0.937500; 0.350000;, +0.950000; 0.350000;, +0.962500; 0.350000;, +0.975000; 0.350000;, +0.987500; 0.350000;, +0.000000; 0.325000;, +0.012500; 0.325000;, +0.025000; 0.325000;, +0.037500; 0.325000;, +0.050000; 0.325000;, +0.062500; 0.325000;, +0.075000; 0.325000;, +0.087500; 0.325000;, +0.100000; 0.325000;, +0.112500; 0.325000;, +0.125000; 0.325000;, +0.137500; 0.325000;, +0.150000; 0.325000;, +0.162500; 0.325000;, +0.175000; 0.325000;, +0.187500; 0.325000;, +0.200000; 0.325000;, +0.212500; 0.325000;, +0.225000; 0.325000;, +0.237500; 0.325000;, +0.250000; 0.325000;, +0.262500; 0.325000;, +0.275000; 0.325000;, +0.287500; 0.325000;, +0.300000; 0.325000;, +0.312500; 0.325000;, +0.325000; 0.325000;, +0.337500; 0.325000;, +0.350000; 0.325000;, +0.362500; 0.325000;, +0.375000; 0.325000;, +0.387500; 0.325000;, +0.400000; 0.325000;, +0.412500; 0.325000;, +0.425000; 0.325000;, +0.437500; 0.325000;, +0.450000; 0.325000;, +0.462500; 0.325000;, +0.475000; 0.325000;, +0.487500; 0.325000;, +0.500000; 0.325000;, +0.512500; 0.325000;, +0.525000; 0.325000;, +0.537500; 0.325000;, +0.550000; 0.325000;, +0.562500; 0.325000;, +0.575000; 0.325000;, +0.587500; 0.325000;, +0.600000; 0.325000;, +0.612500; 0.325000;, +0.625000; 0.325000;, +0.637500; 0.325000;, +0.650000; 0.325000;, +0.662500; 0.325000;, +0.675000; 0.325000;, +0.687500; 0.325000;, +0.700000; 0.325000;, +0.712500; 0.325000;, +0.725000; 0.325000;, +0.737500; 0.325000;, +0.750000; 0.325000;, +0.762500; 0.325000;, +0.775000; 0.325000;, +0.787500; 0.325000;, +0.800000; 0.325000;, +0.812500; 0.325000;, +0.825000; 0.325000;, +0.837500; 0.325000;, +0.850000; 0.325000;, +0.862500; 0.325000;, +0.875000; 0.325000;, +0.887500; 0.325000;, +0.900000; 0.325000;, +0.912500; 0.325000;, +0.925000; 0.325000;, +0.937500; 0.325000;, +0.950000; 0.325000;, +0.962500; 0.325000;, +0.975000; 0.325000;, +0.987500; 0.325000;, +0.000000; 0.300000;, +0.012500; 0.300000;, +0.025000; 0.300000;, +0.037500; 0.300000;, +0.050000; 0.300000;, +0.062500; 0.300000;, +0.075000; 0.300000;, +0.087500; 0.300000;, +0.100000; 0.300000;, +0.112500; 0.300000;, +0.125000; 0.300000;, +0.137500; 0.300000;, +0.150000; 0.300000;, +0.162500; 0.300000;, +0.175000; 0.300000;, +0.187500; 0.300000;, +0.200000; 0.300000;, +0.212500; 0.300000;, +0.225000; 0.300000;, +0.237500; 0.300000;, +0.250000; 0.300000;, +0.262500; 0.300000;, +0.275000; 0.300000;, +0.287500; 0.300000;, +0.300000; 0.300000;, +0.312500; 0.300000;, +0.325000; 0.300000;, +0.337500; 0.300000;, +0.350000; 0.300000;, +0.362500; 0.300000;, +0.375000; 0.300000;, +0.387500; 0.300000;, +0.400000; 0.300000;, +0.412500; 0.300000;, +0.425000; 0.300000;, +0.437500; 0.300000;, +0.450000; 0.300000;, +0.462500; 0.300000;, +0.475000; 0.300000;, +0.487500; 0.300000;, +0.500000; 0.300000;, +0.512500; 0.300000;, +0.525000; 0.300000;, +0.537500; 0.300000;, +0.550000; 0.300000;, +0.562500; 0.300000;, +0.575000; 0.300000;, +0.587500; 0.300000;, +0.600000; 0.300000;, +0.612500; 0.300000;, +0.625000; 0.300000;, +0.637500; 0.300000;, +0.650000; 0.300000;, +0.662500; 0.300000;, +0.675000; 0.300000;, +0.687500; 0.300000;, +0.700000; 0.300000;, +0.712500; 0.300000;, +0.725000; 0.300000;, +0.737500; 0.300000;, +0.750000; 0.300000;, +0.762500; 0.300000;, +0.775000; 0.300000;, +0.787500; 0.300000;, +0.800000; 0.300000;, +0.812500; 0.300000;, +0.825000; 0.300000;, +0.837500; 0.300000;, +0.850000; 0.300000;, +0.862500; 0.300000;, +0.875000; 0.300000;, +0.887500; 0.300000;, +0.900000; 0.300000;, +0.912500; 0.300000;, +0.925000; 0.300000;, +0.937500; 0.300000;, +0.950000; 0.300000;, +0.962500; 0.300000;, +0.975000; 0.300000;, +0.987500; 0.300000;, +0.000000; 0.275000;, +0.012500; 0.275000;, +0.025000; 0.275000;, +0.037500; 0.275000;, +0.050000; 0.275000;, +0.062500; 0.275000;, +0.075000; 0.275000;, +0.087500; 0.275000;, +0.100000; 0.275000;, +0.112500; 0.275000;, +0.125000; 0.275000;, +0.137500; 0.275000;, +0.150000; 0.275000;, +0.162500; 0.275000;, +0.175000; 0.275000;, +0.187500; 0.275000;, +0.200000; 0.275000;, +0.212500; 0.275000;, +0.225000; 0.275000;, +0.237500; 0.275000;, +0.250000; 0.275000;, +0.262500; 0.275000;, +0.275000; 0.275000;, +0.287500; 0.275000;, +0.300000; 0.275000;, +0.312500; 0.275000;, +0.325000; 0.275000;, +0.337500; 0.275000;, +0.350000; 0.275000;, +0.362500; 0.275000;, +0.375000; 0.275000;, +0.387500; 0.275000;, +0.400000; 0.275000;, +0.412500; 0.275000;, +0.425000; 0.275000;, +0.437500; 0.275000;, +0.450000; 0.275000;, +0.462500; 0.275000;, +0.475000; 0.275000;, +0.487500; 0.275000;, +0.500000; 0.275000;, +0.512500; 0.275000;, +0.525000; 0.275000;, +0.537500; 0.275000;, +0.550000; 0.275000;, +0.562500; 0.275000;, +0.575000; 0.275000;, +0.587500; 0.275000;, +0.600000; 0.275000;, +0.612500; 0.275000;, +0.625000; 0.275000;, +0.637500; 0.275000;, +0.650000; 0.275000;, +0.662500; 0.275000;, +0.675000; 0.275000;, +0.687500; 0.275000;, +0.700000; 0.275000;, +0.712500; 0.275000;, +0.725000; 0.275000;, +0.737500; 0.275000;, +0.750000; 0.275000;, +0.762500; 0.275000;, +0.775000; 0.275000;, +0.787500; 0.275000;, +0.800000; 0.275000;, +0.812500; 0.275000;, +0.825000; 0.275000;, +0.837500; 0.275000;, +0.850000; 0.275000;, +0.862500; 0.275000;, +0.875000; 0.275000;, +0.887500; 0.275000;, +0.900000; 0.275000;, +0.912500; 0.275000;, +0.925000; 0.275000;, +0.937500; 0.275000;, +0.950000; 0.275000;, +0.962500; 0.275000;, +0.975000; 0.275000;, +0.987500; 0.275000;, +0.000000; 0.250000;, +0.012500; 0.250000;, +0.025000; 0.250000;, +0.037500; 0.250000;, +0.050000; 0.250000;, +0.062500; 0.250000;, +0.075000; 0.250000;, +0.087500; 0.250000;, +0.100000; 0.250000;, +0.112500; 0.250000;, +0.125000; 0.250000;, +0.137500; 0.250000;, +0.150000; 0.250000;, +0.162500; 0.250000;, +0.175000; 0.250000;, +0.187500; 0.250000;, +0.200000; 0.250000;, +0.212500; 0.250000;, +0.225000; 0.250000;, +0.237500; 0.250000;, +0.250000; 0.250000;, +0.262500; 0.250000;, +0.275000; 0.250000;, +0.287500; 0.250000;, +0.300000; 0.250000;, +0.312500; 0.250000;, +0.325000; 0.250000;, +0.337500; 0.250000;, +0.350000; 0.250000;, +0.362500; 0.250000;, +0.375000; 0.250000;, +0.387500; 0.250000;, +0.400000; 0.250000;, +0.412500; 0.250000;, +0.425000; 0.250000;, +0.437500; 0.250000;, +0.450000; 0.250000;, +0.462500; 0.250000;, +0.475000; 0.250000;, +0.487500; 0.250000;, +0.500000; 0.250000;, +0.512500; 0.250000;, +0.525000; 0.250000;, +0.537500; 0.250000;, +0.550000; 0.250000;, +0.562500; 0.250000;, +0.575000; 0.250000;, +0.587500; 0.250000;, +0.600000; 0.250000;, +0.612500; 0.250000;, +0.625000; 0.250000;, +0.637500; 0.250000;, +0.650000; 0.250000;, +0.662500; 0.250000;, +0.675000; 0.250000;, +0.687500; 0.250000;, +0.700000; 0.250000;, +0.712500; 0.250000;, +0.725000; 0.250000;, +0.737500; 0.250000;, +0.750000; 0.250000;, +0.762500; 0.250000;, +0.775000; 0.250000;, +0.787500; 0.250000;, +0.800000; 0.250000;, +0.812500; 0.250000;, +0.825000; 0.250000;, +0.837500; 0.250000;, +0.850000; 0.250000;, +0.862500; 0.250000;, +0.875000; 0.250000;, +0.887500; 0.250000;, +0.900000; 0.250000;, +0.912500; 0.250000;, +0.925000; 0.250000;, +0.937500; 0.250000;, +0.950000; 0.250000;, +0.962500; 0.250000;, +0.975000; 0.250000;, +0.987500; 0.250000;, +0.000000; 0.225000;, +0.012500; 0.225000;, +0.025000; 0.225000;, +0.037500; 0.225000;, +0.050000; 0.225000;, +0.062500; 0.225000;, +0.075000; 0.225000;, +0.087500; 0.225000;, +0.100000; 0.225000;, +0.112500; 0.225000;, +0.125000; 0.225000;, +0.137500; 0.225000;, +0.150000; 0.225000;, +0.162500; 0.225000;, +0.175000; 0.225000;, +0.187500; 0.225000;, +0.200000; 0.225000;, +0.212500; 0.225000;, +0.225000; 0.225000;, +0.237500; 0.225000;, +0.250000; 0.225000;, +0.262500; 0.225000;, +0.275000; 0.225000;, +0.287500; 0.225000;, +0.300000; 0.225000;, +0.312500; 0.225000;, +0.325000; 0.225000;, +0.337500; 0.225000;, +0.350000; 0.225000;, +0.362500; 0.225000;, +0.375000; 0.225000;, +0.387500; 0.225000;, +0.400000; 0.225000;, +0.412500; 0.225000;, +0.425000; 0.225000;, +0.437500; 0.225000;, +0.450000; 0.225000;, +0.462500; 0.225000;, +0.475000; 0.225000;, +0.487500; 0.225000;, +0.500000; 0.225000;, +0.512500; 0.225000;, +0.525000; 0.225000;, +0.537500; 0.225000;, +0.550000; 0.225000;, +0.562500; 0.225000;, +0.575000; 0.225000;, +0.587500; 0.225000;, +0.600000; 0.225000;, +0.612500; 0.225000;, +0.625000; 0.225000;, +0.637500; 0.225000;, +0.650000; 0.225000;, +0.662500; 0.225000;, +0.675000; 0.225000;, +0.687500; 0.225000;, +0.700000; 0.225000;, +0.712500; 0.225000;, +0.725000; 0.225000;, +0.737500; 0.225000;, +0.750000; 0.225000;, +0.762500; 0.225000;, +0.775000; 0.225000;, +0.787500; 0.225000;, +0.800000; 0.225000;, +0.812500; 0.225000;, +0.825000; 0.225000;, +0.837500; 0.225000;, +0.850000; 0.225000;, +0.862500; 0.225000;, +0.875000; 0.225000;, +0.887500; 0.225000;, +0.900000; 0.225000;, +0.912500; 0.225000;, +0.925000; 0.225000;, +0.937500; 0.225000;, +0.950000; 0.225000;, +0.962500; 0.225000;, +0.975000; 0.225000;, +0.987500; 0.225000;, +0.000000; 0.200000;, +0.012500; 0.200000;, +0.025000; 0.200000;, +0.037500; 0.200000;, +0.050000; 0.200000;, +0.062500; 0.200000;, +0.075000; 0.200000;, +0.087500; 0.200000;, +0.100000; 0.200000;, +0.112500; 0.200000;, +0.125000; 0.200000;, +0.137500; 0.200000;, +0.150000; 0.200000;, +0.162500; 0.200000;, +0.175000; 0.200000;, +0.187500; 0.200000;, +0.200000; 0.200000;, +0.212500; 0.200000;, +0.225000; 0.200000;, +0.237500; 0.200000;, +0.250000; 0.200000;, +0.262500; 0.200000;, +0.275000; 0.200000;, +0.287500; 0.200000;, +0.300000; 0.200000;, +0.312500; 0.200000;, +0.325000; 0.200000;, +0.337500; 0.200000;, +0.350000; 0.200000;, +0.362500; 0.200000;, +0.375000; 0.200000;, +0.387500; 0.200000;, +0.400000; 0.200000;, +0.412500; 0.200000;, +0.425000; 0.200000;, +0.437500; 0.200000;, +0.450000; 0.200000;, +0.462500; 0.200000;, +0.475000; 0.200000;, +0.487500; 0.200000;, +0.500000; 0.200000;, +0.512500; 0.200000;, +0.525000; 0.200000;, +0.537500; 0.200000;, +0.550000; 0.200000;, +0.562500; 0.200000;, +0.575000; 0.200000;, +0.587500; 0.200000;, +0.600000; 0.200000;, +0.612500; 0.200000;, +0.625000; 0.200000;, +0.637500; 0.200000;, +0.650000; 0.200000;, +0.662500; 0.200000;, +0.675000; 0.200000;, +0.687500; 0.200000;, +0.700000; 0.200000;, +0.712500; 0.200000;, +0.725000; 0.200000;, +0.737500; 0.200000;, +0.750000; 0.200000;, +0.762500; 0.200000;, +0.775000; 0.200000;, +0.787500; 0.200000;, +0.800000; 0.200000;, +0.812500; 0.200000;, +0.825000; 0.200000;, +0.837500; 0.200000;, +0.850000; 0.200000;, +0.862500; 0.200000;, +0.875000; 0.200000;, +0.887500; 0.200000;, +0.900000; 0.200000;, +0.912500; 0.200000;, +0.925000; 0.200000;, +0.937500; 0.200000;, +0.950000; 0.200000;, +0.962500; 0.200000;, +0.975000; 0.200000;, +0.987500; 0.200000;, +0.000000; 0.175000;, +0.012500; 0.175000;, +0.025000; 0.175000;, +0.037500; 0.175000;, +0.050000; 0.175000;, +0.062500; 0.175000;, +0.075000; 0.175000;, +0.087500; 0.175000;, +0.100000; 0.175000;, +0.112500; 0.175000;, +0.125000; 0.175000;, +0.137500; 0.175000;, +0.150000; 0.175000;, +0.162500; 0.175000;, +0.175000; 0.175000;, +0.187500; 0.175000;, +0.200000; 0.175000;, +0.212500; 0.175000;, +0.225000; 0.175000;, +0.237500; 0.175000;, +0.250000; 0.175000;, +0.262500; 0.175000;, +0.275000; 0.175000;, +0.287500; 0.175000;, +0.300000; 0.175000;, +0.312500; 0.175000;, +0.325000; 0.175000;, +0.337500; 0.175000;, +0.350000; 0.175000;, +0.362500; 0.175000;, +0.375000; 0.175000;, +0.387500; 0.175000;, +0.400000; 0.175000;, +0.412500; 0.175000;, +0.425000; 0.175000;, +0.437500; 0.175000;, +0.450000; 0.175000;, +0.462500; 0.175000;, +0.475000; 0.175000;, +0.487500; 0.175000;, +0.500000; 0.175000;, +0.512500; 0.175000;, +0.525000; 0.175000;, +0.537500; 0.175000;, +0.550000; 0.175000;, +0.562500; 0.175000;, +0.575000; 0.175000;, +0.587500; 0.175000;, +0.600000; 0.175000;, +0.612500; 0.175000;, +0.625000; 0.175000;, +0.637500; 0.175000;, +0.650000; 0.175000;, +0.662500; 0.175000;, +0.675000; 0.175000;, +0.687500; 0.175000;, +0.700000; 0.175000;, +0.712500; 0.175000;, +0.725000; 0.175000;, +0.737500; 0.175000;, +0.750000; 0.175000;, +0.762500; 0.175000;, +0.775000; 0.175000;, +0.787500; 0.175000;, +0.800000; 0.175000;, +0.812500; 0.175000;, +0.825000; 0.175000;, +0.837500; 0.175000;, +0.850000; 0.175000;, +0.862500; 0.175000;, +0.875000; 0.175000;, +0.887500; 0.175000;, +0.900000; 0.175000;, +0.912500; 0.175000;, +0.925000; 0.175000;, +0.937500; 0.175000;, +0.950000; 0.175000;, +0.962500; 0.175000;, +0.975000; 0.175000;, +0.987500; 0.175000;, +0.000000; 0.150000;, +0.012500; 0.150000;, +0.025000; 0.150000;, +0.037500; 0.150000;, +0.050000; 0.150000;, +0.062500; 0.150000;, +0.075000; 0.150000;, +0.087500; 0.150000;, +0.100000; 0.150000;, +0.112500; 0.150000;, +0.125000; 0.150000;, +0.137500; 0.150000;, +0.150000; 0.150000;, +0.162500; 0.150000;, +0.175000; 0.150000;, +0.187500; 0.150000;, +0.200000; 0.150000;, +0.212500; 0.150000;, +0.225000; 0.150000;, +0.237500; 0.150000;, +0.250000; 0.150000;, +0.262500; 0.150000;, +0.275000; 0.150000;, +0.287500; 0.150000;, +0.300000; 0.150000;, +0.312500; 0.150000;, +0.325000; 0.150000;, +0.337500; 0.150000;, +0.350000; 0.150000;, +0.362500; 0.150000;, +0.375000; 0.150000;, +0.387500; 0.150000;, +0.400000; 0.150000;, +0.412500; 0.150000;, +0.425000; 0.150000;, +0.437500; 0.150000;, +0.450000; 0.150000;, +0.462500; 0.150000;, +0.475000; 0.150000;, +0.487500; 0.150000;, +0.500000; 0.150000;, +0.512500; 0.150000;, +0.525000; 0.150000;, +0.537500; 0.150000;, +0.550000; 0.150000;, +0.562500; 0.150000;, +0.575000; 0.150000;, +0.587500; 0.150000;, +0.600000; 0.150000;, +0.612500; 0.150000;, +0.625000; 0.150000;, +0.637500; 0.150000;, +0.650000; 0.150000;, +0.662500; 0.150000;, +0.675000; 0.150000;, +0.687500; 0.150000;, +0.700000; 0.150000;, +0.712500; 0.150000;, +0.725000; 0.150000;, +0.737500; 0.150000;, +0.750000; 0.150000;, +0.762500; 0.150000;, +0.775000; 0.150000;, +0.787500; 0.150000;, +0.800000; 0.150000;, +0.812500; 0.150000;, +0.825000; 0.150000;, +0.837500; 0.150000;, +0.850000; 0.150000;, +0.862500; 0.150000;, +0.875000; 0.150000;, +0.887500; 0.150000;, +0.900000; 0.150000;, +0.912500; 0.150000;, +0.925000; 0.150000;, +0.937500; 0.150000;, +0.950000; 0.150000;, +0.962500; 0.150000;, +0.975000; 0.150000;, +0.987500; 0.150000;, +0.000000; 0.125000;, +0.012500; 0.125000;, +0.025000; 0.125000;, +0.037500; 0.125000;, +0.050000; 0.125000;, +0.062500; 0.125000;, +0.075000; 0.125000;, +0.087500; 0.125000;, +0.100000; 0.125000;, +0.112500; 0.125000;, +0.125000; 0.125000;, +0.137500; 0.125000;, +0.150000; 0.125000;, +0.162500; 0.125000;, +0.175000; 0.125000;, +0.187500; 0.125000;, +0.200000; 0.125000;, +0.212500; 0.125000;, +0.225000; 0.125000;, +0.237500; 0.125000;, +0.250000; 0.125000;, +0.262500; 0.125000;, +0.275000; 0.125000;, +0.287500; 0.125000;, +0.300000; 0.125000;, +0.312500; 0.125000;, +0.325000; 0.125000;, +0.337500; 0.125000;, +0.350000; 0.125000;, +0.362500; 0.125000;, +0.375000; 0.125000;, +0.387500; 0.125000;, +0.400000; 0.125000;, +0.412500; 0.125000;, +0.425000; 0.125000;, +0.437500; 0.125000;, +0.450000; 0.125000;, +0.462500; 0.125000;, +0.475000; 0.125000;, +0.487500; 0.125000;, +0.500000; 0.125000;, +0.512500; 0.125000;, +0.525000; 0.125000;, +0.537500; 0.125000;, +0.550000; 0.125000;, +0.562500; 0.125000;, +0.575000; 0.125000;, +0.587500; 0.125000;, +0.600000; 0.125000;, +0.612500; 0.125000;, +0.625000; 0.125000;, +0.637500; 0.125000;, +0.650000; 0.125000;, +0.662500; 0.125000;, +0.675000; 0.125000;, +0.687500; 0.125000;, +0.700000; 0.125000;, +0.712500; 0.125000;, +0.725000; 0.125000;, +0.737500; 0.125000;, +0.750000; 0.125000;, +0.762500; 0.125000;, +0.775000; 0.125000;, +0.787500; 0.125000;, +0.800000; 0.125000;, +0.812500; 0.125000;, +0.825000; 0.125000;, +0.837500; 0.125000;, +0.850000; 0.125000;, +0.862500; 0.125000;, +0.875000; 0.125000;, +0.887500; 0.125000;, +0.900000; 0.125000;, +0.912500; 0.125000;, +0.925000; 0.125000;, +0.937500; 0.125000;, +0.950000; 0.125000;, +0.962500; 0.125000;, +0.975000; 0.125000;, +0.987500; 0.125000;, +0.000000; 0.100000;, +0.012500; 0.100000;, +0.025000; 0.100000;, +0.037500; 0.100000;, +0.050000; 0.100000;, +0.062500; 0.100000;, +0.075000; 0.100000;, +0.087500; 0.100000;, +0.100000; 0.100000;, +0.112500; 0.100000;, +0.125000; 0.100000;, +0.137500; 0.100000;, +0.150000; 0.100000;, +0.162500; 0.100000;, +0.175000; 0.100000;, +0.187500; 0.100000;, +0.200000; 0.100000;, +0.212500; 0.100000;, +0.225000; 0.100000;, +0.237500; 0.100000;, +0.250000; 0.100000;, +0.262500; 0.100000;, +0.275000; 0.100000;, +0.287500; 0.100000;, +0.300000; 0.100000;, +0.312500; 0.100000;, +0.325000; 0.100000;, +0.337500; 0.100000;, +0.350000; 0.100000;, +0.362500; 0.100000;, +0.375000; 0.100000;, +0.387500; 0.100000;, +0.400000; 0.100000;, +0.412500; 0.100000;, +0.425000; 0.100000;, +0.437500; 0.100000;, +0.450000; 0.100000;, +0.462500; 0.100000;, +0.475000; 0.100000;, +0.487500; 0.100000;, +0.500000; 0.100000;, +0.512500; 0.100000;, +0.525000; 0.100000;, +0.537500; 0.100000;, +0.550000; 0.100000;, +0.562500; 0.100000;, +0.575000; 0.100000;, +0.587500; 0.100000;, +0.600000; 0.100000;, +0.612500; 0.100000;, +0.625000; 0.100000;, +0.637500; 0.100000;, +0.650000; 0.100000;, +0.662500; 0.100000;, +0.675000; 0.100000;, +0.687500; 0.100000;, +0.700000; 0.100000;, +0.712500; 0.100000;, +0.725000; 0.100000;, +0.737500; 0.100000;, +0.750000; 0.100000;, +0.762500; 0.100000;, +0.775000; 0.100000;, +0.787500; 0.100000;, +0.800000; 0.100000;, +0.812500; 0.100000;, +0.825000; 0.100000;, +0.837500; 0.100000;, +0.850000; 0.100000;, +0.862500; 0.100000;, +0.875000; 0.100000;, +0.887500; 0.100000;, +0.900000; 0.100000;, +0.912500; 0.100000;, +0.925000; 0.100000;, +0.937500; 0.100000;, +0.950000; 0.100000;, +0.962500; 0.100000;, +0.975000; 0.100000;, +0.987500; 0.100000;, +0.000000; 0.075000;, +0.012500; 0.075000;, +0.025000; 0.075000;, +0.037500; 0.075000;, +0.050000; 0.075000;, +0.062500; 0.075000;, +0.075000; 0.075000;, +0.087500; 0.075000;, +0.100000; 0.075000;, +0.112500; 0.075000;, +0.125000; 0.075000;, +0.137500; 0.075000;, +0.150000; 0.075000;, +0.162500; 0.075000;, +0.175000; 0.075000;, +0.187500; 0.075000;, +0.200000; 0.075000;, +0.212500; 0.075000;, +0.225000; 0.075000;, +0.237500; 0.075000;, +0.250000; 0.075000;, +0.262500; 0.075000;, +0.275000; 0.075000;, +0.287500; 0.075000;, +0.300000; 0.075000;, +0.312500; 0.075000;, +0.325000; 0.075000;, +0.337500; 0.075000;, +0.350000; 0.075000;, +0.362500; 0.075000;, +0.375000; 0.075000;, +0.387500; 0.075000;, +0.400000; 0.075000;, +0.412500; 0.075000;, +0.425000; 0.075000;, +0.437500; 0.075000;, +0.450000; 0.075000;, +0.462500; 0.075000;, +0.475000; 0.075000;, +0.487500; 0.075000;, +0.500000; 0.075000;, +0.512500; 0.075000;, +0.525000; 0.075000;, +0.537500; 0.075000;, +0.550000; 0.075000;, +0.562500; 0.075000;, +0.575000; 0.075000;, +0.587500; 0.075000;, +0.600000; 0.075000;, +0.612500; 0.075000;, +0.625000; 0.075000;, +0.637500; 0.075000;, +0.650000; 0.075000;, +0.662500; 0.075000;, +0.675000; 0.075000;, +0.687500; 0.075000;, +0.700000; 0.075000;, +0.712500; 0.075000;, +0.725000; 0.075000;, +0.737500; 0.075000;, +0.750000; 0.075000;, +0.762500; 0.075000;, +0.775000; 0.075000;, +0.787500; 0.075000;, +0.800000; 0.075000;, +0.812500; 0.075000;, +0.825000; 0.075000;, +0.837500; 0.075000;, +0.850000; 0.075000;, +0.862500; 0.075000;, +0.875000; 0.075000;, +0.887500; 0.075000;, +0.900000; 0.075000;, +0.912500; 0.075000;, +0.925000; 0.075000;, +0.937500; 0.075000;, +0.950000; 0.075000;, +0.962500; 0.075000;, +0.975000; 0.075000;, +0.987500; 0.075000;, +0.000000; 0.050000;, +0.012500; 0.050000;, +0.025000; 0.050000;, +0.037500; 0.050000;, +0.050000; 0.050000;, +0.062500; 0.050000;, +0.075000; 0.050000;, +0.087500; 0.050000;, +0.100000; 0.050000;, +0.112500; 0.050000;, +0.125000; 0.050000;, +0.137500; 0.050000;, +0.150000; 0.050000;, +0.162500; 0.050000;, +0.175000; 0.050000;, +0.187500; 0.050000;, +0.200000; 0.050000;, +0.212500; 0.050000;, +0.225000; 0.050000;, +0.237500; 0.050000;, +0.250000; 0.050000;, +0.262500; 0.050000;, +0.275000; 0.050000;, +0.287500; 0.050000;, +0.300000; 0.050000;, +0.312500; 0.050000;, +0.325000; 0.050000;, +0.337500; 0.050000;, +0.350000; 0.050000;, +0.362500; 0.050000;, +0.375000; 0.050000;, +0.387500; 0.050000;, +0.400000; 0.050000;, +0.412500; 0.050000;, +0.425000; 0.050000;, +0.437500; 0.050000;, +0.450000; 0.050000;, +0.462500; 0.050000;, +0.475000; 0.050000;, +0.487500; 0.050000;, +0.500000; 0.050000;, +0.512500; 0.050000;, +0.525000; 0.050000;, +0.537500; 0.050000;, +0.550000; 0.050000;, +0.562500; 0.050000;, +0.575000; 0.050000;, +0.587500; 0.050000;, +0.600000; 0.050000;, +0.612500; 0.050000;, +0.625000; 0.050000;, +0.637500; 0.050000;, +0.650000; 0.050000;, +0.662500; 0.050000;, +0.675000; 0.050000;, +0.687500; 0.050000;, +0.700000; 0.050000;, +0.712500; 0.050000;, +0.725000; 0.050000;, +0.737500; 0.050000;, +0.750000; 0.050000;, +0.762500; 0.050000;, +0.775000; 0.050000;, +0.787500; 0.050000;, +0.800000; 0.050000;, +0.812500; 0.050000;, +0.825000; 0.050000;, +0.837500; 0.050000;, +0.850000; 0.050000;, +0.862500; 0.050000;, +0.875000; 0.050000;, +0.887500; 0.050000;, +0.900000; 0.050000;, +0.912500; 0.050000;, +0.925000; 0.050000;, +0.937500; 0.050000;, +0.950000; 0.050000;, +0.962500; 0.050000;, +0.975000; 0.050000;, +0.987500; 0.050000;, +0.000000; 0.025000;, +0.012500; 0.025000;, +0.025000; 0.025000;, +0.037500; 0.025000;, +0.050000; 0.025000;, +0.062500; 0.025000;, +0.075000; 0.025000;, +0.087500; 0.025000;, +0.100000; 0.025000;, +0.112500; 0.025000;, +0.125000; 0.025000;, +0.137500; 0.025000;, +0.150000; 0.025000;, +0.162500; 0.025000;, +0.175000; 0.025000;, +0.187500; 0.025000;, +0.200000; 0.025000;, +0.212500; 0.025000;, +0.225000; 0.025000;, +0.237500; 0.025000;, +0.250000; 0.025000;, +0.262500; 0.025000;, +0.275000; 0.025000;, +0.287500; 0.025000;, +0.300000; 0.025000;, +0.312500; 0.025000;, +0.325000; 0.025000;, +0.337500; 0.025000;, +0.350000; 0.025000;, +0.362500; 0.025000;, +0.375000; 0.025000;, +0.387500; 0.025000;, +0.400000; 0.025000;, +0.412500; 0.025000;, +0.425000; 0.025000;, +0.437500; 0.025000;, +0.450000; 0.025000;, +0.462500; 0.025000;, +0.475000; 0.025000;, +0.487500; 0.025000;, +0.500000; 0.025000;, +0.512500; 0.025000;, +0.525000; 0.025000;, +0.537500; 0.025000;, +0.550000; 0.025000;, +0.562500; 0.025000;, +0.575000; 0.025000;, +0.587500; 0.025000;, +0.600000; 0.025000;, +0.612500; 0.025000;, +0.625000; 0.025000;, +0.637500; 0.025000;, +0.650000; 0.025000;, +0.662500; 0.025000;, +0.675000; 0.025000;, +0.687500; 0.025000;, +0.700000; 0.025000;, +0.712500; 0.025000;, +0.725000; 0.025000;, +0.737500; 0.025000;, +0.750000; 0.025000;, +0.762500; 0.025000;, +0.775000; 0.025000;, +0.787500; 0.025000;, +0.800000; 0.025000;, +0.812500; 0.025000;, +0.825000; 0.025000;, +0.837500; 0.025000;, +0.850000; 0.025000;, +0.862500; 0.025000;, +0.875000; 0.025000;, +0.887500; 0.025000;, +0.900000; 0.025000;, +0.912500; 0.025000;, +0.925000; 0.025000;, +0.937500; 0.025000;, +0.950000; 0.025000;, +0.962500; 0.025000;, +0.975000; 0.025000;, +0.987500; 0.025000;, +0.249700; 0.500000;, +0.250000; 0.500600;, +0.250300; 0.500000;, +0.749700; 0.500000;, +0.750000; 0.500600;, +0.750300; 0.500000;, +0.012500; 0.000000;, +0.025000; 0.000000;, +0.037500; 0.000000;, +0.050000; 0.000000;, +0.062500; 0.000000;, +0.075000; 0.000000;, +0.087500; 0.000000;, +0.100000; 0.000000;, +0.112500; 0.000000;, +0.125000; 0.000000;, +0.137500; 0.000000;, +0.150000; 0.000000;, +0.162500; 0.000000;, +0.175000; 0.000000;, +0.187500; 0.000000;, +0.200000; 0.000000;, +0.212500; 0.000000;, +0.225000; 0.000000;, +0.237500; 0.000000;, +0.250000; 0.000000;, +0.262500; 0.000000;, +0.275000; 0.000000;, +0.287500; 0.000000;, +0.300000; 0.000000;, +0.312500; 0.000000;, +0.325000; 0.000000;, +0.337500; 0.000000;, +0.350000; 0.000000;, +0.362500; 0.000000;, +0.375000; 0.000000;, +0.387500; 0.000000;, +0.400000; 0.000000;, +0.412500; 0.000000;, +0.425000; 0.000000;, +0.437500; 0.000000;, +0.450000; 0.000000;, +0.462500; 0.000000;, +0.475000; 0.000000;, +0.487500; 0.000000;, +0.500000; 0.000000;, +0.512500; 0.000000;, +0.525000; 0.000000;, +0.537500; 0.000000;, +0.550000; 0.000000;, +0.562500; 0.000000;, +0.575000; 0.000000;, +0.587500; 0.000000;, +0.600000; 0.000000;, +0.612500; 0.000000;, +0.625000; 0.000000;, +0.637500; 0.000000;, +0.650000; 0.000000;, +0.662500; 0.000000;, +0.675000; 0.000000;, +0.687500; 0.000000;, +0.700000; 0.000000;, +0.712500; 0.000000;, +0.725000; 0.000000;, +0.737500; 0.000000;, +0.750000; 0.000000;, +0.762500; 0.000000;, +0.775000; 0.000000;, +0.787500; 0.000000;, +0.800000; 0.000000;, +0.812500; 0.000000;, +0.825000; 0.000000;, +0.837500; 0.000000;, +0.850000; 0.000000;, +0.862500; 0.000000;, +0.875000; 0.000000;, +0.887500; 0.000000;, +0.900000; 0.000000;, +0.912500; 0.000000;, +0.925000; 0.000000;, +0.937500; 0.000000;, +0.950000; 0.000000;, +0.962500; 0.000000;, +0.975000; 0.000000;, +0.987500; 0.000000;, +0.000000; 0.500000;, +1.000000; 0.475000;, +1.000000; 0.450000;, +1.000000; 0.425000;, +1.000000; 0.400000;, +1.000000; 0.375000;, +1.000000; 0.350000;, +1.000000; 0.325000;, +1.000000; 0.300000;, +1.000000; 0.275000;, +1.000000; 0.250000;, +1.000000; 0.225000;, +1.000000; 0.200000;, +1.000000; 0.175000;, +1.000000; 0.150000;, +1.000000; 0.125000;, +1.000000; 0.100000;, +1.000000; 0.075000;, +1.000000; 0.050000;, +1.000000; 0.025000;; +} +} diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Songs/credits.ogg b/2.5DHero/2.5DHeroContent/SharedResources/Songs/credits.ogg new file mode 100644 index 000000000..a3b5c0897 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Songs/credits.ogg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Songs/evolution.ogg b/2.5DHero/2.5DHeroContent/SharedResources/Songs/evolution.ogg new file mode 100644 index 000000000..a970a94b2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Songs/evolution.ogg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Songs/gts.ogg b/2.5DHero/2.5DHeroContent/SharedResources/Songs/gts.ogg new file mode 100644 index 000000000..1c854e8b4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Songs/gts.ogg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Songs/lobby.ogg b/2.5DHero/2.5DHeroContent/SharedResources/Songs/lobby.ogg new file mode 100644 index 000000000..83270e4b8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Songs/lobby.ogg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Songs/pvp.ogg b/2.5DHero/2.5DHeroContent/SharedResources/Songs/pvp.ogg new file mode 100644 index 000000000..8c954748d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Songs/pvp.ogg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Songs/ride.ogg b/2.5DHero/2.5DHeroContent/SharedResources/Songs/ride.ogg new file mode 100644 index 000000000..068b3da0d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Songs/ride.ogg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Songs/surf.ogg b/2.5DHero/2.5DHeroContent/SharedResources/Songs/surf.ogg new file mode 100644 index 000000000..3b1c23cf8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Songs/surf.ogg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Songs/title.ogg b/2.5DHero/2.5DHeroContent/SharedResources/Songs/title.ogg new file mode 100644 index 000000000..d31280b2a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Songs/title.ogg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Damage/normaldamage.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Damage/normaldamage.mp3 new file mode 100644 index 000000000..c28e63936 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Damage/normaldamage.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Damage/not_effective.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Damage/not_effective.mp3 new file mode 100644 index 000000000..18f051aab Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Damage/not_effective.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Damage/super_effective.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Damage/super_effective.mp3 new file mode 100644 index 000000000..7adcc0cb9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Damage/super_effective.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_ember.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_ember.mp3 new file mode 100644 index 000000000..772a8514f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_ember.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_fly.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_fly.mp3 new file mode 100644 index 000000000..9d028e7e8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_fly.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_ice1.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_ice1.mp3 new file mode 100644 index 000000000..b7a925291 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_ice1.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_poison.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_poison.mp3 new file mode 100644 index 000000000..a3f05c063 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_poison.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_pound.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_pound.mp3 new file mode 100644 index 000000000..9ac42ef5d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_pound.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_thunderbolt.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_thunderbolt.mp3 new file mode 100644 index 000000000..3428e33f7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_thunderbolt.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_thundershock2.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_thundershock2.mp3 new file mode 100644 index 000000000..88f87f1c5 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/Effects/effect_thundershock2.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/ballshake.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/ballshake.mp3 new file mode 100644 index 000000000..484d33b72 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/ballshake.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/exp_max.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/exp_max.mp3 new file mode 100644 index 000000000..590450481 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/exp_max.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/pokeball_land.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/pokeball_land.mp3 new file mode 100644 index 000000000..0f170343f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/pokeball_land.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/running.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/running.mp3 new file mode 100644 index 000000000..f4acd3974 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/running.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/shiny.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/shiny.mp3 new file mode 100644 index 000000000..17683025e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/shiny.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/throw.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/throw.mp3 new file mode 100644 index 000000000..a2343bfbc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Battle/throw.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Pokegear/off.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Pokegear/off.mp3 new file mode 100644 index 000000000..eca992665 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Pokegear/off.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Pokegear/on.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Pokegear/on.mp3 new file mode 100644 index 000000000..1604f6c1f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/Pokegear/on.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/badgeAcquired.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/badgeAcquired.mp3 new file mode 100644 index 000000000..345b541f4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/badgeAcquired.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/bump.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/bump.mp3 new file mode 100644 index 000000000..40bba3e2f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/bump.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/buy.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/buy.mp3 new file mode 100644 index 000000000..49bdab6e0 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/buy.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/destroy.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/destroy.mp3 new file mode 100644 index 000000000..a7fe80a54 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/destroy.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/eggHatch.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/eggHatch.mp3 new file mode 100644 index 000000000..ef31f620c Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/eggHatch.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/enter.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/enter.mp3 new file mode 100644 index 000000000..59164a0a1 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/enter.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/itemFound.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/itemFound.mp3 new file mode 100644 index 000000000..c7b1057ec Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/itemFound.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/itemfinder.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/itemfinder.mp3 new file mode 100644 index 000000000..5c3acf3bf Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/itemfinder.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/jumpLedge.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/jumpLedge.mp3 new file mode 100644 index 000000000..e2268ac5d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/jumpLedge.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/menuOpen.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/menuOpen.mp3 new file mode 100644 index 000000000..104a0c860 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/menuOpen.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/pokeballOpen.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/pokeballOpen.mp3 new file mode 100644 index 000000000..506f50d02 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/pokeballOpen.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/pokeballShake.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/pokeballShake.mp3 new file mode 100644 index 000000000..b9b7a48da Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/pokeballShake.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/save.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/save.mp3 new file mode 100644 index 000000000..848bb55c7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/save.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/select.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/select.mp3 new file mode 100644 index 000000000..b98174915 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/select.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/success.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/success.mp3 new file mode 100644 index 000000000..8e0481c55 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/success.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/successSmall.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/successSmall.mp3 new file mode 100644 index 000000000..f639182d4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/successSmall.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/teleport.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/teleport.mp3 new file mode 100644 index 000000000..14f56b5f4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/teleport.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Sounds/tossPokeball.mp3 b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/tossPokeball.mp3 new file mode 100644 index 000000000..f45c41f17 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Sounds/tossPokeball.mp3 differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonA.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonA.tga new file mode 100644 index 000000000..7d420a2ac Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonA.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonB.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonB.tga new file mode 100644 index 000000000..f128ff992 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonB.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonX.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonX.tga new file mode 100644 index 000000000..92f4ce7ef Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonX.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonY.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonY.tga new file mode 100644 index 000000000..9fc6072d9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerButtonY.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftShoulder.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftShoulder.tga new file mode 100644 index 000000000..e0b35e3af Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftShoulder.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftThumbstick.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftThumbstick.tga new file mode 100644 index 000000000..aeea1b98d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftThumbstick.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftTrigger.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftTrigger.tga new file mode 100644 index 000000000..b9e3f79a7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerLeftTrigger.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerRightShoulder.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerRightShoulder.tga new file mode 100644 index 000000000..ae0b4ba36 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerRightShoulder.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerRightThumbstick.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerRightThumbstick.tga new file mode 100644 index 000000000..aa1f12dc0 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerRightThumbstick.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerRightTrigger.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerRightTrigger.tga new file mode 100644 index 000000000..6521aac6d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerRightTrigger.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerStart.tga b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerStart.tga new file mode 100644 index 000000000..8dcf0fe47 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Microsoft/XBOX/xboxControllerStart.tga differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/Templates/back.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/Templates/back.png new file mode 100644 index 000000000..1b7c0623e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/Templates/back.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/Templates/front.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/Templates/front.png new file mode 100644 index 000000000..34b193e2e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/Templates/front.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/Templates/menu.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/Templates/menu.png new file mode 100644 index 000000000..c3050a37e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/Templates/menu.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/back.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/back.png new file mode 100644 index 000000000..4ddb84107 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/back.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/front.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/front.png new file mode 100644 index 000000000..a1dc35a6e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Pokemon/Egg/front.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/auroraBoralis.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/auroraBoralis.png new file mode 100644 index 000000000..fbcc9122a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/auroraBoralis.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/cave.jpg b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/cave.jpg new file mode 100644 index 000000000..3a85df692 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/cave.jpg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/clouds.jpg b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/clouds.jpg new file mode 100644 index 000000000..9ebd5fbdb Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/clouds.jpg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/clouds1.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/clouds1.png new file mode 100644 index 000000000..f64f78218 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/clouds1.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/cloudsWeather.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/cloudsWeather.png new file mode 100644 index 000000000..9f1617323 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/cloudsWeather.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/dark.jpg b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/dark.jpg new file mode 100644 index 000000000..65bd34ff7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/dark.jpg differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/daycycle.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/daycycle.png new file mode 100644 index 000000000..78980ddaa Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/daycycle.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/forest.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/forest.png new file mode 100644 index 000000000..9b8c68c83 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/forest.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/moon.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/moon.png new file mode 100644 index 000000000..d0a31de96 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/moon.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/stars.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/stars.png new file mode 100644 index 000000000..3d75b6a96 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/stars.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/sun.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/sun.png new file mode 100644 index 000000000..fe5240ab6 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/sun.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/sunRise.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/sunRise.png new file mode 100644 index 000000000..d30f30bdf Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/sunRise.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/sunSet.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/sunSet.png new file mode 100644 index 000000000..67785f60b Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/sunSet.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/underwater.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/underwater.png new file mode 100644 index 000000000..53d943d16 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/underwater.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/underwaterGround.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/underwaterGround.png new file mode 100644 index 000000000..a7f70dfca Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/SkyDome/underwaterGround.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/battleFrontierIntro.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/battleFrontierIntro.png new file mode 100644 index 000000000..ab464d299 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/battleFrontierIntro.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/main.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/main.png new file mode 100644 index 000000000..da64ba419 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/main.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/vsIntro.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/vsIntro.png new file mode 100644 index 000000000..ccbccbff8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/vsIntro.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/weatherIcons.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/weatherIcons.png new file mode 100644 index 000000000..5e977c981 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Battle/weatherIcons.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Chat/icons.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Chat/icons.png new file mode 100644 index 000000000..176587ef8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Chat/icons.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Evolution/eggBreak.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Evolution/eggBreak.png new file mode 100644 index 000000000..c6b120d8a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Evolution/eggBreak.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Evolution/light.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Evolution/light.png new file mode 100644 index 000000000..f9ecde82e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Evolution/light.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Evolution/spark.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Evolution/spark.png new file mode 100644 index 000000000..5524c05b7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Evolution/spark.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GTS/main.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GTS/main.png new file mode 100644 index 000000000..581ff2a60 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GTS/main.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/alph.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/alph.png new file mode 100644 index 000000000..c5cb3395c Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/alph.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/border.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/border.png new file mode 100644 index 000000000..d08809e93 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/border.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/boulder.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/boulder.png new file mode 100644 index 000000000..4e6cd6cc9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/boulder.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/cascade.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/cascade.png new file mode 100644 index 000000000..5bccd7f38 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/cascade.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/champion.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/champion.png new file mode 100644 index 000000000..824d08293 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/champion.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/cyber.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/cyber.png new file mode 100644 index 000000000..d0e213f64 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/cyber.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/earth.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/earth.png new file mode 100644 index 000000000..135e0550a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/earth.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/eevee.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/eevee.png new file mode 100644 index 000000000..fcfb4cb2f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/eevee.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/eggsplosion.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/eggsplosion.png new file mode 100644 index 000000000..4425327ae Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/eggsplosion.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/fog.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/fog.png new file mode 100644 index 000000000..d0e2d7704 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/fog.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/genetics.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/genetics.png new file mode 100644 index 000000000..3dd98d897 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/genetics.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/glacier.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/glacier.png new file mode 100644 index 000000000..b0fcb04c6 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/glacier.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/glowing.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/glowing.png new file mode 100644 index 000000000..27ba4bf71 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/glowing.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/gold ability.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/gold ability.png new file mode 100644 index 000000000..45b2d1472 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/gold ability.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/gold knowledge.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/gold knowledge.png new file mode 100644 index 000000000..15163f378 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/gold knowledge.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/hive.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/hive.png new file mode 100644 index 000000000..7038604fe Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/hive.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/johto.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/johto.png new file mode 100644 index 000000000..5028e974a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/johto.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/kanto.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/kanto.png new file mode 100644 index 000000000..9956bdcba Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/kanto.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/legendary.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/legendary.png new file mode 100644 index 000000000..432759256 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/legendary.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/mailman.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/mailman.png new file mode 100644 index 000000000..4fbc9c63d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/mailman.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/marsh.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/marsh.png new file mode 100644 index 000000000..6f85f3ed8 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/marsh.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/material.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/material.png new file mode 100644 index 000000000..a84369c20 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/material.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/mineral.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/mineral.png new file mode 100644 index 000000000..ee40126ee Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/mineral.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/missingno.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/missingno.png new file mode 100644 index 000000000..657676bdc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/missingno.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/overkill.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/overkill.png new file mode 100644 index 000000000..32abdc658 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/overkill.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/plain.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/plain.png new file mode 100644 index 000000000..5705f4af5 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/plain.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/pokedex.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/pokedex.png new file mode 100644 index 000000000..596da335b Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/pokedex.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/rainbow.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/rainbow.png new file mode 100644 index 000000000..2626622b2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/rainbow.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/rising.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/rising.png new file mode 100644 index 000000000..3c56db5fe Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/rising.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/shooting star.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/shooting star.png new file mode 100644 index 000000000..3063d379f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/shooting star.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/silver ability.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/silver ability.png new file mode 100644 index 000000000..9c9a63ed3 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/silver ability.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/silver knowledge.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/silver knowledge.png new file mode 100644 index 000000000..9b7c0d8b7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/silver knowledge.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/snow.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/snow.png new file mode 100644 index 000000000..4891e585a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/snow.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/soul.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/soul.png new file mode 100644 index 000000000..f0e4238f7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/soul.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/stars.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/stars.png new file mode 100644 index 000000000..88697e7ae Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/stars.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/storm.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/storm.png new file mode 100644 index 000000000..68933b555 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/storm.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/thunder.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/thunder.png new file mode 100644 index 000000000..8ee848676 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/thunder.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/trainer.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/trainer.png new file mode 100644 index 000000000..687d704bb Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/trainer.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/unodostres.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/unodostres.png new file mode 100644 index 000000000..274612275 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/unodostres.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/volcano.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/volcano.png new file mode 100644 index 000000000..63c9ef507 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/volcano.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/zephyr.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/zephyr.png new file mode 100644 index 000000000..5b3a95edb Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Emblems/zephyr.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/0.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/0.png new file mode 100644 index 000000000..2a27c75c4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/0.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/1.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/1.png new file mode 100644 index 000000000..14adabfcb Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/1.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/2.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/2.png new file mode 100644 index 000000000..824cfeb1b Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/2.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/3.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/3.png new file mode 100644 index 000000000..7f18f3b90 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/Loading/3.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/gameJoltIcon.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/gameJoltIcon.png new file mode 100644 index 000000000..a5b799fc0 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/gameJoltIcon.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/login.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/login.png new file mode 100644 index 000000000..c1adc40c4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/login.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/logo.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/logo.png new file mode 100644 index 000000000..244a1e58d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/logo.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/question.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/question.png new file mode 100644 index 000000000..4cfd56a31 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/question.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/x.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/x.png new file mode 100644 index 000000000..dfc561d15 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/GameJolt/x.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Inventory/main.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Inventory/main.png new file mode 100644 index 000000000..b5a330ef3 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Inventory/main.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/KolbenBrand.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/KolbenBrand.png new file mode 100644 index 000000000..7870820d1 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/KolbenBrand.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/KolbenText.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/KolbenText.png new file mode 100644 index 000000000..674500f83 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/KolbenText.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/logoShine.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/logoShine.png new file mode 100644 index 000000000..bd564f7ae Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/logoShine.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/pokemon.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/pokemon.png new file mode 100644 index 000000000..41a7a83d7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Logos/pokemon.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Map/main.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Map/main.png new file mode 100644 index 000000000..2f1d34c08 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Map/main.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Overworld/darkOverlay.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Overworld/darkOverlay.png new file mode 100644 index 000000000..894c6538a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Overworld/darkOverlay.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Overworld/main.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Overworld/main.png new file mode 100644 index 000000000..a8108672e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Overworld/main.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Pokedex/main.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Pokedex/main.png new file mode 100644 index 000000000..24c855fc4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Pokedex/main.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Pokegear/main.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Pokegear/main.png new file mode 100644 index 000000000..092e5cceb Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Pokegear/main.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Pokemon/Summary/main.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Pokemon/Summary/main.png new file mode 100644 index 000000000..80a8bd04e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Pokemon/Summary/main.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/0.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/0.png new file mode 100644 index 000000000..4962e4806 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/0.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/1.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/1.png new file mode 100644 index 000000000..20d82f6b2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/1.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/10.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/10.png new file mode 100644 index 000000000..2482bbc72 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/10.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/11.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/11.png new file mode 100644 index 000000000..9a57adfef Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/11.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/12.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/12.png new file mode 100644 index 000000000..8c8250558 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/12.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/13.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/13.png new file mode 100644 index 000000000..d637ef890 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/13.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/14.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/14.png new file mode 100644 index 000000000..67766fc9e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/14.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/15.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/15.png new file mode 100644 index 000000000..d50d1ad75 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/15.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/16.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/16.png new file mode 100644 index 000000000..d9988ba9c Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/16.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/17.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/17.png new file mode 100644 index 000000000..3b7d2b0f7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/17.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/18.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/18.png new file mode 100644 index 000000000..97adc456c Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/18.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/19.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/19.png new file mode 100644 index 000000000..5ddf19c5e Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/19.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/2.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/2.png new file mode 100644 index 000000000..3bf3da52f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/2.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/20.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/20.png new file mode 100644 index 000000000..7c1e5148b Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/20.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/21.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/21.png new file mode 100644 index 000000000..eff401001 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/21.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/22.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/22.png new file mode 100644 index 000000000..3ac785861 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/22.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/23.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/23.png new file mode 100644 index 000000000..f02badabc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/23.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/3.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/3.png new file mode 100644 index 000000000..167d7b0b4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/3.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/4.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/4.png new file mode 100644 index 000000000..535b17f44 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/4.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/5.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/5.png new file mode 100644 index 000000000..30a61dcea Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/5.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/6.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/6.png new file mode 100644 index 000000000..8eac6e452 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/6.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/7.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/7.png new file mode 100644 index 000000000..c5804feb0 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/7.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/8.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/8.png new file mode 100644 index 000000000..b99a97811 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/8.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/9.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/9.png new file mode 100644 index 000000000..39d6cdbfb Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/9.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/battleBox.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/battleBox.png new file mode 100644 index 000000000..2a80d17a4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/battleBox.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/main.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/main.png new file mode 100644 index 000000000..d226e5339 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Storage/main.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Store/sparkle.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Store/sparkle.png new file mode 100644 index 000000000..5a507888d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/Store/sparkle.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/TrainerCard/Back.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/TrainerCard/Back.png new file mode 100644 index 000000000..d68bc9627 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/TrainerCard/Back.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/TrainerCard/Paperclip.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/TrainerCard/Paperclip.png new file mode 100644 index 000000000..29ba2132f Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/TrainerCard/Paperclip.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/TrainerCard/Papers.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/TrainerCard/Papers.png new file mode 100644 index 000000000..a593b50b9 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/TrainerCard/Papers.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/main.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/main.png new file mode 100644 index 000000000..771a8c74a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/UI/main.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/ash.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/ash.png new file mode 100644 index 000000000..31387002a Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/ash.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/ash2.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/ash2.png new file mode 100644 index 000000000..d50f27968 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/ash2.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/bubble.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/bubble.png new file mode 100644 index 000000000..044d835ae Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/bubble.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/rain.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/rain.png new file mode 100644 index 000000000..9d1317027 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/rain.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/rain2.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/rain2.png new file mode 100644 index 000000000..394498de7 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/rain2.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/rain3.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/rain3.png new file mode 100644 index 000000000..6f57091fc Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/rain3.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/sand.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/sand.png new file mode 100644 index 000000000..f06ed2aaf Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/sand.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/snow.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/snow.png new file mode 100644 index 000000000..2d904cc3d Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/snow.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/snow2.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/snow2.png new file mode 100644 index 000000000..5dfabf974 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/Weather/snow2.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/no_texture.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/no_texture.png new file mode 100644 index 000000000..23f2869b4 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/no_texture.png differ diff --git a/2.5DHero/2.5DHeroContent/SharedResources/Textures/unknownSprite.png b/2.5DHero/2.5DHeroContent/SharedResources/Textures/unknownSprite.png new file mode 100644 index 000000000..4d8c38bb2 Binary files /dev/null and b/2.5DHero/2.5DHeroContent/SharedResources/Textures/unknownSprite.png differ