mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-03-21 18:04:50 -05:00
Add missing cries for Cramorant-Gulping, Cramorant-Gorging, Oinkologne-Female, and Ursaluna-Bloodmoon (#8911)
Co-authored-by: LinathanZel <LinathanZel@github.com>
This commit is contained in:
parent
bcae4e2110
commit
31d3e5f022
|
|
@ -651,6 +651,7 @@ enum PokemonCry
|
|||
CRY_URSARING,
|
||||
#if P_GEN_8_CROSS_EVOS
|
||||
CRY_URSALUNA,
|
||||
CRY_URSALUNA_BLOODMOON,
|
||||
#endif //P_GEN_8_CROSS_EVOS
|
||||
#endif //P_FAMILY_TEDDIURSA
|
||||
#if P_FAMILY_SLUGMA
|
||||
|
|
@ -2146,6 +2147,7 @@ enum PokemonCry
|
|||
#endif //P_FAMILY_SILICOBRA
|
||||
#if P_FAMILY_CRAMORANT
|
||||
CRY_CRAMORANT,
|
||||
CRY_CRAMORANT_GULPING,
|
||||
#endif //P_FAMILY_CRAMORANT
|
||||
#if P_FAMILY_ARROKUDA
|
||||
CRY_ARROKUDA,
|
||||
|
|
|
|||
|
|
@ -648,6 +648,7 @@ gCryTable::
|
|||
cry Cry_Ursaring
|
||||
.if P_GEN_8_CROSS_EVOS == TRUE
|
||||
cry Cry_Ursaluna
|
||||
cry Cry_UrsalunaBloodmoon
|
||||
.endif @ P_GEN_8_CROSS_EVOS
|
||||
.endif @ P_FAMILY_TEDDIURSA
|
||||
.if P_FAMILY_SLUGMA == TRUE
|
||||
|
|
@ -2143,6 +2144,7 @@ gCryTable::
|
|||
.endif @ P_FAMILY_SILICOBRA
|
||||
.if P_FAMILY_CRAMORANT == TRUE
|
||||
cry Cry_Cramorant
|
||||
cry Cry_CramorantGulping
|
||||
.endif @ P_FAMILY_CRAMORANT
|
||||
.if P_FAMILY_ARROKUDA == TRUE
|
||||
cry Cry_Arrokuda
|
||||
|
|
@ -3202,6 +3204,7 @@ gCryTable_Reverse::
|
|||
cry_reverse Cry_Ursaring
|
||||
.if P_GEN_8_CROSS_EVOS == TRUE
|
||||
cry_reverse Cry_Ursaluna
|
||||
cry_reverse Cry_UrsalunaBloodmoon
|
||||
.endif @ P_GEN_8_CROSS_EVOS
|
||||
.endif @ P_FAMILY_TEDDIURSA
|
||||
.if P_FAMILY_SLUGMA == TRUE
|
||||
|
|
@ -4697,6 +4700,7 @@ gCryTable_Reverse::
|
|||
.endif @ P_FAMILY_SILICOBRA
|
||||
.if P_FAMILY_CRAMORANT == TRUE
|
||||
cry_reverse Cry_Cramorant
|
||||
cry_reverse Cry_CramorantGulping
|
||||
.endif @ P_FAMILY_CRAMORANT
|
||||
.if P_FAMILY_ARROKUDA == TRUE
|
||||
cry_reverse Cry_Arrokuda
|
||||
|
|
|
|||
|
|
@ -1895,6 +1895,10 @@ Cry_Ursaring::
|
|||
.align 2
|
||||
Cry_Ursaluna::
|
||||
.incbin "sound/direct_sound_samples/cries/ursaluna.bin"
|
||||
|
||||
.align 2
|
||||
Cry_UrsalunaBloodmoon::
|
||||
.incbin "sound/direct_sound_samples/cries/ursaluna_bloodmoon.bin"
|
||||
.endif @ P_GEN_8_CROSS_EVOS
|
||||
.endif @ P_FAMILY_TEDDIURSA
|
||||
|
||||
|
|
@ -5460,6 +5464,10 @@ Cry_Sandaconda::
|
|||
.align 2
|
||||
Cry_Cramorant::
|
||||
.incbin "sound/direct_sound_samples/cries/cramorant.bin"
|
||||
|
||||
.align 2
|
||||
Cry_CramorantGulping::
|
||||
.incbin "sound/direct_sound_samples/cries/cramorant_gulping.bin"
|
||||
.endif @ P_FAMILY_CRAMORANT
|
||||
|
||||
.if P_FAMILY_ARROKUDA == TRUE
|
||||
|
|
|
|||
BIN
sound/direct_sound_samples/cries/cramorant_gulping.wav
Normal file
BIN
sound/direct_sound_samples/cries/cramorant_gulping.wav
Normal file
Binary file not shown.
Binary file not shown.
BIN
sound/direct_sound_samples/cries/ursaluna_bloodmoon.wav
Normal file
BIN
sound/direct_sound_samples/cries/ursaluna_bloodmoon.wav
Normal file
Binary file not shown.
|
|
@ -6142,7 +6142,7 @@ const struct SpeciesInfo gSpeciesInfoGen2[] =
|
|||
.bodyColor = BODY_COLOR_BROWN,
|
||||
.noFlip = TRUE,
|
||||
.speciesName = _("Ursaluna"),
|
||||
.cryId = CRY_URSALUNA,
|
||||
.cryId = CRY_URSALUNA_BLOODMOON,
|
||||
.natDexNum = NATIONAL_DEX_URSALUNA,
|
||||
.categoryName = _("Peat"),
|
||||
.height = 27,
|
||||
|
|
|
|||
|
|
@ -3125,7 +3125,7 @@ const struct SpeciesInfo gSpeciesInfoGen8[] =
|
|||
.abilities = { ABILITY_GULP_MISSILE, ABILITY_NONE, ABILITY_NONE },
|
||||
.bodyColor = BODY_COLOR_BLUE,
|
||||
.speciesName = _("Cramorant"),
|
||||
.cryId = CRY_CRAMORANT,
|
||||
.cryId = CRY_CRAMORANT_GULPING,
|
||||
.natDexNum = NATIONAL_DEX_CRAMORANT,
|
||||
.categoryName = _("Gulp"),
|
||||
.height = 8,
|
||||
|
|
@ -3182,7 +3182,7 @@ const struct SpeciesInfo gSpeciesInfoGen8[] =
|
|||
.abilities = { ABILITY_GULP_MISSILE, ABILITY_NONE, ABILITY_NONE },
|
||||
.bodyColor = BODY_COLOR_BLUE,
|
||||
.speciesName = _("Cramorant"),
|
||||
.cryId = CRY_CRAMORANT,
|
||||
.cryId = CRY_CRAMORANT_GULPING,
|
||||
.natDexNum = NATIONAL_DEX_CRAMORANT,
|
||||
.categoryName = _("Gulp"),
|
||||
.height = 8,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user