Merge branch 'master' of https://github.com/pret/pokeemerald into sync-trade
@@ -9,7 +9,7 @@ If you run into trouble, ask for help on Discord or IRC (see [README.md](README.
|
|||||||
|
|
||||||
## Windows
|
## Windows
|
||||||
Windows has instructions for building with three possible terminals, providing 3 different options in case the user stumbles upon unexpected errors.
|
Windows has instructions for building with three possible terminals, providing 3 different options in case the user stumbles upon unexpected errors.
|
||||||
- [Windows 10 (WSL1)](#windows-10-wsl1) (**Fastest, highly recommended**, Windows 10 only)
|
- [Windows 10/11 (WSL1)](#windows-1011-wsl1) (**Fastest, highly recommended**, Windows 10 and 11 only)
|
||||||
- [Windows (msys2)](#windows-msys2) (Second fastest)
|
- [Windows (msys2)](#windows-msys2) (Second fastest)
|
||||||
- [Windows (Cygwin)](#windows-cygwin) (Slowest)
|
- [Windows (Cygwin)](#windows-cygwin) (Slowest)
|
||||||
|
|
||||||
@@ -26,7 +26,7 @@ All of the Windows instructions assume that the default drive is C:\\. If this d
|
|||||||
|
|
||||||
**A note of caution**: As Windows 7 is officially unsupported by Microsoft and Windows 8 has very little usage, some maintainers are unwilling to maintain the Windows 7/8 instructions. Thus, these instructions may break in the future with fixes taking longer than fixes to the Windows 10 instructions.
|
**A note of caution**: As Windows 7 is officially unsupported by Microsoft and Windows 8 has very little usage, some maintainers are unwilling to maintain the Windows 7/8 instructions. Thus, these instructions may break in the future with fixes taking longer than fixes to the Windows 10 instructions.
|
||||||
|
|
||||||
## Windows 10 (WSL1)
|
## Windows 10/11 (WSL1)
|
||||||
WSL1 is the preferred terminal to build **pokeemerald**. The following instructions will explain how to install WSL1 (referred to interchangeably as WSL).
|
WSL1 is the preferred terminal to build **pokeemerald**. The following instructions will explain how to install WSL1 (referred to interchangeably as WSL).
|
||||||
- If WSL (Debian or Ubuntu) is **not installed**, then go to [Installing WSL1](#Installing-WSL1).
|
- If WSL (Debian or Ubuntu) is **not installed**, then go to [Installing WSL1](#Installing-WSL1).
|
||||||
- Otherwise, if WSL is installed, but it **hasn't previously been set up for another decompilation project**, then go to [Setting up WSL1](#Setting-up-WSL1).
|
- Otherwise, if WSL is installed, but it **hasn't previously been set up for another decompilation project**, then go to [Setting up WSL1](#Setting-up-WSL1).
|
||||||
|
|||||||
@@ -1458,11 +1458,11 @@ FuryCutterStrongest:
|
|||||||
Move_SELF_DESTRUCT:
|
Move_SELF_DESTRUCT:
|
||||||
loadspritegfx ANIM_TAG_EXPLOSION
|
loadspritegfx ANIM_TAG_EXPLOSION
|
||||||
createvisualtask AnimTask_BlendBattleAnimPal, 10, F_PAL_ATTACKER, 1, 0, 9, RGB_RED
|
createvisualtask AnimTask_BlendBattleAnimPal, 10, F_PAL_ATTACKER, 1, 0, 9, RGB_RED
|
||||||
createvisualtask AnimTask_ShakeMon2, 5, 4, 6, 0, 38, 1
|
createvisualtask AnimTask_ShakeMon2, 5, ANIM_PLAYER_LEFT, 6, 0, 38, 1
|
||||||
createvisualtask AnimTask_ShakeMon2, 5, 5, 6, 0, 38, 1
|
createvisualtask AnimTask_ShakeMon2, 5, ANIM_PLAYER_RIGHT, 6, 0, 38, 1
|
||||||
createvisualtask AnimTask_ShakeMon2, 5, 6, 6, 0, 38, 1
|
createvisualtask AnimTask_ShakeMon2, 5, ANIM_OPPONENT_LEFT, 6, 0, 38, 1
|
||||||
createvisualtask AnimTask_ShakeMon2, 5, 7, 6, 0, 38, 1
|
createvisualtask AnimTask_ShakeMon2, 5, ANIM_OPPONENT_RIGHT, 6, 0, 38, 1
|
||||||
createvisualtask AnimTask_ShakeMon2, 5, 8, 6, 0, 38, 1
|
createvisualtask AnimTask_ShakeMon2, 5, ANIM_ATTACKER_FORCE, 6, 0, 38, 1
|
||||||
call SelfDestructExplode
|
call SelfDestructExplode
|
||||||
call SelfDestructExplode
|
call SelfDestructExplode
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
@@ -1624,11 +1624,11 @@ RisingWaterHitEffect:
|
|||||||
Move_EXPLOSION:
|
Move_EXPLOSION:
|
||||||
loadspritegfx ANIM_TAG_EXPLOSION
|
loadspritegfx ANIM_TAG_EXPLOSION
|
||||||
createsprite gComplexPaletteBlendSpriteTemplate, ANIM_ATTACKER, 2, F_PAL_BG, 8, 9, RGB(26, 8, 8), 8, RGB_BLACK, 8
|
createsprite gComplexPaletteBlendSpriteTemplate, ANIM_ATTACKER, 2, F_PAL_BG, 8, 9, RGB(26, 8, 8), 8, RGB_BLACK, 8
|
||||||
createvisualtask AnimTask_ShakeMon2, 5, 4, 8, 0, 40, 1
|
createvisualtask AnimTask_ShakeMon2, 5, ANIM_PLAYER_LEFT, 8, 0, 40, 1
|
||||||
createvisualtask AnimTask_ShakeMon2, 5, 5, 8, 0, 40, 1
|
createvisualtask AnimTask_ShakeMon2, 5, ANIM_PLAYER_RIGHT, 8, 0, 40, 1
|
||||||
createvisualtask AnimTask_ShakeMon2, 5, 6, 8, 0, 40, 1
|
createvisualtask AnimTask_ShakeMon2, 5, ANIM_OPPONENT_LEFT, 8, 0, 40, 1
|
||||||
createvisualtask AnimTask_ShakeMon2, 5, 7, 8, 0, 40, 1
|
createvisualtask AnimTask_ShakeMon2, 5, ANIM_OPPONENT_RIGHT, 8, 0, 40, 1
|
||||||
createvisualtask AnimTask_ShakeMon2, 5, 8, 8, 0, 40, 1
|
createvisualtask AnimTask_ShakeMon2, 5, ANIM_ATTACKER_FORCE, 8, 0, 40, 1
|
||||||
call Explosion1
|
call Explosion1
|
||||||
call Explosion1
|
call Explosion1
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
@@ -1657,12 +1657,12 @@ Explosion1:
|
|||||||
Move_DEFENSE_CURL:
|
Move_DEFENSE_CURL:
|
||||||
loadspritegfx ANIM_TAG_ECLIPSING_ORB
|
loadspritegfx ANIM_TAG_ECLIPSING_ORB
|
||||||
loopsewithpan SE_M_TRI_ATTACK, SOUND_PAN_ATTACKER, 18, 3
|
loopsewithpan SE_M_TRI_ATTACK, SOUND_PAN_ATTACKER, 18, 3
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_ATTACKER, 0
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_ATTACKER, FALSE
|
||||||
createvisualtask AnimTask_DefenseCurlDeformMon, 5
|
createvisualtask AnimTask_DefenseCurlDeformMon, 5
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createsprite gEclipsingOrbSpriteTemplate, ANIM_ATTACKER, 2, 0, 6, 0, 1
|
createsprite gEclipsingOrbSpriteTemplate, ANIM_ATTACKER, 2, 0, 6, 0, 1
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_ATTACKER, 1
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_ATTACKER, TRUE
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -3920,22 +3920,22 @@ Move_LUSTER_PURGE:
|
|||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createvisualtask AnimTask_BlendParticle, 5, ANIM_TAG_IMPACT, 0, 12, 12, RGB(0, 0, 23)
|
createvisualtask AnimTask_BlendParticle, 5, ANIM_TAG_IMPACT, 0, 12, 12, RGB(0, 0, 23)
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, 1, 2
|
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, ANIM_TARGET, 2
|
||||||
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
||||||
delay 3
|
delay 3
|
||||||
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, 1, 2
|
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, ANIM_TARGET, 2
|
||||||
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
||||||
delay 3
|
delay 3
|
||||||
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, 1, 2
|
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, ANIM_TARGET, 2
|
||||||
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
||||||
delay 3
|
delay 3
|
||||||
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, 1, 2
|
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, ANIM_TARGET, 2
|
||||||
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
||||||
delay 3
|
delay 3
|
||||||
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, 1, 2
|
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, ANIM_TARGET, 2
|
||||||
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
||||||
delay 3
|
delay 3
|
||||||
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, 1, 2
|
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, ANIM_TARGET, 2
|
||||||
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_HYPER_BEAM, SOUND_PAN_TARGET
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createvisualtask AnimTask_BlendBattleAnimPalExclude, 5, 5, 2, 16, 0, RGB_WHITEALPHA
|
createvisualtask AnimTask_BlendBattleAnimPalExclude, 5, 5, 2, 16, 0, RGB_WHITEALPHA
|
||||||
@@ -4360,7 +4360,7 @@ Move_AERIAL_ACE:
|
|||||||
|
|
||||||
Move_IRON_DEFENSE:
|
Move_IRON_DEFENSE:
|
||||||
loopsewithpan SE_SHINY, SOUND_PAN_ATTACKER, 28, 2
|
loopsewithpan SE_SHINY, SOUND_PAN_ATTACKER, 28, 2
|
||||||
createvisualtask AnimTask_MetallicShine, 5, 0, 0, 0
|
createvisualtask AnimTask_MetallicShine, 5, 0, 0, RGB_BLACK
|
||||||
createsprite gComplexPaletteBlendSpriteTemplate, ANIM_ATTACKER, 2, F_PAL_BG, 8, 2, RGB_WHITEALPHA, 14, RGB_WHITEALPHA, 0
|
createsprite gComplexPaletteBlendSpriteTemplate, ANIM_ATTACKER, 2, F_PAL_BG, 8, 2, RGB_WHITEALPHA, 14, RGB_WHITEALPHA, 0
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
end
|
end
|
||||||
@@ -4373,7 +4373,7 @@ Move_BLOCK:
|
|||||||
|
|
||||||
Move_HOWL:
|
Move_HOWL:
|
||||||
loadspritegfx ANIM_TAG_NOISE_LINE
|
loadspritegfx ANIM_TAG_NOISE_LINE
|
||||||
createvisualtask AnimTask_DeepInhale, 2, 0
|
createvisualtask AnimTask_DeepInhale, 2, ANIM_ATTACKER
|
||||||
delay 12
|
delay 12
|
||||||
call RoarEffect
|
call RoarEffect
|
||||||
createvisualtask SoundTask_PlayCryHighPitch, 2, ANIM_ATTACKER, 3
|
createvisualtask SoundTask_PlayCryHighPitch, 2, ANIM_ATTACKER, 3
|
||||||
@@ -4572,7 +4572,7 @@ Move_SHOCK_WAVE:
|
|||||||
|
|
||||||
Move_HARDEN:
|
Move_HARDEN:
|
||||||
loopsewithpan SE_M_HARDEN, SOUND_PAN_ATTACKER, 28, 2
|
loopsewithpan SE_M_HARDEN, SOUND_PAN_ATTACKER, 28, 2
|
||||||
createvisualtask AnimTask_MetallicShine, 5, 0, 0, 0
|
createvisualtask AnimTask_MetallicShine, 5, 0, 0, RGB_BLACK
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -5645,7 +5645,7 @@ HydroPumpBeams:
|
|||||||
createsprite gHydroPumpOrbSpriteTemplate, ANIM_ATTACKER, 3, 10, 10, 0, -16
|
createsprite gHydroPumpOrbSpriteTemplate, ANIM_ATTACKER, 3, 10, 10, 0, -16
|
||||||
delay 1
|
delay 1
|
||||||
return
|
return
|
||||||
HydroPumpHitSplats :
|
HydroPumpHitSplats:
|
||||||
createsprite gWaterHitSplatSpriteTemplate, ANIM_ATTACKER, 4, 0, 15, ANIM_TARGET, 1
|
createsprite gWaterHitSplatSpriteTemplate, ANIM_ATTACKER, 4, 0, 15, ANIM_TARGET, 1
|
||||||
createsprite gWaterHitSplatSpriteTemplate, ANIM_ATTACKER, 4, 0, -15, ANIM_TARGET, 1
|
createsprite gWaterHitSplatSpriteTemplate, ANIM_ATTACKER, 4, 0, -15, ANIM_TARGET, 1
|
||||||
return
|
return
|
||||||
@@ -7219,7 +7219,7 @@ Move_STEEL_WING:
|
|||||||
loadspritegfx ANIM_TAG_GUST
|
loadspritegfx ANIM_TAG_GUST
|
||||||
loadspritegfx ANIM_TAG_IMPACT
|
loadspritegfx ANIM_TAG_IMPACT
|
||||||
loopsewithpan SE_M_HARDEN, SOUND_PAN_ATTACKER, 28, 2
|
loopsewithpan SE_M_HARDEN, SOUND_PAN_ATTACKER, 28, 2
|
||||||
createvisualtask AnimTask_MetallicShine, 5, 0, 0, 0
|
createvisualtask AnimTask_MetallicShine, 5, 0, 0, RGB_BLACK
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
monbg ANIM_DEF_PARTNER
|
monbg ANIM_DEF_PARTNER
|
||||||
splitbgprio ANIM_TARGET
|
splitbgprio ANIM_TARGET
|
||||||
@@ -7245,7 +7245,7 @@ Move_STEEL_WING:
|
|||||||
Move_IRON_TAIL:
|
Move_IRON_TAIL:
|
||||||
loadspritegfx ANIM_TAG_IMPACT
|
loadspritegfx ANIM_TAG_IMPACT
|
||||||
loopsewithpan SE_M_HARDEN, SOUND_PAN_ATTACKER, 28, 2
|
loopsewithpan SE_M_HARDEN, SOUND_PAN_ATTACKER, 28, 2
|
||||||
createvisualtask AnimTask_MetallicShine, 5, 1, 0, 0
|
createvisualtask AnimTask_MetallicShine, 5, 1, 0, RGB_BLACK
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
monbg ANIM_TARGET
|
monbg ANIM_TARGET
|
||||||
setalpha 12, 8
|
setalpha 12, 8
|
||||||
@@ -7255,7 +7255,7 @@ Move_IRON_TAIL:
|
|||||||
createvisualtask AnimTask_ShakeMon, 2, ANIM_TARGET, 3, 0, 6, 1
|
createvisualtask AnimTask_ShakeMon, 2, ANIM_TARGET, 3, 0, 6, 1
|
||||||
playsewithpan SE_M_VITAL_THROW2, SOUND_PAN_TARGET
|
playsewithpan SE_M_VITAL_THROW2, SOUND_PAN_TARGET
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_ATTACKER, 1
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_ATTACKER, TRUE
|
||||||
clearmonbg ANIM_TARGET
|
clearmonbg ANIM_TARGET
|
||||||
blendoff
|
blendoff
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
@@ -7275,7 +7275,7 @@ Move_POISON_TAIL:
|
|||||||
createvisualtask AnimTask_ShakeMon, 2, ANIM_TARGET, 3, 0, 6, 1
|
createvisualtask AnimTask_ShakeMon, 2, ANIM_TARGET, 3, 0, 6, 1
|
||||||
playsewithpan SE_M_VITAL_THROW2, SOUND_PAN_TARGET
|
playsewithpan SE_M_VITAL_THROW2, SOUND_PAN_TARGET
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_ATTACKER, 1
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_ATTACKER, TRUE
|
||||||
clearmonbg ANIM_TARGET
|
clearmonbg ANIM_TARGET
|
||||||
blendoff
|
blendoff
|
||||||
call PoisonBubblesEffect
|
call PoisonBubblesEffect
|
||||||
@@ -7285,7 +7285,7 @@ Move_POISON_TAIL:
|
|||||||
Move_METAL_CLAW:
|
Move_METAL_CLAW:
|
||||||
loadspritegfx ANIM_TAG_CLAW_SLASH
|
loadspritegfx ANIM_TAG_CLAW_SLASH
|
||||||
loopsewithpan SE_M_HARDEN, SOUND_PAN_ATTACKER, 28, 2
|
loopsewithpan SE_M_HARDEN, SOUND_PAN_ATTACKER, 28, 2
|
||||||
createvisualtask AnimTask_MetallicShine, 5, 0, 0, 0
|
createvisualtask AnimTask_MetallicShine, 5, 0, 0, RGB_BLACK
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createsprite gHorizontalLungeSpriteTemplate, ANIM_ATTACKER, 2, 6, 4
|
createsprite gHorizontalLungeSpriteTemplate, ANIM_ATTACKER, 2, 6, 4
|
||||||
delay 2
|
delay 2
|
||||||
@@ -7947,16 +7947,16 @@ Move_PERISH_SONG:
|
|||||||
panse SE_M_PERISH_SONG, SOUND_PAN_ATTACKER, SOUND_PAN_TARGET, +2, 0
|
panse SE_M_PERISH_SONG, SOUND_PAN_ATTACKER, SOUND_PAN_TARGET, +2, 0
|
||||||
delay 80
|
delay 80
|
||||||
createsprite gSimplePaletteBlendSpriteTemplate, ANIM_ATTACKER, 2, F_PAL_BG, 3, 0, 16, RGB_BLACK
|
createsprite gSimplePaletteBlendSpriteTemplate, ANIM_ATTACKER, 2, F_PAL_BG, 3, 0, 16, RGB_BLACK
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, 4, 0
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_PLAYER_LEFT, FALSE
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, 5, 0
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_PLAYER_RIGHT, FALSE
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, 6, 0
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_OPPONENT_LEFT, FALSE
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, 7, 0
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_OPPONENT_RIGHT, FALSE
|
||||||
delay 100
|
delay 100
|
||||||
createsprite gSimplePaletteBlendSpriteTemplate, ANIM_ATTACKER, 2, F_PAL_BG, 3, 16, 0, RGB_BLACK
|
createsprite gSimplePaletteBlendSpriteTemplate, ANIM_ATTACKER, 2, F_PAL_BG, 3, 16, 0, RGB_BLACK
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, 4, 1
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_PLAYER_LEFT, TRUE
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, 5, 1
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_PLAYER_RIGHT, TRUE
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, 6, 1
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_OPPONENT_LEFT, TRUE
|
||||||
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, 7, 1
|
createvisualtask AnimTask_SetGrayscaleOrOriginalPal, 5, ANIM_OPPONENT_RIGHT, TRUE
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -8102,7 +8102,7 @@ Move_ENCORE:
|
|||||||
loadspritegfx ANIM_TAG_SPOTLIGHT
|
loadspritegfx ANIM_TAG_SPOTLIGHT
|
||||||
loadspritegfx ANIM_TAG_TAG_HAND
|
loadspritegfx ANIM_TAG_TAG_HAND
|
||||||
createvisualtask AnimTask_CreateSpotlight, 2
|
createvisualtask AnimTask_CreateSpotlight, 2
|
||||||
createvisualtask AnimTask_HardwarePaletteFade, 2, 248, 3, 0, 10, 0
|
createvisualtask AnimTask_HardwarePaletteFade, 2, BLDCNT_TGT1_BG3 | BLDCNT_TGT1_OBJ | BLDCNT_TGT1_BD | BLDCNT_EFFECT_DARKEN, 3, 0, 10, FALSE
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createsprite gSpotlightSpriteTemplate, ANIM_TARGET, 2, 0, -8
|
createsprite gSpotlightSpriteTemplate, ANIM_TARGET, 2, 0, -8
|
||||||
createsprite gClappingHandSpriteTemplate, ANIM_ATTACKER, 2, -2, 0, 0, 0, 9
|
createsprite gClappingHandSpriteTemplate, ANIM_ATTACKER, 2, -2, 0, 0, 0, 9
|
||||||
@@ -8113,7 +8113,7 @@ Move_ENCORE:
|
|||||||
createvisualtask SoundTask_PlaySE2WithPanning, 5, SE_M_ENCORE2, SOUND_PAN_TARGET
|
createvisualtask SoundTask_PlaySE2WithPanning, 5, SE_M_ENCORE2, SOUND_PAN_TARGET
|
||||||
createvisualtask AnimTask_SwayMon, 5, 1, 8, 1536, 5, ANIM_TARGET
|
createvisualtask AnimTask_SwayMon, 5, 1, 8, 1536, 5, ANIM_TARGET
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createvisualtask AnimTask_HardwarePaletteFade, 2, 248, 3, 10, 0, 1
|
createvisualtask AnimTask_HardwarePaletteFade, 2, BLDCNT_TGT1_BG3 | BLDCNT_TGT1_OBJ | BLDCNT_TGT1_BD | BLDCNT_EFFECT_DARKEN, 3, 10, 0, TRUE
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createvisualtask AnimTask_RemoveSpotlight, 2
|
createvisualtask AnimTask_RemoveSpotlight, 2
|
||||||
end
|
end
|
||||||
@@ -8364,7 +8364,7 @@ Move_HYPER_BEAM:
|
|||||||
delay 30
|
delay 30
|
||||||
createsoundtask SoundTask_LoopSEAdjustPanning, SE_M_HYPER_BEAM2, SOUND_PAN_ATTACKER, SOUND_PAN_TARGET, 1, 15, 0, 5
|
createsoundtask SoundTask_LoopSEAdjustPanning, SE_M_HYPER_BEAM2, SOUND_PAN_ATTACKER, SOUND_PAN_TARGET, 1, 15, 0, 5
|
||||||
createvisualtask AnimTask_ShakeMon, 2, ANIM_ATTACKER, 0, 4, 50, 1
|
createvisualtask AnimTask_ShakeMon, 2, ANIM_ATTACKER, 0, 4, 50, 1
|
||||||
createvisualtask AnimTask_FlashAnimTagWithColor, 2, ANIM_TAG_ORBS, 1, 12, RGB(31, 0, 0), 16, 0, 0
|
createvisualtask AnimTask_FlashAnimTagWithColor, 2, ANIM_TAG_ORBS, 1, 12, RGB_RED, 16, 0, 0
|
||||||
call HyperBeamOrbs
|
call HyperBeamOrbs
|
||||||
call HyperBeamOrbs
|
call HyperBeamOrbs
|
||||||
call HyperBeamOrbs
|
call HyperBeamOrbs
|
||||||
@@ -8408,7 +8408,7 @@ Move_FLATTER:
|
|||||||
loadspritegfx ANIM_TAG_CONFETTI
|
loadspritegfx ANIM_TAG_CONFETTI
|
||||||
createvisualtask SoundTask_PlaySE2WithPanning, 5, SE_M_ENCORE2, SOUND_PAN_TARGET
|
createvisualtask SoundTask_PlaySE2WithPanning, 5, SE_M_ENCORE2, SOUND_PAN_TARGET
|
||||||
createvisualtask AnimTask_CreateSpotlight, 2
|
createvisualtask AnimTask_CreateSpotlight, 2
|
||||||
createvisualtask AnimTask_HardwarePaletteFade, 2, 248, 3, 0, 10, 0
|
createvisualtask AnimTask_HardwarePaletteFade, 2, BLDCNT_TGT1_BG3 | BLDCNT_TGT1_OBJ | BLDCNT_TGT1_BD | BLDCNT_EFFECT_DARKEN, 3, 0, 10, FALSE
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createsprite gFlatterSpotlightSpriteTemplate, ANIM_TARGET, 2, 0, -8, 80
|
createsprite gFlatterSpotlightSpriteTemplate, ANIM_TARGET, 2, 0, -8, 80
|
||||||
delay 0
|
delay 0
|
||||||
@@ -8439,7 +8439,7 @@ Move_FLATTER:
|
|||||||
delay 5
|
delay 5
|
||||||
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_FLATTER, SOUND_PAN_TARGET
|
createvisualtask SoundTask_PlaySE1WithPanning, 5, SE_M_FLATTER, SOUND_PAN_TARGET
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createvisualtask AnimTask_HardwarePaletteFade, 2, 248, 3, 10, 0, 1
|
createvisualtask AnimTask_HardwarePaletteFade, 2, BLDCNT_TGT1_BG3 | BLDCNT_TGT1_OBJ | BLDCNT_TGT1_BD | BLDCNT_EFFECT_DARKEN, 3, 10, 0, TRUE
|
||||||
waitforvisualfinish
|
waitforvisualfinish
|
||||||
createvisualtask AnimTask_RemoveSpotlight, 2
|
createvisualtask AnimTask_RemoveSpotlight, 2
|
||||||
end
|
end
|
||||||
@@ -9680,10 +9680,10 @@ Move_TWISTER:
|
|||||||
createvisualtask AnimTask_ShakeMonInPlace, 2, ANIM_TARGET, 3, 0, 12, 1
|
createvisualtask AnimTask_ShakeMonInPlace, 2, ANIM_TARGET, 3, 0, 12, 1
|
||||||
createvisualtask AnimTask_ShakeMonInPlace, 2, ANIM_DEF_PARTNER, 3, 0, 12, 1
|
createvisualtask AnimTask_ShakeMonInPlace, 2, ANIM_DEF_PARTNER, 3, 0, 12, 1
|
||||||
delay 4
|
delay 4
|
||||||
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, 1, 3
|
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, ANIM_TARGET, 3
|
||||||
playsewithpan SE_M_COMET_PUNCH, SOUND_PAN_TARGET
|
playsewithpan SE_M_COMET_PUNCH, SOUND_PAN_TARGET
|
||||||
delay 4
|
delay 4
|
||||||
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, 1, 3
|
createsprite gRandomPosHitSplatSpriteTemplate, ANIM_TARGET, 3, ANIM_TARGET, 3
|
||||||
playsewithpan SE_M_COMET_PUNCH, SOUND_PAN_TARGET
|
playsewithpan SE_M_COMET_PUNCH, SOUND_PAN_TARGET
|
||||||
delay 4
|
delay 4
|
||||||
createsprite gBasicHitSplatSpriteTemplate, ANIM_TARGET, 3, 32, 20, ANIM_TARGET, 3
|
createsprite gBasicHitSplatSpriteTemplate, ANIM_TARGET, 3, 32, 20, ANIM_TARGET, 3
|
||||||
|
|||||||
@@ -411,7 +411,13 @@ BattleFrontier_BattleTowerLobby_EventScript_SaveBeforeLinkMultisChallenge::
|
|||||||
special LoadPlayerParty
|
special LoadPlayerParty
|
||||||
closemessage
|
closemessage
|
||||||
delay 2
|
delay 2
|
||||||
|
@ The command tower_save ultimately calls TrySavingData(SAVE_LINK), which writes data in SaveBlock1 and SaveBlock2
|
||||||
|
@ to the flash, but not data in PokemonStorage. The SaveGame script that follows asks the player to do a full save,
|
||||||
|
@ which they can opt out of. As a result the player can save their party and quit without having saved the PC.
|
||||||
|
@ This allows players to clone pokemon and their held items by withdrawing them (or erase them by despositing).
|
||||||
|
.ifndef BUGFIX
|
||||||
tower_save 0
|
tower_save 0
|
||||||
|
.endif
|
||||||
call Common_EventScript_SaveGame
|
call Common_EventScript_SaveGame
|
||||||
setvar VAR_TEMP_0, 255
|
setvar VAR_TEMP_0, 255
|
||||||
goto_if_eq VAR_RESULT, 0, BattleFrontier_BattleTowerLobby_EventScript_CancelChallengeSaveFailed
|
goto_if_eq VAR_RESULT, 0, BattleFrontier_BattleTowerLobby_EventScript_CancelChallengeSaveFailed
|
||||||
|
|||||||
@@ -258,7 +258,7 @@ gSpecials::
|
|||||||
def_special CallSlateportTentFunction
|
def_special CallSlateportTentFunction
|
||||||
def_special ChoosePartyForBattleFrontier
|
def_special ChoosePartyForBattleFrontier
|
||||||
def_special ValidateEReaderTrainer
|
def_special ValidateEReaderTrainer
|
||||||
def_special GetBestBattleTowerStreak
|
def_special GetBattleTowerSinglesStreak
|
||||||
def_special ReducePlayerPartyToSelectedMons
|
def_special ReducePlayerPartyToSelectedMons
|
||||||
def_special BedroomPC
|
def_special BedroomPC
|
||||||
def_special PlayerPC
|
def_special PlayerPC
|
||||||
@@ -430,7 +430,7 @@ gSpecials::
|
|||||||
def_special ShowWirelessCommunicationScreen
|
def_special ShowWirelessCommunicationScreen
|
||||||
def_special InitUnionRoom
|
def_special InitUnionRoom
|
||||||
def_special BufferUnionRoomPlayerName
|
def_special BufferUnionRoomPlayerName
|
||||||
def_special RetrieveWonderNewsVal
|
def_special WonderNews_GetRewardInfo
|
||||||
def_special ChooseMonForWirelessMinigame
|
def_special ChooseMonForWirelessMinigame
|
||||||
def_special Script_ResetUnionRoomTrade
|
def_special Script_ResetUnionRoomTrade
|
||||||
def_special IsBadEggInParty
|
def_special IsBadEggInParty
|
||||||
|
|||||||
@@ -1053,7 +1053,7 @@ void WriteSequenceToBgTilemapBuffer(u8 bg, u16 firstTileNum, u8 x, u8 y, u8 widt
|
|||||||
for (x16 = x; x16 < (x + width); x16++)
|
for (x16 = x; x16 < (x + width); x16++)
|
||||||
{
|
{
|
||||||
CopyTileMapEntry(&firstTileNum, &((u16 *)sGpuBgConfigs2[bg].tilemap)[(u16)GetTileMapIndexFromCoords(x16, y16, attribute, mode, mode2)], paletteSlot, 0, 0);
|
CopyTileMapEntry(&firstTileNum, &((u16 *)sGpuBgConfigs2[bg].tilemap)[(u16)GetTileMapIndexFromCoords(x16, y16, attribute, mode, mode2)], paletteSlot, 0, 0);
|
||||||
firstTileNum = (firstTileNum & (MAPGRID_COLLISION_MASK | MAPGRID_ELEVATION_MASK)) + ((firstTileNum + tileNumDelta) & MAPGRID_METATILE_ID_MASK);
|
firstTileNum = (firstTileNum & 0xFC00) + ((firstTileNum + tileNumDelta) & 0x3FF);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -1064,7 +1064,7 @@ void WriteSequenceToBgTilemapBuffer(u8 bg, u16 firstTileNum, u8 x, u8 y, u8 widt
|
|||||||
for (x16 = x; x16 < (x + width); x16++)
|
for (x16 = x; x16 < (x + width); x16++)
|
||||||
{
|
{
|
||||||
((u8 *)sGpuBgConfigs2[bg].tilemap)[(y16 * mode3) + x16] = firstTileNum;
|
((u8 *)sGpuBgConfigs2[bg].tilemap)[(y16 * mode3) + x16] = firstTileNum;
|
||||||
firstTileNum = (firstTileNum & (MAPGRID_COLLISION_MASK | MAPGRID_ELEVATION_MASK)) + ((firstTileNum + tileNumDelta) & MAPGRID_METATILE_ID_MASK);
|
firstTileNum = (firstTileNum & 0xFC00) + ((firstTileNum + tileNumDelta) & 0x3FF);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -1615,7 +1615,7 @@ void LoadSpritePalettes(const struct SpritePalette *palettes)
|
|||||||
|
|
||||||
void DoLoadSpritePalette(const u16 *src, u16 paletteOffset)
|
void DoLoadSpritePalette(const u16 *src, u16 paletteOffset)
|
||||||
{
|
{
|
||||||
LoadPalette(src, paletteOffset + 0x100, 32);
|
LoadPalette(src, OBJ_PLTT_OFFSET + paletteOffset, PLTT_SIZE_4BPP);
|
||||||
}
|
}
|
||||||
|
|
||||||
u8 AllocSpritePalette(u16 tag)
|
u8 AllocSpritePalette(u16 tag)
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.4 KiB |
|
After Width: | Height: | Size: 158 B |
|
Before Width: | Height: | Size: 103 B |
|
After Width: | Height: | Size: 531 B |
|
Before Width: | Height: | Size: 198 B After Width: | Height: | Size: 531 B |
|
Before Width: | Height: | Size: 199 B After Width: | Height: | Size: 530 B |
|
Before Width: | Height: | Size: 198 B After Width: | Height: | Size: 530 B |
|
Before Width: | Height: | Size: 176 B |
|
Before Width: | Height: | Size: 177 B |
|
Before Width: | Height: | Size: 176 B |
|
Before Width: | Height: | Size: 176 B |
|
Before Width: | Height: | Size: 176 B |
@@ -1,147 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
144
|
|
||||||
98 172 180
|
|
||||||
255 213 156
|
|
||||||
255 197 139
|
|
||||||
255 164 106
|
|
||||||
238 131 82
|
|
||||||
222 123 74
|
|
||||||
213 98 49
|
|
||||||
197 82 41
|
|
||||||
156 213 189
|
|
||||||
123 180 156
|
|
||||||
222 156 255
|
|
||||||
172 123 222
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
230 230 255
|
|
||||||
65 74 90
|
|
||||||
156 148 172
|
|
||||||
255 213 156
|
|
||||||
255 197 139
|
|
||||||
255 164 106
|
|
||||||
238 131 82
|
|
||||||
222 123 74
|
|
||||||
213 98 49
|
|
||||||
197 82 41
|
|
||||||
255 238 0
|
|
||||||
230 189 0
|
|
||||||
180 180 180
|
|
||||||
139 139 139
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
230 230 255
|
|
||||||
65 74 90
|
|
||||||
156 148 172
|
|
||||||
255 213 156
|
|
||||||
255 197 139
|
|
||||||
255 164 106
|
|
||||||
238 131 82
|
|
||||||
222 123 74
|
|
||||||
213 98 49
|
|
||||||
197 82 41
|
|
||||||
197 213 246
|
|
||||||
255 255 255
|
|
||||||
238 238 246
|
|
||||||
205 205 213
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
230 230 255
|
|
||||||
65 74 90
|
|
||||||
255 180 255
|
|
||||||
164 172 172
|
|
||||||
98 106 115
|
|
||||||
123 131 139
|
|
||||||
139 148 156
|
|
||||||
148 222 164
|
|
||||||
156 189 222
|
|
||||||
197 213 246
|
|
||||||
180 164 115
|
|
||||||
205 189 148
|
|
||||||
213 205 172
|
|
||||||
230 222 189
|
|
||||||
246 238 205
|
|
||||||
139 123 74
|
|
||||||
74 131 189
|
|
||||||
65 74 90
|
|
||||||
0 0 0
|
|
||||||
148 222 164
|
|
||||||
164 230 172
|
|
||||||
180 238 189
|
|
||||||
197 246 205
|
|
||||||
213 255 222
|
|
||||||
238 255 238
|
|
||||||
255 255 255
|
|
||||||
65 180 238
|
|
||||||
255 255 255
|
|
||||||
0 197 57
|
|
||||||
255 255 255
|
|
||||||
246 213 0
|
|
||||||
255 0 255
|
|
||||||
246 238 205
|
|
||||||
139 123 74
|
|
||||||
255 164 106
|
|
||||||
164 172 172
|
|
||||||
98 106 115
|
|
||||||
123 131 139
|
|
||||||
139 148 156
|
|
||||||
115 156 189
|
|
||||||
156 189 222
|
|
||||||
197 213 246
|
|
||||||
180 164 115
|
|
||||||
205 189 148
|
|
||||||
213 205 172
|
|
||||||
230 222 189
|
|
||||||
246 238 205
|
|
||||||
139 123 74
|
|
||||||
74 131 189
|
|
||||||
65 74 90
|
|
||||||
0 0 0
|
|
||||||
148 222 164
|
|
||||||
164 230 172
|
|
||||||
180 238 189
|
|
||||||
197 246 205
|
|
||||||
213 255 222
|
|
||||||
238 255 238
|
|
||||||
255 255 255
|
|
||||||
189 65 255
|
|
||||||
255 255 255
|
|
||||||
123 123 123
|
|
||||||
255 0 255
|
|
||||||
246 238 205
|
|
||||||
139 123 74
|
|
||||||
180 189 189
|
|
||||||
255 255 255
|
|
||||||
0 0 255
|
|
||||||
164 172 172
|
|
||||||
98 106 115
|
|
||||||
123 131 139
|
|
||||||
139 148 156
|
|
||||||
115 156 189
|
|
||||||
156 189 222
|
|
||||||
148 222 164
|
|
||||||
180 164 115
|
|
||||||
205 189 148
|
|
||||||
213 205 172
|
|
||||||
230 222 189
|
|
||||||
246 238 205
|
|
||||||
139 123 74
|
|
||||||
74 131 189
|
|
||||||
65 74 90
|
|
||||||
98 172 180
|
|
||||||
41 41 57
|
|
||||||
213 213 222
|
|
||||||
205 205 205
|
|
||||||
238 238 238
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.4 KiB |
@@ -1,67 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
64
|
|
||||||
0 0 0
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
255 230 139
|
|
||||||
238 205 123
|
|
||||||
222 189 115
|
|
||||||
205 172 106
|
|
||||||
189 156 98
|
|
||||||
180 139 90
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
0 0 0
|
|
||||||
189 255 148
|
|
||||||
156 222 98
|
|
||||||
131 197 74
|
|
||||||
106 164 49
|
|
||||||
82 115 24
|
|
||||||
57 82 0
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
0 0 0
|
|
||||||
213 238 255
|
|
||||||
189 230 255
|
|
||||||
164 222 255
|
|
||||||
139 213 255
|
|
||||||
115 205 255
|
|
||||||
98 205 255
|
|
||||||
197 205 222
|
|
||||||
189 189 197
|
|
||||||
180 164 164
|
|
||||||
156 131 131
|
|
||||||
131 90 90
|
|
||||||
123 65 65
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
230 106 189
|
|
||||||
0 0 0
|
|
||||||
197 205 246
|
|
||||||
172 189 238
|
|
||||||
156 172 238
|
|
||||||
131 156 230
|
|
||||||
115 139 230
|
|
||||||
98 123 230
|
|
||||||
65 74 106
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -1,259 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
256
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
230 230 230
|
|
||||||
197 197 197
|
|
||||||
148 148 148
|
|
||||||
74 65 82
|
|
||||||
0 255 0
|
|
||||||
0 255 0
|
|
||||||
65 74 123
|
|
||||||
139 123 131
|
|
||||||
82 82 197
|
|
||||||
189 82 74
|
|
||||||
131 74 98
|
|
||||||
74 74 131
|
|
||||||
131 139 222
|
|
||||||
106 164 164
|
|
||||||
0 0 0
|
|
||||||
115 123 156
|
|
||||||
90 65 57
|
|
||||||
148 197 106
|
|
||||||
123 98 65
|
|
||||||
131 123 49
|
|
||||||
222 189 148
|
|
||||||
164 131 106
|
|
||||||
115 164 82
|
|
||||||
164 148 57
|
|
||||||
90 106 139
|
|
||||||
180 172 82
|
|
||||||
82 139 49
|
|
||||||
255 230 189
|
|
||||||
222 131 41
|
|
||||||
246 246 222
|
|
||||||
205 148 115
|
|
||||||
255 106 115
|
|
||||||
255 57 57
|
|
||||||
156 0 0
|
|
||||||
164 222 255
|
|
||||||
106 148 255
|
|
||||||
49 82 255
|
|
||||||
255 255 115
|
|
||||||
246 222 65
|
|
||||||
230 106 0
|
|
||||||
255 255 255
|
|
||||||
189 189 197
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
0 0 0
|
|
||||||
255 255 115
|
|
||||||
246 222 90
|
|
||||||
238 189 65
|
|
||||||
238 164 41
|
|
||||||
230 131 16
|
|
||||||
230 106 0
|
|
||||||
255 41 0
|
|
||||||
255 148 82
|
|
||||||
255 255 164
|
|
||||||
255 255 255
|
|
||||||
189 189 197
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
0 0 0
|
|
||||||
255 131 106
|
|
||||||
197 24 16
|
|
||||||
164 222 255
|
|
||||||
106 148 255
|
|
||||||
49 82 255
|
|
||||||
255 197 255
|
|
||||||
255 139 255
|
|
||||||
213 0 139
|
|
||||||
148 255 164
|
|
||||||
65 205 57
|
|
||||||
246 222 65
|
|
||||||
230 106 0
|
|
||||||
255 255 255
|
|
||||||
65 74 106
|
|
||||||
65 74 106
|
|
||||||
197 255 255
|
|
||||||
246 246 90
|
|
||||||
205 205 65
|
|
||||||
255 255 180
|
|
||||||
180 180 24
|
|
||||||
74 65 82
|
|
||||||
255 255 255
|
|
||||||
156 156 156
|
|
||||||
255 156 156
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
255 148 148
|
|
||||||
255 123 98
|
|
||||||
255 0 0
|
|
||||||
148 148 148
|
|
||||||
0 0 0
|
|
||||||
197 255 255
|
|
||||||
246 246 90
|
|
||||||
205 205 65
|
|
||||||
255 255 180
|
|
||||||
180 180 24
|
|
||||||
74 65 82
|
|
||||||
255 255 255
|
|
||||||
156 156 156
|
|
||||||
255 156 156
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
255 148 148
|
|
||||||
255 123 98
|
|
||||||
255 0 0
|
|
||||||
148 148 148
|
|
||||||
0 0 0
|
|
||||||
197 255 255
|
|
||||||
246 246 90
|
|
||||||
205 205 65
|
|
||||||
255 255 180
|
|
||||||
180 180 24
|
|
||||||
74 65 82
|
|
||||||
255 255 255
|
|
||||||
156 156 156
|
|
||||||
255 156 156
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
255 148 148
|
|
||||||
255 123 98
|
|
||||||
255 0 0
|
|
||||||
148 148 148
|
|
||||||
0 0 0
|
|
||||||
197 255 255
|
|
||||||
213 255 213
|
|
||||||
156 222 148
|
|
||||||
222 255 230
|
|
||||||
123 189 115
|
|
||||||
74 65 82
|
|
||||||
255 255 255
|
|
||||||
156 156 156
|
|
||||||
255 156 156
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
255 148 148
|
|
||||||
255 123 98
|
|
||||||
255 0 0
|
|
||||||
148 148 148
|
|
||||||
0 0 0
|
|
||||||
0 172 255
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
230 230 213
|
|
||||||
0 0 0
|
|
||||||
197 197 197
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
197 255 255
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
65 0 0
|
|
||||||
123 0 0
|
|
||||||
189 0 0
|
|
||||||
255 8 0
|
|
||||||
255 65 0
|
|
||||||
255 123 0
|
|
||||||
255 189 0
|
|
||||||
255 255 0
|
|
||||||
255 255 123
|
|
||||||
255 255 255
|
|
||||||
189 189 197
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
@@ -1,259 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
256
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
189 189 197
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
255 106 115
|
|
||||||
255 57 57
|
|
||||||
205 32 0
|
|
||||||
246 213 0
|
|
||||||
255 123 98
|
|
||||||
156 180 90
|
|
||||||
164 148 57
|
|
||||||
90 106 139
|
|
||||||
180 172 82
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
189 189 197
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
164 222 255
|
|
||||||
106 148 255
|
|
||||||
24 57 205
|
|
||||||
246 213 0
|
|
||||||
255 123 98
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
189 189 197
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
255 197 255
|
|
||||||
255 139 255
|
|
||||||
213 0 139
|
|
||||||
246 213 0
|
|
||||||
255 123 98
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
189 189 197
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
180 255 197
|
|
||||||
148 255 164
|
|
||||||
65 172 57
|
|
||||||
246 213 0
|
|
||||||
255 123 98
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
189 189 197
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
255 255 164
|
|
||||||
246 213 0
|
|
||||||
230 106 0
|
|
||||||
246 213 0
|
|
||||||
255 123 98
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
197 255 255
|
|
||||||
255 255 255
|
|
||||||
213 213 213
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
164 222 255
|
|
||||||
106 148 255
|
|
||||||
49 82 255
|
|
||||||
180 255 197
|
|
||||||
148 255 164
|
|
||||||
65 172 57
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
197 255 255
|
|
||||||
255 255 255
|
|
||||||
213 213 213
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
255 139 230
|
|
||||||
255 139 230
|
|
||||||
255 49 156
|
|
||||||
255 255 0
|
|
||||||
255 255 0
|
|
||||||
189 172 0
|
|
||||||
41 49 90
|
|
||||||
41 49 90
|
|
||||||
0 0 0
|
|
||||||
197 123 131
|
|
||||||
255 255 255
|
|
||||||
230 246 255
|
|
||||||
205 238 255
|
|
||||||
180 238 255
|
|
||||||
156 230 255
|
|
||||||
139 230 255
|
|
||||||
255 205 230
|
|
||||||
255 255 139
|
|
||||||
255 230 255
|
|
||||||
255 255 197
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
197 255 255
|
|
||||||
255 255 255
|
|
||||||
213 213 213
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
255 172 197
|
|
||||||
255 172 172
|
|
||||||
255 180 148
|
|
||||||
255 189 123
|
|
||||||
255 197 98
|
|
||||||
255 205 82
|
|
||||||
156 156 156
|
|
||||||
156 156 156
|
|
||||||
156 156 156
|
|
||||||
197 255 255
|
|
||||||
255 255 255
|
|
||||||
213 213 213
|
|
||||||
131 131 139
|
|
||||||
98 98 123
|
|
||||||
65 74 106
|
|
||||||
41 49 90
|
|
||||||
164 222 255
|
|
||||||
106 148 255
|
|
||||||
49 82 255
|
|
||||||
180 255 197
|
|
||||||
148 255 164
|
|
||||||
65 172 57
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
164 222 255
|
|
||||||
106 230 222
|
|
||||||
49 238 189
|
|
||||||
0 255 156
|
|
||||||
0 255 156
|
|
||||||
82 255 98
|
|
||||||
164 255 49
|
|
||||||
255 255 0
|
|
||||||
255 172 16
|
|
||||||
255 90 32
|
|
||||||
255 8 57
|
|
||||||
230 57 106
|
|
||||||
205 115 156
|
|
||||||
180 164 205
|
|
||||||
164 222 255
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 488 B After Width: | Height: | Size: 432 B |
|
Before Width: | Height: | Size: 436 B After Width: | Height: | Size: 405 B |
|
Before Width: | Height: | Size: 432 B After Width: | Height: | Size: 384 B |
|
Before Width: | Height: | Size: 345 B After Width: | Height: | Size: 298 B |
|
Before Width: | Height: | Size: 426 B After Width: | Height: | Size: 391 B |
|
Before Width: | Height: | Size: 411 B After Width: | Height: | Size: 377 B |
|
Before Width: | Height: | Size: 434 B After Width: | Height: | Size: 397 B |
|
Before Width: | Height: | Size: 419 B After Width: | Height: | Size: 355 B |
|
Before Width: | Height: | Size: 425 B After Width: | Height: | Size: 387 B |
|
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 296 B |
|
Before Width: | Height: | Size: 451 B After Width: | Height: | Size: 403 B |
@@ -1,131 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
128
|
|
||||||
57 74 74
|
|
||||||
255 255 255
|
|
||||||
205 205 205
|
|
||||||
164 164 164
|
|
||||||
123 123 123
|
|
||||||
98 98 115
|
|
||||||
57 74 74
|
|
||||||
230 246 255
|
|
||||||
98 41 65
|
|
||||||
255 255 230
|
|
||||||
230 230 197
|
|
||||||
255 32 32
|
|
||||||
98 164 222
|
|
||||||
82 139 197
|
|
||||||
74 115 172
|
|
||||||
74 98 106
|
|
||||||
139 98 115
|
|
||||||
255 255 255
|
|
||||||
230 255 222
|
|
||||||
164 164 164
|
|
||||||
123 123 123
|
|
||||||
98 98 115
|
|
||||||
41 57 65
|
|
||||||
57 106 139
|
|
||||||
65 139 197
|
|
||||||
180 230 156
|
|
||||||
148 238 131
|
|
||||||
131 222 115
|
|
||||||
82 172 74
|
|
||||||
106 189 255
|
|
||||||
205 205 205
|
|
||||||
0 0 0
|
|
||||||
139 98 115
|
|
||||||
238 255 246
|
|
||||||
213 238 230
|
|
||||||
164 164 164
|
|
||||||
123 123 123
|
|
||||||
98 98 115
|
|
||||||
41 57 65
|
|
||||||
57 106 139
|
|
||||||
65 139 197
|
|
||||||
189 213 205
|
|
||||||
148 180 164
|
|
||||||
106 148 123
|
|
||||||
65 115 90
|
|
||||||
106 189 255
|
|
||||||
205 205 205
|
|
||||||
0 0 0
|
|
||||||
139 98 115
|
|
||||||
255 246 230
|
|
||||||
246 230 213
|
|
||||||
205 156 90
|
|
||||||
180 131 65
|
|
||||||
98 98 115
|
|
||||||
41 57 65
|
|
||||||
57 106 139
|
|
||||||
65 139 197
|
|
||||||
230 189 139
|
|
||||||
205 156 115
|
|
||||||
180 131 82
|
|
||||||
156 106 41
|
|
||||||
106 189 255
|
|
||||||
205 205 205
|
|
||||||
0 0 0
|
|
||||||
139 98 115
|
|
||||||
246 246 255
|
|
||||||
230 230 238
|
|
||||||
189 189 197
|
|
||||||
156 156 156
|
|
||||||
156 106 41
|
|
||||||
41 57 65
|
|
||||||
57 106 139
|
|
||||||
65 139 197
|
|
||||||
230 230 238
|
|
||||||
189 189 197
|
|
||||||
156 156 156
|
|
||||||
123 123 123
|
|
||||||
106 189 255
|
|
||||||
205 205 205
|
|
||||||
0 0 0
|
|
||||||
139 98 115
|
|
||||||
246 246 222
|
|
||||||
246 238 172
|
|
||||||
164 164 164
|
|
||||||
123 123 123
|
|
||||||
98 98 115
|
|
||||||
41 57 65
|
|
||||||
57 106 139
|
|
||||||
65 139 197
|
|
||||||
246 230 139
|
|
||||||
230 213 49
|
|
||||||
213 197 57
|
|
||||||
156 115 57
|
|
||||||
106 189 255
|
|
||||||
205 205 205
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
106 131 238
|
|
||||||
139 164 213
|
|
||||||
189 205 205
|
|
||||||
213 197 131
|
|
||||||
246 222 164
|
|
||||||
172 131 131
|
|
||||||
148 98 106
|
|
||||||
115 106 148
|
|
||||||
106 123 197
|
|
||||||
197 230 230
|
|
||||||
139 189 131
|
|
||||||
106 156 74
|
|
||||||
148 222 189
|
|
||||||
238 156 131
|
|
||||||
238 246 255
|
|
||||||
0 0 0
|
|
||||||
123 148 189
|
|
||||||
65 74 106
|
|
||||||
106 98 115
|
|
||||||
82 90 180
|
|
||||||
139 123 139
|
|
||||||
164 172 189
|
|
||||||
106 148 131
|
|
||||||
180 205 213
|
|
||||||
156 156 156
|
|
||||||
213 238 230
|
|
||||||
255 255 255
|
|
||||||
213 180 172
|
|
||||||
222 230 238
|
|
||||||
213 205 156
|
|
||||||
0 0 0
|
|
||||||
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.6 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@@ -1,259 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
256
|
|
||||||
0 0 0
|
|
||||||
24 90 0
|
|
||||||
49 115 0
|
|
||||||
65 139 0
|
|
||||||
90 172 0
|
|
||||||
164 172 255
|
|
||||||
164 197 255
|
|
||||||
139 213 255
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
148 205 98
|
|
||||||
180 255 131
|
|
||||||
164 238 98
|
|
||||||
0 0 0
|
|
||||||
24 90 0
|
|
||||||
49 115 0
|
|
||||||
65 139 0
|
|
||||||
90 172 0
|
|
||||||
164 172 255
|
|
||||||
164 197 255
|
|
||||||
139 213 255
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
148 205 98
|
|
||||||
180 255 131
|
|
||||||
164 238 98
|
|
||||||
0 0 0
|
|
||||||
24 82 0
|
|
||||||
32 90 0
|
|
||||||
41 98 0
|
|
||||||
49 115 0
|
|
||||||
57 123 0
|
|
||||||
65 139 0
|
|
||||||
74 148 0
|
|
||||||
82 156 0
|
|
||||||
90 172 0
|
|
||||||
0 16 0
|
|
||||||
8 41 0
|
|
||||||
16 57 0
|
|
||||||
123 197 16
|
|
||||||
180 255 131
|
|
||||||
164 238 98
|
|
||||||
0 0 0
|
|
||||||
24 82 0
|
|
||||||
32 90 0
|
|
||||||
41 98 0
|
|
||||||
49 115 0
|
|
||||||
57 123 0
|
|
||||||
65 139 0
|
|
||||||
74 148 0
|
|
||||||
82 156 0
|
|
||||||
90 172 0
|
|
||||||
8 24 8
|
|
||||||
8 41 0
|
|
||||||
16 57 0
|
|
||||||
148 205 98
|
|
||||||
98 172 74
|
|
||||||
238 255 238
|
|
||||||
0 0 0
|
|
||||||
24 90 0
|
|
||||||
49 115 0
|
|
||||||
65 139 0
|
|
||||||
90 172 0
|
|
||||||
164 172 255
|
|
||||||
164 197 255
|
|
||||||
139 213 255
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
148 205 98
|
|
||||||
180 255 131
|
|
||||||
164 238 98
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
246 246 238
|
|
||||||
238 246 230
|
|
||||||
230 246 222
|
|
||||||
205 238 222
|
|
||||||
180 230 230
|
|
||||||
172 213 238
|
|
||||||
131 205 238
|
|
||||||
180 180 156
|
|
||||||
213 213 230
|
|
||||||
205 197 213
|
|
||||||
189 230 115
|
|
||||||
156 213 98
|
|
||||||
222 230 222
|
|
||||||
115 172 98
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
156 246 0
|
|
||||||
65 90 156
|
|
||||||
49 115 255
|
|
||||||
82 82 82
|
|
||||||
98 98 98
|
|
||||||
115 115 115
|
|
||||||
131 131 131
|
|
||||||
148 148 148
|
|
||||||
164 164 164
|
|
||||||
180 180 180
|
|
||||||
197 197 197
|
|
||||||
213 213 213
|
|
||||||
230 230 230
|
|
||||||
255 255 255
|
|
||||||
255 255 255
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 847 B After Width: | Height: | Size: 904 B |
@@ -1,179 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
176
|
|
||||||
123 156 115
|
|
||||||
255 255 255
|
|
||||||
106 106 106
|
|
||||||
0 0 0
|
|
||||||
65 205 255
|
|
||||||
0 139 189
|
|
||||||
49 189 238
|
|
||||||
255 156 148
|
|
||||||
189 90 82
|
|
||||||
222 123 115
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
139 148 123
|
|
||||||
74 74 98
|
|
||||||
65 156 148
|
|
||||||
139 156 41
|
|
||||||
205 213 123
|
|
||||||
180 180 90
|
|
||||||
82 65 74
|
|
||||||
32 16 24
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 255 255
|
|
||||||
230 238 139
|
|
||||||
98 90 0
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
115 90 180
|
|
||||||
139 148 123
|
|
||||||
255 115 49
|
|
||||||
65 156 148
|
|
||||||
139 156 41
|
|
||||||
205 213 123
|
|
||||||
180 180 90
|
|
||||||
82 65 74
|
|
||||||
82 82 90
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 255 255
|
|
||||||
123 205 180
|
|
||||||
57 148 123
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
164 115 246
|
|
||||||
123 156 115
|
|
||||||
74 74 98
|
|
||||||
115 115 115
|
|
||||||
255 255 255
|
|
||||||
131 197 222
|
|
||||||
57 148 222
|
|
||||||
41 123 180
|
|
||||||
131 197 222
|
|
||||||
41 123 180
|
|
||||||
115 255 172
|
|
||||||
90 213 131
|
|
||||||
65 205 255
|
|
||||||
0 98 148
|
|
||||||
82 82 82
|
|
||||||
255 213 82
|
|
||||||
255 180 65
|
|
||||||
123 156 115
|
|
||||||
74 74 98
|
|
||||||
115 115 115
|
|
||||||
255 255 255
|
|
||||||
213 197 90
|
|
||||||
197 164 24
|
|
||||||
156 156 32
|
|
||||||
213 197 90
|
|
||||||
156 156 32
|
|
||||||
255 230 57
|
|
||||||
205 172 8
|
|
||||||
255 156 148
|
|
||||||
156 65 57
|
|
||||||
82 82 82
|
|
||||||
255 213 82
|
|
||||||
255 180 65
|
|
||||||
123 156 115
|
|
||||||
74 74 98
|
|
||||||
115 115 115
|
|
||||||
255 255 255
|
|
||||||
213 164 32
|
|
||||||
197 106 16
|
|
||||||
164 74 0
|
|
||||||
213 164 32
|
|
||||||
164 74 0
|
|
||||||
255 115 49
|
|
||||||
197 57 0
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
82 82 82
|
|
||||||
255 213 82
|
|
||||||
255 180 65
|
|
||||||
123 156 115
|
|
||||||
255 115 49
|
|
||||||
115 115 115
|
|
||||||
255 255 255
|
|
||||||
180 255 164
|
|
||||||
123 222 131
|
|
||||||
123 156 98
|
|
||||||
255 115 49
|
|
||||||
255 115 49
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
82 82 82
|
|
||||||
255 213 82
|
|
||||||
255 180 65
|
|
||||||
57 156 255
|
|
||||||
255 115 49
|
|
||||||
115 115 115
|
|
||||||
255 255 255
|
|
||||||
172 238 255
|
|
||||||
123 213 238
|
|
||||||
74 172 205
|
|
||||||
255 115 49
|
|
||||||
255 115 49
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
82 82 82
|
|
||||||
255 213 82
|
|
||||||
255 180 65
|
|
||||||
57 156 255
|
|
||||||
255 115 49
|
|
||||||
115 115 115
|
|
||||||
255 255 255
|
|
||||||
246 246 148
|
|
||||||
246 230 98
|
|
||||||
222 197 32
|
|
||||||
255 115 49
|
|
||||||
255 115 49
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
82 82 82
|
|
||||||
255 213 82
|
|
||||||
255 180 65
|
|
||||||
57 156 255
|
|
||||||
255 115 49
|
|
||||||
115 115 115
|
|
||||||
255 255 255
|
|
||||||
255 213 222
|
|
||||||
255 189 148
|
|
||||||
238 164 131
|
|
||||||
255 115 49
|
|
||||||
255 115 49
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
82 82 82
|
|
||||||
255 213 82
|
|
||||||
255 180 65
|
|
||||||
57 156 255
|
|
||||||
255 255 115
|
|
||||||
115 115 115
|
|
||||||
255 255 255
|
|
||||||
180 255 164
|
|
||||||
123 222 131
|
|
||||||
131 172 106
|
|
||||||
255 255 115
|
|
||||||
255 255 115
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
82 82 82
|
|
||||||
255 213 82
|
|
||||||
255 180 65
|
|
||||||
|
Before Width: | Height: | Size: 613 B After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 719 B After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.7 KiB |
@@ -1,19 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
16
|
|
||||||
106 205 106
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
|
Before Width: | Height: | Size: 107 B After Width: | Height: | Size: 164 B |
|
Before Width: | Height: | Size: 125 B After Width: | Height: | Size: 185 B |
|
Before Width: | Height: | Size: 170 B After Width: | Height: | Size: 170 B |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.3 KiB |
@@ -0,0 +1,19 @@
|
|||||||
|
JASC-PAL
|
||||||
|
0100
|
||||||
|
16
|
||||||
|
0 0 0
|
||||||
|
131 172 180
|
||||||
|
41 106 98
|
||||||
|
82 98 115
|
||||||
|
74 172 164
|
||||||
|
57 139 139
|
||||||
|
164 213 246
|
||||||
|
115 189 98
|
||||||
|
255 255 255
|
||||||
|
123 189 255
|
||||||
|
0 123 255
|
||||||
|
41 90 164
|
||||||
|
123 205 180
|
||||||
|
8 74 65
|
||||||
|
164 238 148
|
||||||
|
65 82 90
|
||||||
|
Before Width: | Height: | Size: 168 B After Width: | Height: | Size: 228 B |
@@ -1,35 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
32
|
|
||||||
164 205 180
|
|
||||||
82 82 90
|
|
||||||
255 0 255
|
|
||||||
205 115 0
|
|
||||||
156 98 16
|
|
||||||
98 82 32
|
|
||||||
49 65 49
|
|
||||||
0 49 65
|
|
||||||
24 57 65
|
|
||||||
49 65 74
|
|
||||||
49 49 57
|
|
||||||
74 74 82
|
|
||||||
98 98 106
|
|
||||||
115 115 131
|
|
||||||
139 148 148
|
|
||||||
0 0 0
|
|
||||||
32 90 115
|
|
||||||
131 131 131
|
|
||||||
148 148 148
|
|
||||||
172 172 172
|
|
||||||
197 197 197
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
|
Before Width: | Height: | Size: 964 B After Width: | Height: | Size: 1.1 KiB |
@@ -1,83 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
80
|
|
||||||
0 0 0
|
|
||||||
57 57 49
|
|
||||||
230 230 230
|
|
||||||
255 255 255
|
|
||||||
131 213 172
|
|
||||||
49 123 74
|
|
||||||
90 172 106
|
|
||||||
255 0 255
|
|
||||||
90 172 106
|
|
||||||
255 164 41
|
|
||||||
255 98 57
|
|
||||||
255 197 156
|
|
||||||
172 57 0
|
|
||||||
0 65 24
|
|
||||||
98 98 90
|
|
||||||
0 0 0
|
|
||||||
222 222 222
|
|
||||||
255 255 255
|
|
||||||
131 213 172
|
|
||||||
255 90 0
|
|
||||||
222 41 0
|
|
||||||
255 90 0
|
|
||||||
222 41 0
|
|
||||||
255 90 0
|
|
||||||
222 41 0
|
|
||||||
255 90 0
|
|
||||||
222 41 0
|
|
||||||
255 90 0
|
|
||||||
222 41 0
|
|
||||||
255 0 255
|
|
||||||
156 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
255 255 255
|
|
||||||
74 74 213
|
|
||||||
115 172 255
|
|
||||||
115 164 74
|
|
||||||
156 238 74
|
|
||||||
230 65 24
|
|
||||||
255 164 41
|
|
||||||
255 238 32
|
|
||||||
131 213 172
|
|
||||||
189 189 189
|
|
||||||
156 156 156
|
|
||||||
123 123 123
|
|
||||||
90 90 90
|
|
||||||
65 65 65
|
|
||||||
0 0 0
|
|
||||||
255 0 255
|
|
||||||
255 255 255
|
|
||||||
65 164 82
|
|
||||||
139 230 139
|
|
||||||
139 230 139
|
|
||||||
148 238 148
|
|
||||||
164 246 164
|
|
||||||
180 246 180
|
|
||||||
189 246 189
|
|
||||||
205 255 205
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
255 0 255
|
|
||||||
0 0 0
|
|
||||||
222 222 222
|
|
||||||
65 90 213
|
|
||||||
90 172 106
|
|
||||||
255 255 255
|
|
||||||
131 213 172
|
|
||||||
0 98 115
|
|
||||||
90 90 0
|
|
||||||
90 90 0
|
|
||||||
156 16 0
|
|
||||||
156 16 0
|
|
||||||
106 156 246
|
|
||||||
205 205 0
|
|
||||||
205 205 0
|
|
||||||
246 106 74
|
|
||||||
246 106 74
|
|
||||||
0 0 0
|
|
||||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 1.3 KiB |
|
Before Width: | Height: | Size: 691 B |
|
After Width: | Height: | Size: 1.9 KiB |
@@ -1,131 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
128
|
|
||||||
180 180 115
|
|
||||||
74 65 57
|
|
||||||
255 255 255
|
|
||||||
222 230 246
|
|
||||||
213 213 189
|
|
||||||
246 255 255
|
|
||||||
115 106 98
|
|
||||||
98 156 222
|
|
||||||
74 148 189
|
|
||||||
57 148 164
|
|
||||||
32 148 139
|
|
||||||
16 148 115
|
|
||||||
156 222 164
|
|
||||||
98 180 139
|
|
||||||
49 139 115
|
|
||||||
0 106 98
|
|
||||||
180 180 115
|
|
||||||
74 65 57
|
|
||||||
255 255 255
|
|
||||||
90 106 0
|
|
||||||
123 139 32
|
|
||||||
255 246 205
|
|
||||||
115 106 98
|
|
||||||
90 222 123
|
|
||||||
90 205 98
|
|
||||||
90 189 74
|
|
||||||
98 172 49
|
|
||||||
98 156 24
|
|
||||||
238 164 255
|
|
||||||
189 156 164
|
|
||||||
148 148 82
|
|
||||||
106 148 0
|
|
||||||
180 180 115
|
|
||||||
74 65 57
|
|
||||||
255 255 255
|
|
||||||
172 180 172
|
|
||||||
205 205 197
|
|
||||||
246 255 238
|
|
||||||
115 106 98
|
|
||||||
238 222 24
|
|
||||||
213 189 57
|
|
||||||
189 164 98
|
|
||||||
164 139 131
|
|
||||||
139 115 172
|
|
||||||
205 222 123
|
|
||||||
172 172 148
|
|
||||||
139 131 180
|
|
||||||
115 90 213
|
|
||||||
180 180 115
|
|
||||||
74 65 57
|
|
||||||
255 255 255
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
246 255 246
|
|
||||||
115 106 98
|
|
||||||
222 24 238
|
|
||||||
189 16 238
|
|
||||||
164 8 238
|
|
||||||
131 8 246
|
|
||||||
106 0 246
|
|
||||||
172 222 222
|
|
||||||
139 148 230
|
|
||||||
106 74 238
|
|
||||||
82 0 255
|
|
||||||
180 180 115
|
|
||||||
74 65 57
|
|
||||||
148 32 172
|
|
||||||
189 106 213
|
|
||||||
230 189 255
|
|
||||||
255 255 255
|
|
||||||
213 148 246
|
|
||||||
189 139 205
|
|
||||||
255 230 255
|
|
||||||
230 180 213
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
115 98 90
|
|
||||||
180 180 115
|
|
||||||
74 65 57
|
|
||||||
255 255 255
|
|
||||||
222 230 246
|
|
||||||
246 246 222
|
|
||||||
246 255 255
|
|
||||||
115 106 98
|
|
||||||
255 205 74
|
|
||||||
230 164 98
|
|
||||||
205 123 123
|
|
||||||
180 82 148
|
|
||||||
156 41 172
|
|
||||||
230 156 255
|
|
||||||
197 98 238
|
|
||||||
164 49 222
|
|
||||||
131 0 205
|
|
||||||
98 180 106
|
|
||||||
0 0 0
|
|
||||||
213 213 205
|
|
||||||
255 255 255
|
|
||||||
98 98 98
|
|
||||||
230 8 8
|
|
||||||
255 189 115
|
|
||||||
65 205 255
|
|
||||||
0 139 189
|
|
||||||
255 156 148
|
|
||||||
189 90 82
|
|
||||||
139 246 255
|
|
||||||
24 164 213
|
|
||||||
255 189 180
|
|
||||||
213 115 106
|
|
||||||
0 0 0
|
|
||||||
98 180 106
|
|
||||||
0 0 0
|
|
||||||
213 213 205
|
|
||||||
255 255 255
|
|
||||||
98 98 98
|
|
||||||
230 8 8
|
|
||||||
255 189 115
|
|
||||||
238 238 172
|
|
||||||
164 164 98
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
255 0 0
|
|
||||||
164 0 0
|
|
||||||
255 255 255
|
|
||||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.2 KiB |
|
Before Width: | Height: | Size: 970 B |
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,51 +0,0 @@
|
|||||||
JASC-PAL
|
|
||||||
0100
|
|
||||||
48
|
|
||||||
139 98 115
|
|
||||||
246 246 222
|
|
||||||
246 238 172
|
|
||||||
164 164 164
|
|
||||||
123 123 123
|
|
||||||
98 98 115
|
|
||||||
41 57 65
|
|
||||||
57 106 139
|
|
||||||
65 139 197
|
|
||||||
246 230 139
|
|
||||||
230 213 49
|
|
||||||
213 197 57
|
|
||||||
156 115 57
|
|
||||||
106 189 255
|
|
||||||
205 205 205
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
106 180 213
|
|
||||||
41 123 164
|
|
||||||
0 0 0
|
|
||||||
0 0 0
|
|
||||||
98 98 115
|
|
||||||
255 255 255
|
|
||||||
230 230 238
|
|
||||||
164 164 164
|
|
||||||
123 123 123
|
|
||||||
255 255 255
|
|
||||||
230 230 238
|
|
||||||
164 164 164
|
|
||||||
123 123 123
|
|
||||||
255 255 255
|
|
||||||
230 230 238
|
|
||||||
164 164 164
|
|
||||||
123 123 123
|
|
||||||
106 189 255
|
|
||||||
205 205 205
|
|
||||||
0 0 0
|
|
||||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 587 B After Width: | Height: | Size: 587 B |
|
Before Width: | Height: | Size: 387 B After Width: | Height: | Size: 387 B |
|
After Width: | Height: | Size: 1.6 KiB |
@@ -1,19 +1,51 @@
|
|||||||
JASC-PAL
|
JASC-PAL
|
||||||
0100
|
0100
|
||||||
16
|
48
|
||||||
139 98 115
|
139 98 115
|
||||||
246 197 0
|
246 246 222
|
||||||
205 164 0
|
246 238 172
|
||||||
246 197 0
|
164 164 164
|
||||||
246 197 0
|
123 123 123
|
||||||
246 197 0
|
98 98 115
|
||||||
246 197 0
|
41 57 65
|
||||||
246 197 0
|
57 106 139
|
||||||
|
65 139 197
|
||||||
|
246 230 139
|
||||||
|
230 213 49
|
||||||
|
213 197 57
|
||||||
|
156 115 57
|
||||||
|
106 189 255
|
||||||
|
205 205 205
|
||||||
0 0 0
|
0 0 0
|
||||||
0 0 0
|
0 0 0
|
||||||
189 148 16
|
|
||||||
255 213 82
|
|
||||||
0 0 0
|
0 0 0
|
||||||
0 0 0
|
0 0 0
|
||||||
189 148 16
|
0 0 0
|
||||||
246 197 0
|
0 0 0
|
||||||
|
0 0 0
|
||||||
|
0 0 0
|
||||||
|
0 0 0
|
||||||
|
0 0 0
|
||||||
|
0 0 0
|
||||||
|
0 0 0
|
||||||
|
0 0 0
|
||||||
|
106 180 213
|
||||||
|
41 123 164
|
||||||
|
0 0 0
|
||||||
|
0 0 0
|
||||||
|
98 98 115
|
||||||
|
255 255 255
|
||||||
|
230 230 238
|
||||||
|
164 164 164
|
||||||
|
123 123 123
|
||||||
|
255 255 255
|
||||||
|
230 230 238
|
||||||
|
164 164 164
|
||||||
|
123 123 123
|
||||||
|
255 255 255
|
||||||
|
230 230 238
|
||||||
|
164 164 164
|
||||||
|
123 123 123
|
||||||
|
106 189 255
|
||||||
|
205 205 205
|
||||||
|
0 0 0
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
JASC-PAL
|
||||||
|
0100
|
||||||
|
16
|
||||||
|
139 98 115
|
||||||
|
246 197 0
|
||||||
|
205 164 0
|
||||||
|
246 197 0
|
||||||
|
246 197 0
|
||||||
|
246 197 0
|
||||||
|
246 197 0
|
||||||
|
246 197 0
|
||||||
|
0 0 0
|
||||||
|
0 0 0
|
||||||
|
189 148 16
|
||||||
|
255 213 82
|
||||||
|
0 0 0
|
||||||
|
0 0 0
|
||||||
|
189 148 16
|
||||||
|
246 197 0
|
||||||
|
After Width: | Height: | Size: 1.1 KiB |
@@ -632,9 +632,6 @@ $(WALLPAPERGFXDIR)/ludicolo/tiles.4bpp: $(WALLPAPERGFXDIR)/friends_frame2.4bpp $
|
|||||||
$(WALLPAPERGFXDIR)/whiscash/tiles.4bpp: $(WALLPAPERGFXDIR)/friends_frame2.4bpp $(WALLPAPERGFXDIR)/whiscash/bg.4bpp
|
$(WALLPAPERGFXDIR)/whiscash/tiles.4bpp: $(WALLPAPERGFXDIR)/friends_frame2.4bpp $(WALLPAPERGFXDIR)/whiscash/bg.4bpp
|
||||||
@cat $^ >$@
|
@cat $^ >$@
|
||||||
|
|
||||||
$(OBJEVENTGFXDIR)/pics/effects/unknown_4F6D38/0.4bpp: %.4bpp: %.png
|
|
||||||
$(GFX) $< $@ -num_tiles 11 -Wnum_tiles
|
|
||||||
|
|
||||||
$(INTERFACEGFXDIR)/outline_cursor.4bpp: %.4bpp: %.png
|
$(INTERFACEGFXDIR)/outline_cursor.4bpp: %.4bpp: %.png
|
||||||
$(GFX) $< $@ -num_tiles 8 -Wnum_tiles
|
$(GFX) $< $@ -num_tiles 8 -Wnum_tiles
|
||||||
|
|
||||||
@@ -675,9 +672,6 @@ $(POKEDEXGFXDIR)/region_map.8bpp: %.8bpp: %.png
|
|||||||
$(POKEDEXGFXDIR)/region_map_affine.8bpp: %.8bpp: %.png
|
$(POKEDEXGFXDIR)/region_map_affine.8bpp: %.8bpp: %.png
|
||||||
$(GFX) $< $@ -num_tiles 233 -Wnum_tiles
|
$(GFX) $< $@ -num_tiles 233 -Wnum_tiles
|
||||||
|
|
||||||
$(STARTERGFXDIR)/birch_help.4bpp: $(STARTERGFXDIR)/birch_bag.4bpp $(STARTERGFXDIR)/birch_grass.4bpp
|
|
||||||
@cat $^ >$@
|
|
||||||
|
|
||||||
$(NAMINGGFXDIR)/cursor.4bpp: %.4bpp: %.png
|
$(NAMINGGFXDIR)/cursor.4bpp: %.4bpp: %.png
|
||||||
$(GFX) $< $@ -num_tiles 5 -Wnum_tiles
|
$(GFX) $< $@ -num_tiles 5 -Wnum_tiles
|
||||||
|
|
||||||
|
|||||||
@@ -298,10 +298,17 @@
|
|||||||
#define ANIM_TAG_BLUE_RING_2 (ANIM_SPRITES_START + 288)
|
#define ANIM_TAG_BLUE_RING_2 (ANIM_SPRITES_START + 288)
|
||||||
|
|
||||||
// battlers
|
// battlers
|
||||||
#define ANIM_ATTACKER 0
|
#define ANIM_ATTACKER 0
|
||||||
#define ANIM_TARGET 1
|
#define ANIM_TARGET 1
|
||||||
#define ANIM_ATK_PARTNER 2
|
#define ANIM_ATK_PARTNER 2
|
||||||
#define ANIM_DEF_PARTNER 3
|
#define ANIM_DEF_PARTNER 3
|
||||||
|
|
||||||
|
// Below are used by AnimTask_ShakeMon2 and AnimTask_SetGrayscaleOrOriginalPal
|
||||||
|
#define ANIM_PLAYER_LEFT (MAX_BATTLERS_COUNT + 0)
|
||||||
|
#define ANIM_PLAYER_RIGHT (MAX_BATTLERS_COUNT + 1)
|
||||||
|
#define ANIM_OPPONENT_LEFT (MAX_BATTLERS_COUNT + 2)
|
||||||
|
#define ANIM_OPPONENT_RIGHT (MAX_BATTLERS_COUNT + 3)
|
||||||
|
#define ANIM_ATTACKER_FORCE (MAX_BATTLERS_COUNT + 4)
|
||||||
|
|
||||||
// stereo panning constants [0-255]
|
// stereo panning constants [0-255]
|
||||||
//
|
//
|
||||||
|
|||||||