mirror of
https://github.com/tpawstdio/skyscraperrising.git
synced 2025-08-14 05:34:44 -04:00
Initial source commit
This commit is contained in:
commit
5d90700bdc
16 changed files with 1042 additions and 0 deletions
16
project/src/autoload/twrdata.gd
Normal file
16
project/src/autoload/twrdata.gd
Normal file
|
@ -0,0 +1,16 @@
|
|||
extends Node
|
||||
|
||||
var tower_name: String
|
||||
|
||||
var budget: int
|
||||
var prev_budget: int
|
||||
|
||||
func starting_budget(lev: int):
|
||||
|
||||
if lev == 3:
|
||||
budget = 5000
|
||||
elif lev == 2:
|
||||
budget = 10000
|
||||
# Default to easy mode
|
||||
else:
|
||||
budget = 20000
|
Loading…
Add table
Add a link
Reference in a new issue