Implemented simple quest system

This commit is contained in:
Segey Lapin
2020-04-15 12:16:14 +03:00
parent 078cc47b91
commit 32c5212209
14 changed files with 366 additions and 202 deletions

View File

@@ -0,0 +1,22 @@
extends Node
signal level_up
signal new_quest
var money: int = 2000
var master_node
var current_room
var team = {}
var line = {}
var training = false
# warning-ignore:unused_class_variable
var quests : = []
# warning-ignore:unused_class_variable
var team_train_count : = 0
# warning-ignore:unused_class_variable
var arrow: Spatial
# warning-ignore:unused_class_variable
var next_scene: String
var player_visual = {
"gender": "male"
}