턴제게임1 [AI 웹개발TIL][13일차 TIL] 턴제 게임 만들기 (개인과제) 게임 과제 제공자 : "스파르타 코딩 캠프" 진행 중인 과정 : AI 웹 개발과정 턴제 게임 만들기 발제! 더보기 힌트(캐릭터 클래스) class Character: """ 모든 캐릭터의 모체가 되는 클래스 """ def __init__(self, name, hp, power): self.name = name self.max_hp = hp self.hp = hp self.power = power def attack(self, other): damage = random.randint(self.power - 2, self.power + 2) other.hp = max(other.hp - damage, 0) print(f"{self.name}의 공격! {other.name}에게 {damage}의 데미지를 입혔.. 2023. 4. 3. 이전 1 다음