summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2018-12-30 23:25:41 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2018-12-30 23:25:41 -0500
commit6ee6a26577a7c92c624dd48adf89d5ce37554f39 (patch)
tree95712c06e55056ad378221049d3d9e7c493257cd
parente84384b8ba473aaa98dab5b0fa2ba7aa43da0161 (diff)
Fix typo, mention tutorial
-rw-r--r--Add-a-new-trainer-class.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Add-a-new-trainer-class.md b/Add-a-new-trainer-class.md
index e067d53..0bd7ff5 100644
--- a/Add-a-new-trainer-class.md
+++ b/Add-a-new-trainer-class.md
@@ -153,7 +153,7 @@ The four numbers define, in order, the Attack, Defense, Speed, and Special DVs f
Female trainer classes tend to have low Attack DVs so that their Pokémon will usually be female (since gender in Gen 2 was determined by the Attack and Speed DVs, primarily Attack). Gym Leaders are mostly an exception to this rule.
-You may also want to choose DVs that give some important Parasol Lady the right Hidden Power type, if that's relevant.
+You may also want to choose DVs that give some important Parasol Lady the right Hidden Power type, if that's relevant. Or follow [this tutorial](Allow-more-trainer-parties,-with-individual-DVs,-stat-experience,-and-nicknames) to give individual trainers unique DVs (as well as stat experience and nicknames!).
## 5. Define their encounter music
@@ -230,12 +230,12 @@ Anyway, edit [data/trainers/palettes.asm](../blob/master/data/trainers/palettes.
INCBIN "gfx/trainers/falkner.gbcpal", middle_colors
...
INCBIN "gfx/trainers/mysticalman.gbcpal", middle_colors
-+INCBIN "gfx/trainers/mysticalman.parasol_lady", middle_colors
++INCBIN "gfx/trainers/parasol_lady.gbcpal", middle_colors
```
parasol_lady.2bpp.lz and parasol_lady.gbcpal will be automatically generated from parasol_lady.png when you run `make`.
-(Older versions of pokecrystal would `INCLUDE "parasol_lady.pal"` instead of `INCBIN "parasol_lady.gbcpal"`. This is because they generated .pal files instead of .gbcpal, but this was redundant work and could mislead users into editing .pal files directly, so as of September 2018 they were removed.)
+(Older versions of pokecrystal would `INCLUDE "parasol_lady.pal"` instead of `INCBIN "parasol_lady.gbcpal", middle_colors`. This is because they generated .pal files instead of .gbcpal, but this was redundant work and could mislead users into editing .pal files directly, so as of September 2018 they were removed.)
## 7. Define their individual parties