pmd-red/include/type_chart.h
2024-09-25 12:57:17 +02:00

17 lines
346 B
C

#ifndef GUARD_TYPE_CHART_H
#define GUARD_TYPE_CHART_H
#include "constants/type.h"
#define NUM_EFFECTIVENESS 4
#define EFFECTIVENESS_IMMUNE 0
#define EFFECTIVENESS_RESIST 1
#define EFFECTIVENESS_NEUTRAL 2
#define EFFECTIVENESS_SUPER 3
// [Attacking type][Defending type]
extern const s16 gTypeEffectivenessChart[NUM_TYPES][NUM_TYPES];
#endif