diff options
Diffstat (limited to 'battle-e/berries/eggant.asm')
-rw-r--r-- | battle-e/berries/eggant.asm | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/battle-e/berries/eggant.asm b/battle-e/berries/eggant.asm index 4e9fab3..c7b1eaa 100644 --- a/battle-e/berries/eggant.asm +++ b/battle-e/berries/eggant.asm @@ -1,24 +1,29 @@ -INCLUDE "macros.asm" +INCLUDE "berries/macros.asm" - Berry "EGGANT" - db SOFT + Enigma_Berry + + Text_EN "EGGANT"7 + Firmness SOFT Size 4,1 Yield_Range 2, 3 - db 0,0,0,0, 0,0,0,0 - db 18 ; hours per growth stage - db 0,40,0,0,0 ; flavor - db 65 ; smoothness - db 0 + dd 0 + dd 0 + Growth_Stage_Hours 18 + Flavor 0, 40, 0, 0, 0 + Smoothness 65 BerrySprite: - INCBIN "../sprites/berries/eggant.4bpp" + INCBIN "sprites/berries/eggant.4bpp" BerryPalette: - INCLUDE "../sprites/berries/eggant.pal" + INCLUDE "sprites/berries/eggant.pal" + + Text_EN "Very dry tasting, especially the"45 + Text_EN "parts not exposed to the sun."45 - Tag_Text "Very dry tasting, especially the" - Tag_Text "parts not exposed to the sun." db 0,0,0 db $00 db 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0 db $1C ; self-cure infatuation - db 0,0,0
\ No newline at end of file + db 0,0,0 + + End_Berry
\ No newline at end of file |