diff options
author | tom-overton <tom.overton@outlook.com> | 2022-05-17 08:39:15 -0700 |
---|---|---|
committer | rafa_99 <raroma09@gmail.com> | 2022-05-18 04:21:27 +0100 |
commit | c5e32a2e30bdae5df663ef47b42dad7a9b1eab42 (patch) | |
tree | 36b55ccbb8617adeceb0ab9e7e3b85f0adbf516e /src/com/sneed/pkrandom/constants/Gen3Constants.java | |
parent | 4744fe9c8335401805b53578f3739bfc5236a20e (diff) |
Read sound move information from moves
Diffstat (limited to 'src/com/sneed/pkrandom/constants/Gen3Constants.java')
-rw-r--r-- | src/com/sneed/pkrandom/constants/Gen3Constants.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/sneed/pkrandom/constants/Gen3Constants.java b/src/com/sneed/pkrandom/constants/Gen3Constants.java index 4721893..34dd4a9 100644 --- a/src/com/sneed/pkrandom/constants/Gen3Constants.java +++ b/src/com/sneed/pkrandom/constants/Gen3Constants.java @@ -207,6 +207,10 @@ public class Gen3Constants { noDamageAtkAndDefPlusOneEffect = 208, poisonTailEffect = 209, noDamageSpAtkAndSpDefPlusOneEffect = 211, noDamageAtkAndSpePlusOneEffect = 212; + public static final List<Integer> soundMoves = Arrays.asList(Moves.growl, Moves.roar, Moves.sing, Moves.supersonic, + Moves.screech, Moves.snore, Moves.uproar, Moves.metalSound, Moves.grassWhistle, Moves.hyperVoice, + Moves.perishSong, Moves.healBell); + public static final List<Integer> rsRequiredFieldTMs = Arrays.asList(1, 2, 6, 7, 11, 18, 22, 23, 26, 30, 37, 48); |