我一直在尝试使用 MUD-PI 编写一个多用户地牢,但我一直坚持制作战斗命令,我希望它像 kill [monster] 之类的东西,例如 kill troll。
这是我的命令代码
elif command == "kill":
mn = params.lower()
rm = rooms[players[id]["room"]]
if rm["enemy"] == 'yes':
if mn in rm["monsterName"]:
monster = mn
if monster.hp >= 0:
mud.send_message(id,"You attack %s for %d damage" % (rm["monsterName"], players[id]["ATK"]))
monster.hp -= players[id]["ATK"]
else:
monster.death()
else:
mud.send_message(id, "you dont see a %s" % mn)
else:
mud.send_message(id, "you dont see an enemy")
这是我的房间代码。
#Rooms
import sys, random, os
#import monsters
from Monsters import *
# structure defining the rooms in the game. Try adding more rooms to the game!
rooms = {
"Tavern": {
"description": "You're in a cozy tavern warmed by an open fire.",
"exits": { "outside": "Outside" },
},
"Outside": {
"description": "You're standing outside a tavern. there is a troll.",
"exits": { "inside": "Tavern" },
"enemy": "yes",
"monsterName": {"troll": troll },
}
}
还有我的怪物代码。
#monsters
import sys,random,os,time
#Troll
class Troll():
def __init__(self):
self.name = "Troll"
self.ATK = 2
self.hp = 10
self.max_hp = 10
def death(self):
mud.send_message(id,"you killed the troll")
self.hp = self.max_hp
troll = Troll()
当我尝试 kill 命令时,我得到了这个错误。
if monster.hp >= 0:
AttributeError: 'unicode' object has no attribute 'hp'
我想知道是否有更好的方法可以做到这一点,如果有,如何解决,如果没有,我该如何解决我的问题。