extends BuyMenuButton @export var TurboAmount : float = 1000 func bought_action(): if PlayerShip.Hull.Fuel == PlayerShip.Hull.MaxFuel: PlayerShip.Money += Price else: if PlayerShip.Hull.Fuel + TurboAmount > PlayerShip.Hull.MaxFuel: PlayerShip.Hull.Fuel = PlayerShip.Hull.MaxFuel else: PlayerShip.Hull.Fuel += TurboAmount