Skip to content

Commit

Permalink
Update typeChart.py
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sussy-impostor authored May 3, 2024
1 parent 5e58722 commit 6d837fc
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion typeChart.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6d837fc

Please sign in to comment.