shithub: pokered

Download patch

ref: 1e689606a3e25875af72323ea0f45b06ed044b79
parent: 498da6ab0921a280507b3d96e7faac1b305959bd
author: Rangi <remy.oukaour+rangi42@gmail.com>
date: Wed Aug 10 17:20:31 EDT 2022

PP must be 40 or less

--- a/data/moves/moves.asm
+++ b/data/moves/moves.asm
@@ -5,6 +5,7 @@
 	db \4 ; type
 	db \5 percent ; accuracy
 	db \6 ; pp
+	assert \6 <= 40, "PP must be 40 or less"
 ENDM
 
 Moves: