bunch of changes, about to try somehting funky
This commit is contained in:
parent
902024fc3f
commit
0a9a916ee1
32 changed files with 585 additions and 41 deletions
|
|
@ -16,7 +16,9 @@ func _process(delta: float) -> void:
|
|||
|
||||
func show_tip(item : ItemData, extra : String = ""):
|
||||
tooltip_label.text = item.item_name
|
||||
if item.buy_value > 0:
|
||||
if item.buy_value > 200:
|
||||
tooltip_label.text += "\n[color=gold]Sell Value: $"+str(floori(item.buy_value/float(2))) + "[/color]"
|
||||
elif item.buy_value > 0:
|
||||
tooltip_label.text += "\nSell Value: $"+str(floori(item.buy_value/float(2)))
|
||||
if item.botnet_power > 0:
|
||||
tooltip_label.text += "\n[color=orchid]Botnet Power: " + str(item.botnet_power) +"[/color]"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue