From 6d837fcdff1dc5233faf8ff93480ed7d3d93e02f Mon Sep 17 00:00:00 2001 From: Not Sus Impostor <111621644+a-sussy-impostor@users.noreply.github.com> Date: Fri, 3 May 2024 21:31:37 +0800 Subject: [PATCH] Update typeChart.py --- typeChart.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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