summaryrefslogtreecommitdiff
path: root/battle-e/berries/strib.asm
diff options
context:
space:
mode:
Diffstat (limited to 'battle-e/berries/strib.asm')
-rw-r--r--battle-e/berries/strib.asm31
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