-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
last of the new areas for really real, just need graphics and to twea…
…k a few mons stats before release
- Loading branch information
1 parent
fe5be47
commit 7326860
Showing
22 changed files
with
125 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
map_header DevilsCanyon, DEVILS_CANYON, CAVERN, 0 | ||
end_map_header |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
DevilsCanyon_Object: | ||
db $7d ; border block | ||
|
||
def_warp_events | ||
warp_event 3, 5, DIGLETTS_CAVE, 4 | ||
warp_event 2, 5, DIGLETTS_CAVE, 4 | ||
|
||
def_bg_events | ||
|
||
def_object_events | ||
object_event 3, 1, SPRITE_MONSTER, STAY, DOWN, 1, OMANYTE, 39 | OW_POKEMON | ||
|
||
def_warps_to DEVILS_CANYON |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
DevilsCanyonWildMons: | ||
def_grass_wildmons 25 ; encounter rate | ||
db 18, FARFETCHD | ||
db 19, FARFETCHD | ||
db 17, FARFETCHD | ||
db 20, FARFETCHD | ||
db 16, FARFETCHD | ||
db 15, FARFETCHD | ||
db 21, FARFETCHD | ||
db 22, FARFETCHD | ||
db 30, STARYU | ||
db 31, DUGTRIO | ||
end_grass_wildmons | ||
|
||
def_water_wildmons 0 ; encounter rate | ||
end_water_wildmons |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
DevilsCanyon_Script: | ||
call EnableAutoTextBoxDrawing | ||
ld hl, DevilTrainerHeader | ||
ld de, DevilsCanyon_ScriptPointers | ||
ld a, [wDevilsCanyonCurScript] | ||
call ExecuteCurMapScriptInTable | ||
ld [wDevilsCanyonCurScript], a | ||
ret | ||
|
||
DevilsCanyon_ScriptPointers: | ||
dw CheckFightingMapTrainers | ||
dw DisplayEnemyTrainerTextAndStartBattle | ||
dw EndTrainerBattle | ||
|
||
DevilsCanyon_TextPointers: | ||
dw DevilText | ||
|
||
DevilsCanyonTrainerHeaders: | ||
def_trainers 0 | ||
DevilTrainerHeader: | ||
trainer EVENT_BEAT_DEVIL, 0, DevilBattleText, DevilBattleText, DevilBattleText | ||
db -1 ; end | ||
|
||
DevilText: | ||
text_asm | ||
ld hl, DevilsCanyonTrainerHeaders | ||
call TalkToTrainer | ||
jp TextScriptEnd | ||
|
||
DevilBattleText: | ||
text_far _DevilBattleText | ||
text_asm | ||
ld a, OMANYTE | ||
call PlayCry | ||
call WaitForSoundToFinish | ||
jp TextScriptEnd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
_AngelBattleText:: | ||
text "ANGEL" | ||
line "insect seems to" | ||
cont "have gotten lost" | ||
cont "and dug this cave" | ||
cont "in an attempt to" | ||
cont "get back home." | ||
text "Before you is" | ||
line "some sort of" | ||
cont "ANGEL from an era" | ||
cont "long forgotten." | ||
|
||
para "In a desperate" | ||
line "frenzy, it lunges" | ||
cont "at you!" | ||
para "It spots you and" | ||
line "panics, taking" | ||
cont "up a defensive" | ||
cont "stance!" | ||
|
||
para "Griikii!@" | ||
para "Kiirii!!@" | ||
text_end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
_DevilBattleText:: | ||
text "Before you is" | ||
line "some sort of" | ||
cont "FIEND from an era" | ||
cont "long forgotten." | ||
|
||
para "It spots you and" | ||
line "growls, taking" | ||
cont "up a fighting" | ||
cont "stance!" | ||
|
||
para "Grrarrr!!@" | ||
text_end |