ν΄λμ€, __inti__
class Unit:
def __init__(self, name, hp, damage):
self.name = name
self.hp = hp
self.damage = damage
print("{0} μ λμ΄ μμ±λμμ΅λλ€.".format(self.name))
print("체λ ₯ {0}, 곡격λ ₯ {1}".format(self.hp,self.damage))
marine1 = Unit("λ§λ¦°", 30, 6)
marine2 = Unit("λ§λ¦°", 30, 7)
λ©€λ²λ³μ
#λ©€λ²λ³μ
#μ΄λ€ ν΄λμ€ λ΄μμ μ μλ λ³μ
#λ μ΄μ€ : κ³΅μ€ μ λ, λΉνκΈ°, ν΄λ‘νΉ (μλλ°©μκ² λ³΄μ΄μ§ μμ)
wraith1 = Unit("λ μ΄μ€", 80, 5)
print("μ λ μ΄λ¦ : {0}, 곡격λ ₯ : {1}".format(wraith1.name,wraith1.damage))
# λ§μΈλ 컨νΈλ‘€ : μλλ°© μ λμ λ΄κ²μΌλ‘ λ§λλ κ² (λΉΌμμ)
wraith2 = Unit("λ μ΄μ€", 80, 5)
wraith2.clocking = True #ν΄λμ€ μΈλΆμμ νμ₯ν μ μμ
if wraith2.clocking == True:
print("{0} λ νμ¬ ν΄λ‘νΉ μνμ
λλ€".format(wraith2.name))
μ΄μ§Έ μ½λ© μ§μλ³΄λ€ μ€νν¬λννΈ μ§μμ΄ λ λμ κ² κ°μ λλμ μΈ λλ