python实现的简单RPG游戏流程实例


Posted in Python onJune 28, 2015

本文实例讲述了python实现的简单RPG游戏流程。分享给大家供大家参考。具体如下:

#RPG
rpg = True
whp = 100
mahp = 100
hhp = 100
MHP = 10
def dgrnd () :
 wa = raw_input ("What does Warrior do?")
 ma = raw_input ("What does Mage do?")
 ha = raw_input ("What does Healer do?")
 if wa == "flame slash" :
  print ("Warrior uses Flame Slash!")
  MHP-20
 elif wa == "Dragon Slash" and M == "Dragon" :
  print ("Warrior used Dragon Slash!")
  MHP-80
 if wa == "Dragon" and M == "Troll" or M == "Goblin" :
  print ("Warrior's attack did no damage!")
 if ma == "icicle drop" :
  print ("Mage used Icicle Drop")
  MHP-15
  mahp-10
  whp-10
  hhp-10
 if ma == "flames of heck" :
  MHP-75
  mahp-50
  wph-50
  hhp-50
 if ha == "heal warrior" :
  print ("Healer Heals Warrior!")
  whp + 20
 if ha == "heal mage" :
  print ("Healer Heals Mage!")
  mahp + 20
 if ha == "heal healer" :
  print ("Healer Heals Healer!")
  hhp + 20
 if ha == "attack" :
  print ("Healer Attacks!")
  MHP - 5
  print (M+"attacks!")
 if M == "dragon" :
  whp - 40
  mahp - 40
  hhp - 40
 if M == "Troll" :
  whp - 30
  mahp - 30
  hhp - 30
 if M == "Goblin" :
  whp - 20
  mahp - 20
  hhp -20
 print ("Warrior has "+whp+" HP left, Mage has "+mahp+" HP left, and Healer has "+hhp+" HP left!")
 if MHP == 0 :
  print ("You defeated the "+M+" !")
  print ("That is all I have built so far. Eventually, there will be more!")
  print ("Thank You for Playing!!")
  dgrnd ()
if rpg == True :
 print ("This mode is not yet complete. It only contains a dungeon so far. I'm still working on the rest.")
#Dungeon
 whp = 100
 mahp = 100
 hhp = 100
 MHP = 10
 M = "fail"
 print ("You enter the dungeon")
 rm = raw_input ("There are three passages. Do you take the first one, the second one, or the third one?")
 if rm == 'one' :
  M = 'Troll'
  MHP = 80
  print ("A "+M+" appears!")
 if rm == 'two' :
  M = 'Goblin'
  MHP = 35
  print ("A "+M+" appears!")
 if rm == 'three' :
  M = 'Dragon'
  MHP = 120
  print ("A "+M+" appears!")
 while MHP > 0 :
  dgrnd ()

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python基于pygame实现的font游戏字体(附源码)
Nov 11 Python
django 常用orm操作详解
Sep 13 Python
python搭建服务器实现两个Android客户端间收发消息
Apr 12 Python
详解Django中间件的5种自定义方法
Jul 26 Python
基于Python对数据shape的常见操作详解
Dec 25 Python
django将网络中的图片,保存成model中的ImageField的实例
Aug 07 Python
python递归下载文件夹下所有文件
Aug 31 Python
pandas将多个dataframe以多个sheet的形式保存到一个excel文件中
Oct 10 Python
python中Lambda表达式详解
Nov 20 Python
在pycharm中debug 实时查看数据操作(交互式)
Jun 09 Python
使用Python将语音转换为文本的方法
Aug 10 Python
Visual Studio Code搭建django项目的方法步骤
Sep 17 Python
python实现自动登录人人网并采集信息的方法
Jun 28 #Python
Python实现将绝对URL替换成相对URL的方法
Jun 28 #Python
python实现将html表格转换成CSV文件的方法
Jun 28 #Python
python实现根据主机名字获得所有ip地址的方法
Jun 28 #Python
python自动zip压缩目录的方法
Jun 28 #Python
python查找指定具有相同内容文件的方法
Jun 28 #Python
python中getaddrinfo()基本用法实例分析
Jun 28 #Python
You might like
PHP 中的类
2006/10/09 PHP
PHP zlib扩展实现页面GZIP压缩输出
2010/06/17 PHP
PHP中使用数组实现堆栈数据结构的代码
2012/02/05 PHP
php文件缓存类汇总
2014/11/21 PHP
php实现遍历文件夹的方法汇总
2017/03/02 PHP
Laravel 手动开关 Eloquent 修改器的操作方法
2019/12/30 PHP
如何在父窗口中得知window.open()出的子窗口关闭事件
2013/10/15 Javascript
jquery text(),val(),html()方法区别总结
2013/11/04 Javascript
jQuery多项选项卡的实现思路附样式及代码
2014/06/03 Javascript
node.js WEB开发中图片验证码的实现方法
2014/06/03 Javascript
jquery遍历标签中自定义的属性方法
2016/09/17 Javascript
Vue系列:通过vue-router如何传递参数示例
2017/01/16 Javascript
JavaScript创建对象的七种方式(推荐)
2017/06/26 Javascript
webpack进阶——缓存与独立打包的用法
2017/08/02 Javascript
详解vue 模拟后台数据(加载本地json文件)调试
2017/08/25 Javascript
ligerUI---ListBox(列表框可移动的实例)
2017/11/28 Javascript
浏览器事件循环与vue nextTicket的实现
2019/04/16 Javascript
ES6 Class中实现私有属性的一些方法总结
2019/07/08 Javascript
详解element上传组件before-remove钩子问题解决
2020/04/08 Javascript
基于leaflet.js实现修改地图主题样式的流程分析
2020/05/15 Javascript
解决VUEX的mapState/...mapState等取值问题
2020/07/24 Javascript
[06:44]2018DOTA2亚洲邀请赛4.5 SOLO赛 MidOne vs Sumail
2018/04/06 DOTA
python解决Fedora解压zip时中文乱码的方法
2016/09/18 Python
python 第三方库的安装及pip的使用详解
2017/05/11 Python
python机器学习理论与实战(五)支持向量机
2018/01/19 Python
python微信公众号开发简单流程
2018/03/23 Python
详解Django中类视图使用装饰器的方式
2018/08/12 Python
python实现修改固定模式的字符串内容操作示例
2019/12/30 Python
Pycharm debug调试时带参数过程解析
2020/02/03 Python
python 制作网站筛选工具(附源码)
2021/01/21 Python
应届生体育教师自荐信
2013/10/03 职场文书
技术总监管理岗位职责
2014/03/09 职场文书
2014年个人技术工作总结
2014/12/08 职场文书
党员个人自我评价
2015/03/03 职场文书
SpringCloud Alibaba项目实战之nacos-server服务搭建过程
2021/06/21 Java/Android
Android中的Launch Mode详情
2022/06/05 Java/Android