本文整理汇总了Python中output.Output.sold1方法的典型用法代码示例。如果您正苦于以下问题:Python Output.sold1方法的具体用法?Python Output.sold1怎么用?Python Output.sold1使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类output.Output
的用法示例。
在下文中一共展示了Output.sold1方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: cmd_sell
# 需要导入模块: from output import Output [as 别名]
# 或者: from output.Output import sold1 [as 别名]
def cmd_sell(*params):
try:
if params[1] == "EoCMD":
item = data.inventory[params[0]]
quantity = 1
else:
item = data.inventory[params[1]]
quantity = int(params[0])
data.inventory.remove(item, quantity, verbose=False)
Output.sold1(item.NAME)
data.pouch.add(data.pouchitems['gold'], int((item.VALUE * quantity) / 2))
except (KeyError, AttributeError, ValueError):
try:
hero = data.party.get_member_with_this_equipment(params[0])
item = hero.get_equipment(params[0])
empty_item = data.inventory.get_empty_of_this_type(item.TYPE)
hero.set_equipment(empty_item, verbose=False)
Output.sold1(item.NAME)
Output.sold2(item.NAME, hero.NAME)
data.pouch.add(data.pouchitems['gold'], int(item.VALUE / 2))
except (AttributeError, ValueError):
print("sell ([quantity]) [gear_name_without_spaces]")