Python类王者荣耀小游戏

一个有趣的(无聊的)关于类的Python王者荣耀小游戏(咳咳)

最近老师给我们布置了一个类的作业,我在网上看(瞥)了好多教程,一时间 心领神会,心血来潮,,心有灵犀,,,不对。。不管了,写了一个无聊的游戏练练手 
o(# ̄▽ ̄)==O)) ̄0 ̄")o 金钢飞拳~!!

Python类王者荣耀小游戏_第1张图片

import random as rd
import time
import threading
import os

# 生命体
class Life:
	def __init__(self, name='LIFE', life=100, attack=100, defend=100, money=300):
		self.name = name
		self.life = life
		self.attack = attack
		self.defend = defend
		self.money = money
		self.vis_lt = []

	def fight(self):
		pass


# 武器装备,技能
class Weapon:
	def __init__(self):
		pass


# 英雄
class Hero(Life):
	def __init__(self, name='镜', life=3000, attack=200, defend=100, money=300, ocu_name='打野'

你可能感兴趣的:(笔记,python,游戏,类,经验分享)