本文整理汇总了Python中output.Output.buy方法的典型用法代码示例。如果您正苦于以下问题:Python Output.buy方法的具体用法?Python Output.buy怎么用?Python Output.buy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类output.Output
的用法示例。
在下文中一共展示了Output.buy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: OnDClick
# 需要导入模块: from output import Output [as 别名]
# 或者: from output.Output import buy [as 别名]
def OnDClick(self, event):
gear_raw = self.grid_shop.GetCellValue(event.GetRow(), 0)
quantity = 1
item = None
for combo in data.list_gear_dict.values():
if gear_raw in combo[0]:
item = combo[1](combo[0][gear_raw])
break
if item.SHOP:
if data.pouch.remove(data.pouchitems.gold, item.VALUE * quantity):
Output.buy(quantity, item.NAME, item.VALUE)
self.message("Purchased {} {} for {} gold.".format(quantity, item.NAME, item.VALUE * quantity))
data.inventory.add(item, quantity)
self._load_buy()
示例2: cmd_purchase
# 需要导入模块: from output import Output [as 别名]
# 或者: from output.Output import buy [as 别名]
def cmd_purchase(*params):
try:
if params[1] == "EoCMD":
gear_raw = params[0]
quantity = 1
else:
gear_raw = params[1]
quantity = int(params[0])
item = None
for combo in data.list_gear_dict.values():
if gear_raw in combo[0]:
item = combo[1](combo[0][gear_raw])
break
if item.SHOP:
if data.pouch.remove(data.pouchitems['gold'], item.VALUE * quantity):
Output.buy(quantity, item.NAME, item.VALUE)
data.inventory.add(item, quantity)
except (AttributeError, ValueError):
print("purchase ([quantity]) [gear_name_without_spaces]")