diff options
author | Háčky <hatschky@gmail.com> | 2014-11-27 07:15:45 +0000 |
---|---|---|
committer | Háčky <hatschky@gmail.com> | 2014-11-27 07:15:45 +0000 |
commit | 319ed6d0e0266f5f6174a5acd929914db8cfae1d (patch) | |
tree | 76408d9cadcbed1e702efa8c44f4cf5e364b0a4d /battle-e/berries/strib.asm | |
parent | 17853b802692237d98f96d1a80caf2019f71753e (diff) |
Diffstat (limited to 'battle-e/berries/strib.asm')
-rw-r--r-- | battle-e/berries/strib.asm | 31 |
1 files changed, 18 insertions, 13 deletions
diff --git a/battle-e/berries/strib.asm b/battle-e/berries/strib.asm index 362b2df..147f8c2 100644 --- a/battle-e/berries/strib.asm +++ b/battle-e/berries/strib.asm @@ -1,22 +1,27 @@ -INCLUDE "macros.asm" +INCLUDE "berries/macros.asm" - Berry "STRIB" - db HARD + Enigma_Berry + + Text_EN "STRIB@@"7 + Firmness HARD Size 12,2 Yield_Range 4, 12 - db 0,0,0,0,0,0,0,0 - db 24 ; hours per growth stage - db 30,0,0,30,0 ; flavor - db 85 ; smoothness - db 0 + dd 0 + dd 0 + Growth_Stage_Hours 24 + Flavor 30, 0, 0, 30, 0 + Smoothness 85 BerrySprite: - INCBIN "../sprites/berries/strib.4bpp" + INCBIN "sprites/berries/strib.4bpp" BerryPalette: - INCLUDE "../sprites/berries/strib.pal" + INCLUDE "sprites/berries/strib.pal" + + Text_EN "It grows slowly, but abundantly."45 + Text_EN "Makes a soothing sound when shaken."45 - Tag_Text "It grows slowly, but abundantly." - Tag_Text "Makes a soothing sound when shaken." REPT 22 db 0 ; Pokéblock ingredient only - ENDR
\ No newline at end of file + ENDR + + End_Berry
\ No newline at end of file |