我是一个初级程序员,我有我正在制作的这款游戏,但我的问题是,在我的游戏中,用户有可以在战斗中花费的点数。它会根据你花了多少钱来更新积分变量。
global Points
Points = int(100)
def Combat():
print('how much points would you spend(higher points = higher chance of winning')
a9 = int(input('>'))
Points = int(Points)- int(a9)
global Poin