diff --git a/typeChart.py b/typeChart.py index 281bd59..9af9305 100644 --- a/typeChart.py +++ b/typeChart.py @@ -1,3 +1,12 @@ -def match(): +class Type(): + def __init__(self, weak, resist, immune): + self.weak = weak + self.resist = resist + self.immune = immune + del weak, resist, immune + +# create class types later + +def match(type1,type2): # dummy return 1