Implemented custom sprite for manaphy egg

This commit is contained in:
CaptainSegis 2016-10-26 18:22:38 -05:00
parent 844671b578
commit 1751a7fe4e
5 changed files with 39 additions and 3 deletions

View File

@ -2372,11 +2372,23 @@ Public Class Pokemon
Textures(index) = net.Pokemon3D.Game.TextureManager.GetTexture("GUI\PokemonMenu" & shiny, New Rectangle(CInt(v.X) * 32, CInt(v.Y) * 32, s.Width, s.Height), "")
Case 5
Textures(index) = EggCreator.CreateEggSprite(Me, net.Pokemon3D.Game.TextureManager.GetTexture("GUI\PokemonMenu", New Rectangle(992, 992, 32, 32), ""), net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Templates\Menu"))
If Me.Number = 490 Then
Textures(index) = net.Pokemon3D.Game.TextureManager.GetTexture("GUI\PokemonMenu", New Rectangle(928, 992, 32, 32), "")
Else
Textures(index) = EggCreator.CreateEggSprite(Me, net.Pokemon3D.Game.TextureManager.GetTexture("GUI\PokemonMenu", New Rectangle(992, 992, 32, 32), ""), net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Templates\Menu"))
End If
Case 6
Textures(index) = EggCreator.CreateEggSprite(Me, net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Egg_front"), net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Templates\Front"))
If Me.Number = 490 Then
Textures(index) = net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Egg_manaphy_front")
Else
Textures(index) = EggCreator.CreateEggSprite(Me, net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Egg_front"), net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Templates\Front"))
End If
Case 7
Textures(index) = EggCreator.CreateEggSprite(Me, net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Egg_back"), net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Templates\Back"))
If Me.Number = 490 Then
Textures(index) = net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Egg_manaphy_back")
Else
Textures(index) = EggCreator.CreateEggSprite(Me, net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Egg_back"), net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Egg\Templates\Back"))
End If
Case 8
Dim addition As String = PokemonForms.GetOverworldAddition(Me)
Textures(index) = net.Pokemon3D.Game.TextureManager.GetTexture("Pokemon\Overworld\Normal\" & Me.Number & addition)

View File

@ -39936,3 +39936,27 @@
/processorParam:Quality=Best
/build:Songs/wild_defeat.ogg
#begin Pokemon/Egg/Egg_manaphy_back.png
/importer:TextureImporter
/processor:TextureProcessor
/processorParam:ColorKeyColor=255,0,255,255
/processorParam:ColorKeyEnabled=True
/processorParam:GenerateMipmaps=False
/processorParam:PremultiplyAlpha=True
/processorParam:ResizeToPowerOfTwo=False
/processorParam:MakeSquare=False
/processorParam:TextureFormat=Color
/build:Pokemon/Egg/Egg_manaphy_back.png
#begin Pokemon/Egg/Egg_manaphy_front.png
/importer:TextureImporter
/processor:TextureProcessor
/processorParam:ColorKeyColor=255,0,255,255
/processorParam:ColorKeyEnabled=True
/processorParam:GenerateMipmaps=False
/processorParam:PremultiplyAlpha=True
/processorParam:ResizeToPowerOfTwo=False
/processorParam:MakeSquare=False
/processorParam:TextureFormat=Color
/build:Pokemon/Egg/Egg_manaphy_front.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 562 KiB

After

Width:  |  Height:  |  Size: 590 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 981 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 959 B