Commit 8d04d8e7 by BellCodeEditor

save project

parent c5d720d4
Showing with 43 additions and 17 deletions
class Cat:
def __init__(self):
self.footNum = 4 # 腿
self.eyeNum = 2 # 眼睛
self.head = 1 # 头
self.earsNum = 2 # 耳朵
self.skin = "black"
def run(self):
print("小猫飞快的跑起来")
def skill(self,prey):
print (”小猫抓住了"+prey)
role = Cat()
role.skill("老鼠")
\ No newline at end of file
class Hero:
def__init__(self,name):
self.level = 1
self.hp = 250
self.attack = 40
self.max_hp = self.hp
def combat(self,enemy):
info1 = self.name+"对"+enemy.name+"发起进攻"
info2 = "造成"+str(self.attack)+"点伤害"
enemy.hp -= self.attack
if enemy.hp > 0:
info3 = enemy.name+"还剩下"+str(enemy.hp)+"血量"
info1 = info1+info2+info3
print(info)
else:
info3 = enemy.name+"死了,结束"
info = info2+info2+info3
print(info)
exit()
class Player(Hero):
def__init__(self,name):
super().def__init__(name)
self.hp = 200
self.attack = 50
player = Player("后羿")
print("玩家血量为:",player.hp)
print("玩家攻击力为:",player.attack)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment