From 7cb4290601010459b09376396c7833ec391c25bf Mon Sep 17 00:00:00 2001 From: jacopograndi Date: Fri, 24 Dec 2021 21:11:39 +0100 Subject: working on it --- scripts/resources.gd | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 scripts/resources.gd (limited to 'scripts/resources.gd') diff --git a/scripts/resources.gd b/scripts/resources.gd new file mode 100644 index 0000000..1fc50c5 --- /dev/null +++ b/scripts/resources.gd @@ -0,0 +1,27 @@ +extends Node + +var T : float = 500 +var k : float = 0 +var a : float = 0 +var d : float = 0 +var s : float = 0 + +func get_names(): return "Tkads" + +func dict_to_str (cost): + var st = "" + for n in cost.keys(): + st += str(cost[n]) + n + return st + +func add (cost): + for n in cost.keys(): self[n] += cost[n] + +func sub (cost): + for n in cost.keys(): self[n] -= cost[n] + +func greater_than (cost): + for n in cost.keys(): + if self[n] < cost[n]: + return false + return true -- cgit v1.2.3-54-g00ecf