summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2019-11-27 16:19:50 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2019-11-27 16:19:50 -0500
commite59dc970a60b95f58ee97bae2e30a8c20c01d315 (patch)
tree38873079693384e5f30a31280fa3f059b1fe380a
parentf3b96ff76fef5c58b45220789d89572f1fedbae2 (diff)
Cleanup
-rw-r--r--Add-a-new-scene-script.md (renamed from Adding-a-Scene-Script.md)0
-rw-r--r--Add-a-new-spawn-point.md (renamed from Spawn-Point-(for-Fly-or-Teleport).md)0
-rw-r--r--Colored-trainer-card-badges.md7
-rw-r--r--Level-cap.md (renamed from Add-a-new-level-cap.md)0
-rw-r--r--Show-the-tops-of-leaders-heads-on-the-trainer-card.md10
-rw-r--r--Tutorials.md13
6 files changed, 14 insertions, 16 deletions
diff --git a/Adding-a-Scene-Script.md b/Add-a-new-scene-script.md
index d74bc48..d74bc48 100644
--- a/Adding-a-Scene-Script.md
+++ b/Add-a-new-scene-script.md
diff --git a/Spawn-Point-(for-Fly-or-Teleport).md b/Add-a-new-spawn-point.md
index 4f088a3..4f088a3 100644
--- a/Spawn-Point-(for-Fly-or-Teleport).md
+++ b/Add-a-new-spawn-point.md
diff --git a/Colored-trainer-card-badges.md b/Colored-trainer-card-badges.md
index 2e37758..10866c4 100644
--- a/Colored-trainer-card-badges.md
+++ b/Colored-trainer-card-badges.md
@@ -32,9 +32,6 @@ Edit [engine/gfx/cgb_layouts.asm](../blob/master/engine/gfx/cgb_layouts.asm):
```diff
_CGB_TrainerCard:
...
- ld a, PRYCE
- call GetTrainerPalettePointer
- call LoadPalette_White_Col1_Col2_Black
- ld a, PREDEFPAL_CGB_BADGE
- call GetPredefPal
- call LoadHLPaletteIntoDE
@@ -42,10 +39,6 @@ Edit [engine/gfx/cgb_layouts.asm](../blob/master/engine/gfx/cgb_layouts.asm):
+ ld bc, 8 palettes
+ ld a, BANK(wOBPals1)
+ call FarCopyWRAM
-
- ; fill screen with opposite-gender palette for the card border
- hlcoord 0, 0, wAttrMap
- ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
...
ret
+
diff --git a/Add-a-new-level-cap.md b/Level-cap.md
index fbe21ff..fbe21ff 100644
--- a/Add-a-new-level-cap.md
+++ b/Level-cap.md
diff --git a/Show-the-tops-of-leaders-heads-on-the-trainer-card.md b/Show-the-tops-of-leaders-heads-on-the-trainer-card.md
index 75f81e1..6004ed8 100644
--- a/Show-the-tops-of-leaders-heads-on-the-trainer-card.md
+++ b/Show-the-tops-of-leaders-heads-on-the-trainer-card.md
@@ -27,11 +27,11 @@ Edit [engine/gfx/cgb_layouts.asm](../blob/master/engine/gfx/cgb_layouts.asm):
```diff
_CGB_TrainerCard:
...
-.got_gender2
- call FillBoxCGB
- ; top-right corner still uses the border's palette
- hlcoord 18, 1, wAttrMap
- ld [hl], $1
+ .got_gender2
+ call FillBoxCGB
+ ; top-right corner still uses the border's palette
+ hlcoord 18, 1, wAttrMap
+ ld [hl], $1
- hlcoord 2, 11, wAttrMap
- lb bc, 2, 4
+ hlcoord 3, 10, wAttrMap
diff --git a/Tutorials.md b/Tutorials.md
index e60c1d8..3ad5a75 100644
--- a/Tutorials.md
+++ b/Tutorials.md
@@ -49,10 +49,10 @@ Tutorials may use diff syntax to show edits:
- [Unown puzzle chamber](Add-a-new-Unown-puzzle-chamber)
- [Fishing rod](Add-a-new-fishing-rod)
- [Battle transition](Add-a-new-battle-transition)
-- [Spawn point (for Fly or Teleport)](https://github.com/pret/pokecrystal/wiki/Spawn-Point-(for-Fly-or-Teleport))
-- [Level cap](Add-a-new-level-cap)
+- [Spawn point (for Fly or Teleport)](Add-a-new-spawn-point)
- [Text scrolling speed](Add-a-new-text-scrolling-speed)
-- [Scene script](https://github.com/pret/pokecrystal/wiki/Adding-a-Scene-Script)
+- [Scene script](Add-a-new-scene-script)
+
## How to edit the…
@@ -79,7 +79,6 @@ Tutorials may use diff syntax to show edits:
- [Short beeping noise for low HP](Short-beeping-noise-for-low-HP)
- [Remove the artificial save delay](Remove-the-artificial-save-delay)
- [Option to show shiny colors in Pokédex](Option-to-show-shiny-colors-in-Pokédex)
-- [Making items that act like HM Field Moves](Adding-items-that-act-like-HMs)
## Removing features
@@ -113,6 +112,12 @@ Tutorials may use diff syntax to show edits:
- [Gain experience from catching Pokémon](Gain-experience-from-catching-Pokémon)
+## Custom features
+
+- [Items that act like HM field moves](Adding-items-that-act-like-HMs)
+- [Level cap](Level-cap)
+
+
## Assembly programming
- [Optimizing assembly code](Optimizing-assembly-code)