Merge pull request #17 from STEMuli-Tx/feature/hot-fixes
Track missions and fix lamp postpull/18/head
commit
e6a0cdfbbb
@ -0,0 +1,64 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://x5h4xutbldq3"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="1_nv6c6"]
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_yfbrc"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dv14kkhb6umkv" path="res://structures/road-straight.tres" id="2_d0ffl"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_ywws1"]
|
||||||
|
script = ExtResource("1_yfbrc")
|
||||||
|
type = 0
|
||||||
|
target_count = 3
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 3 connecting roads"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_d0ffl")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("1_nv6c6")
|
||||||
|
id = "1"
|
||||||
|
title = "Census Planning"
|
||||||
|
description = "As the new city planner, you need to establish a baseline understanding of your growing community. The mayor has requested a comprehensive census to guide future development."
|
||||||
|
objectives = Array[ExtResource("1_yfbrc")]([SubResource("Resource_ywws1")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 250
|
||||||
|
}
|
||||||
|
next_mission_id = "2"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Welcome to Stem City! Let's learn how to build a city from the ground up. Start by building a road."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"correct_answer": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 5000,
|
||||||
|
"text": ["Great job! That's the right answer!", "Perfect! You got it right!"]
|
||||||
|
},
|
||||||
|
"incorrect_answer": {
|
||||||
|
"animation": "sad",
|
||||||
|
"duration": 5000,
|
||||||
|
"text": ["Hmm, that doesn't look right. Let's try again.", "Not quite right. Don't worry, you can try again!"]
|
||||||
|
},
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["You've completed your first mission! Great job building your first road!"]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Welcome to Stem City! I'm your learning companion. Let's build a city together!", "Time to start our adventure in Stem City! I'll help you build your first city."]
|
||||||
|
},
|
||||||
|
"objective_completed_2": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 5000,
|
||||||
|
"text": ["You built a road! Now your citizens can move around the city.", "Nice work on that road! Roads help connect different parts of your city."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String](["res://models/building-small-a.glb"])
|
||||||
@ -0,0 +1,64 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://cjr36hqnmyn0x"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_dhx01"]
|
||||||
|
[ext_resource type="Resource" uid="uid://cntgl86ianngh" path="res://structures/building-small-a.tres" id="2_em5vq"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="2_mum3p"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_7c02e"]
|
||||||
|
script = ExtResource("1_dhx01")
|
||||||
|
type = 0
|
||||||
|
target_count = 3
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 3 residential buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_em5vq")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("2_mum3p")
|
||||||
|
id = "2"
|
||||||
|
title = "Census Planning"
|
||||||
|
description = "Now that we have a road, let's build a residential building for our citizens!"
|
||||||
|
objectives = Array[ExtResource("1_dhx01")]([SubResource("Resource_7c02e")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 250
|
||||||
|
}
|
||||||
|
next_mission_id = "3"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Great job on the road! Now let's build a residential building where our citizens can live."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"correct_answer": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 5000,
|
||||||
|
"text": ["Great job! That's the right answer!", "Perfect! You got it right!"]
|
||||||
|
},
|
||||||
|
"incorrect_answer": {
|
||||||
|
"animation": "sad",
|
||||||
|
"duration": 5000,
|
||||||
|
"text": ["Hmm, that doesn't look right. Let's try again.", "Not quite right. Don't worry, you can try again!"]
|
||||||
|
},
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["You've completed your second mission! Great job building your first residential building!"]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Now it's time to build homes for our citizens!", "Let's add a residential building to our city!"]
|
||||||
|
},
|
||||||
|
"objective_completed_3": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 5000,
|
||||||
|
"text": ["Amazing! You built your first residential building where people can live.", "You just built a home for your city residents! The population is growing."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String](["res://models/road-corner.glb"])
|
||||||
@ -0,0 +1,62 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=4 format=3 uid="uid://dykbopx8n3c3v"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_l3spi"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="2_b4llw"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_c06be"]
|
||||||
|
script = ExtResource("1_l3spi")
|
||||||
|
type = 3
|
||||||
|
target_count = 50
|
||||||
|
current_count = 0
|
||||||
|
description = "Reach a population of 50 citizens"
|
||||||
|
completed = false
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("2_b4llw")
|
||||||
|
id = "3"
|
||||||
|
title = "Census Planning"
|
||||||
|
description = "As your city grows, you need to choose the most efficient construction company."
|
||||||
|
objectives = Array[ExtResource("1_l3spi")]([SubResource("Resource_c06be")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 500
|
||||||
|
}
|
||||||
|
next_mission_id = "4"
|
||||||
|
graph_path = "res://images/mission_2.png"
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Your city is rapidly growing, and you need to build houses to accommodate new residents! Two different construction companies offer to help. Study the company data below, find the unit rates (houses per worker), and determine which company would require fewer workers to build 40 houses in a week. Which company requires fewer workers to build 40 houses in a week? (A or B)"
|
||||||
|
question_text = "Which company requires fewer workers to build 40 houses in a week? (A or B)"
|
||||||
|
correct_answer = "A"
|
||||||
|
feedback_text = "Correct! Company A (City Builders Inc.) would require fewer workers to build 40 houses. Company A builds at a rate of 4 houses per worker per week, while Company B builds at a rate of 3 houses per worker per week. For 40 houses, Company A needs 10 workers while Company B needs about 13.33 workers."
|
||||||
|
incorrect_feedback = "Not quite right. Look carefully at the data for both companies. Compare their rates: Company A builds 4 houses per worker per week, while Company B builds 3 houses per worker per week. Calculate how many workers each would need for 40 houses."
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"correct_answer": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 5000,
|
||||||
|
"text": ["Perfect! Company A is more efficient because each worker builds more houses per week.", "Exactly right! You found the company that can build the houses with fewer workers."]
|
||||||
|
},
|
||||||
|
"incorrect_answer": {
|
||||||
|
"animation": "sad",
|
||||||
|
"duration": 5000,
|
||||||
|
"text": ["Let's think about this differently. Look at how many houses each worker can build per week and calculate from there.", "Not quite right. Check the rates carefully: how many houses can one worker build in a week for each company?"]
|
||||||
|
},
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": "Great job selecting the most efficient construction company! Your city will grow faster now."
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["It's time to expand our city! We need to choose the most efficient construction company.", "We have two construction companies offering their services. Let's analyze which one is better!"]
|
||||||
|
},
|
||||||
|
"objective_completed_7": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 5000,
|
||||||
|
"text": ["You've solved the construction company problem! That's good mathematical thinking.", "You've made a wise decision based on the data. That's how city planners work!"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String](["res://models/store.glb"])
|
||||||
@ -0,0 +1,38 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://442cwthak2pa"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_tcpuf"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dtal0tl2ee336" path="res://structures/store.tres" id="2_d7dn8"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_viy3t"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_1rxby"]
|
||||||
|
script = ExtResource("1_tcpuf")
|
||||||
|
type = 0
|
||||||
|
target_count = 2
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 2 store buildings "
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_d7dn8")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_viy3t")
|
||||||
|
id = "4"
|
||||||
|
title = "Market Research"
|
||||||
|
description = "Local businesses are interested in setting up shop in your city, but they need data on where to locate for maximum profit."
|
||||||
|
objectives = Array[ExtResource("1_tcpuf")]([SubResource("Resource_1rxby")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 0
|
||||||
|
}
|
||||||
|
next_mission_id = "5"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = ""
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://bom5bu47dy5kp"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_pfd6v"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dv14kkhb6umkv" path="res://structures/road-straight.tres" id="2_ktjdq"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_w1cq1"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_a42kn"]
|
||||||
|
script = ExtResource("1_pfd6v")
|
||||||
|
type = 0
|
||||||
|
target_count = 3
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 3 additional road segments"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_ktjdq")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_w1cq1")
|
||||||
|
id = "5"
|
||||||
|
title = "Market Research"
|
||||||
|
description = "To support the growing commercial district, you need to improve city infrastructure by adding more roads."
|
||||||
|
objectives = Array[ExtResource("1_pfd6v")]([SubResource("Resource_a42kn")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 300
|
||||||
|
}
|
||||||
|
next_mission_id = "6"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Your businesses need better access! Add 3 more road segments to improve city connectivity."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Great job expanding the road network! Better roads mean better business for your stores."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to improve city infrastructure! Let's add more roads to support your growing commercial district."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,47 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=4 format=3 uid="uid://csrqvfwp63ygr"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_a8iy6"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="2_5q4dp"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_m1jev"]
|
||||||
|
script = ExtResource("1_a8iy6")
|
||||||
|
type = 3
|
||||||
|
target_count = 75
|
||||||
|
current_count = 0
|
||||||
|
description = "Reach a population of 75 citizens"
|
||||||
|
completed = false
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("2_5q4dp")
|
||||||
|
id = "6"
|
||||||
|
title = "Market Research"
|
||||||
|
description = "Your commercial district needs more customers! Grow your city's population to support local businesses."
|
||||||
|
objectives = Array[ExtResource("1_a8iy6")]([SubResource("Resource_m1jev")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 400
|
||||||
|
}
|
||||||
|
next_mission_id = "7"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Businesses need customers! Increase your city population to 75 citizens to support your commercial sector."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Your city has reached 75 citizens! That's a great boost for your local economy and businesses."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Let's grow our city population to support our new businesses! More people means more customers."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String](["res://models/road-straight-lightposts.glb"])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://qwiwim2pg88f"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_lsd8i"]
|
||||||
|
[ext_resource type="Resource" uid="uid://mxrnqinnsqnt" path="res://structures/road-straight-lightposts.tres" id="2_v2q1j"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_gtu3s"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_mhw3l"]
|
||||||
|
script = ExtResource("1_lsd8i")
|
||||||
|
type = 0
|
||||||
|
target_count = 2
|
||||||
|
current_count = 0
|
||||||
|
description = "Add 2 roads with lamp posts"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_v2q1j")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_gtu3s")
|
||||||
|
id = "7"
|
||||||
|
title = "Market Research"
|
||||||
|
description = "The Chamber of Commerce has requested better lighting for the commercial district to attract evening shoppers."
|
||||||
|
objectives = Array[ExtResource("1_lsd8i")]([SubResource("Resource_mhw3l")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 350
|
||||||
|
}
|
||||||
|
next_mission_id = "8"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's improve the shopping experience! Add roads with lamp posts to make the commercial district more inviting at night."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Excellent! These lamp posts will help businesses attract customers even in the evening hours."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Let's light up the commercial district! Well-lit streets attract more shoppers in the evening."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://cfgw8dblm55c5"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_fvshb"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dv14kkhb6umkv" path="res://structures/road-straight.tres" id="2_evy85"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_mtrpd"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_pj2vg"]
|
||||||
|
script = ExtResource("1_fvshb")
|
||||||
|
type = 0
|
||||||
|
target_count = 5
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 5 road segments"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_evy85")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_mtrpd")
|
||||||
|
id = "8"
|
||||||
|
title = "Grid Growth"
|
||||||
|
description = "City planners have proposed a grid-based layout for efficient city expansion. Begin implementing this pattern with strategic road placement."
|
||||||
|
objectives = Array[ExtResource("1_fvshb")]([SubResource("Resource_pj2vg")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 300
|
||||||
|
}
|
||||||
|
next_mission_id = "9"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's start implementing a grid pattern for your city! Begin by placing 5 road segments in a grid layout."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Great work establishing a grid pattern! This layout will make future city expansion more organized."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to think about city patterns! Grid layouts help organize urban development effectively."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://ba3ndftq7dht7"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_miqck"]
|
||||||
|
[ext_resource type="Resource" uid="uid://cntgl86ianngh" path="res://structures/building-small-a.tres" id="2_r3vpw"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_mdu3m"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_utswr"]
|
||||||
|
script = ExtResource("1_miqck")
|
||||||
|
type = 1
|
||||||
|
target_count = 3
|
||||||
|
current_count = 0
|
||||||
|
description = "Place 3 residential buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_r3vpw")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_mdu3m")
|
||||||
|
id = "9"
|
||||||
|
title = "Grid Growth"
|
||||||
|
description = "Now that you've established your grid pattern, it's time to add residential zones to the grid. This will demonstrate how building placement follows the road network."
|
||||||
|
objectives = Array[ExtResource("1_miqck")]([SubResource("Resource_utswr")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 350
|
||||||
|
}
|
||||||
|
next_mission_id = "10"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's add residents to our grid pattern! Place 3 residential buildings along your road network."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Excellent job placing those residential buildings! Notice how they align with your grid pattern."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to add people to our grid! Watch how building placement creates patterns in urban development."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String](["res://models/power_plant.glb"])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://dgimr2v12rjqu"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_8rvyb"]
|
||||||
|
[ext_resource type="Resource" uid="uid://c4qbn3d85prxx" path="res://structures/power-plant.tres" id="2_0kbkj"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_8cjg3"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_fmshv"]
|
||||||
|
script = ExtResource("1_8rvyb")
|
||||||
|
type = 0
|
||||||
|
target_count = 1
|
||||||
|
current_count = 0
|
||||||
|
description = "Maintain positive electricity balance"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_0kbkj")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_8cjg3")
|
||||||
|
id = "10"
|
||||||
|
title = "Grid Growth"
|
||||||
|
description = "Your growing city needs more power! Ensure you have enough electricity production to support your expanding grid."
|
||||||
|
objectives = Array[ExtResource("1_8rvyb")]([SubResource("Resource_fmshv")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 400
|
||||||
|
}
|
||||||
|
next_mission_id = "11"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Your city needs power to grow! Make sure you have a positive electricity balance by adding power infrastructure."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Great job securing power for your city! Balanced infrastructure is key to sustainable growth."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Let's ensure our grid has enough power! Every growing city needs reliable electricity."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://dm2o4dq2oml53"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_x4c68"]
|
||||||
|
[ext_resource type="Resource" uid="uid://ccb475jeg7ym5" path="res://structures/grass-trees.tres" id="2_hcf87"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_mjpfs"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_mldwf"]
|
||||||
|
script = ExtResource("1_x4c68")
|
||||||
|
type = 0
|
||||||
|
target_count = 4
|
||||||
|
current_count = 0
|
||||||
|
description = "Add 4 grass tiles with trees"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_hcf87")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_mjpfs")
|
||||||
|
id = "11"
|
||||||
|
title = "Grid Growth"
|
||||||
|
description = "Complete your grid pattern with green spaces! Add trees and grass to create a more balanced and livable city pattern."
|
||||||
|
objectives = Array[ExtResource("1_x4c68")]([SubResource("Resource_mldwf")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 300
|
||||||
|
}
|
||||||
|
next_mission_id = "12"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's add some green spaces to our grid pattern! Place 4 grass tiles with trees to improve city aesthetics."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Wonderful! These green spaces create a pattern of balance between urban development and nature."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to add natural elements to our grid! Green spaces are an important part of city planning patterns."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://btwrfq37q8vey"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_ajvs5"]
|
||||||
|
[ext_resource type="Resource" uid="uid://d2jplegnkl6u2" path="res://structures/road-corner.tres" id="2_exdai"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_kexcf"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_qykcx"]
|
||||||
|
script = ExtResource("1_ajvs5")
|
||||||
|
type = 0
|
||||||
|
target_count = 2
|
||||||
|
current_count = 0
|
||||||
|
description = "Create 2 curved road segments"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_exdai")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_kexcf")
|
||||||
|
id = "12"
|
||||||
|
title = "Traffic Flow Analysis"
|
||||||
|
description = "The Transportation Department wants to analyze how curved roads affect traffic flow. Add corner roads to create more natural pathways."
|
||||||
|
objectives = Array[ExtResource("1_ajvs5")]([SubResource("Resource_qykcx")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 300
|
||||||
|
}
|
||||||
|
next_mission_id = "13"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's improve traffic flow by adding curved roads! Place 2 corner road segments to create more natural pathways."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Great job adding those curved roads! These corners help traffic flow more naturally through your city."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to analyze traffic patterns! Curved roads create different traffic flow patterns than straight roads."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://cf7gpb4j7gq1g"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_8k2sf"]
|
||||||
|
[ext_resource type="Resource" uid="uid://cntgl86ianngh" path="res://structures/building-small-a.tres" id="2_4a8uo"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_aihyv"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_fmsjh"]
|
||||||
|
script = ExtResource("1_8k2sf")
|
||||||
|
type = 1
|
||||||
|
target_count = 3
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 3 more residential buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_4a8uo")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_aihyv")
|
||||||
|
id = "13"
|
||||||
|
title = "Traffic Flow Analysis"
|
||||||
|
description = "To better analyze traffic patterns, we need more residents using the road network. Add residential buildings to generate traffic flow."
|
||||||
|
objectives = Array[ExtResource("1_8k2sf")]([SubResource("Resource_fmsjh")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 350
|
||||||
|
}
|
||||||
|
next_mission_id = "14"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's add more traffic to analyze flow patterns! Build 3 more residential buildings along your road network."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Well done! These new residences will generate traffic patterns for us to analyze."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to add more residents to our road network! More people means more traffic to analyze."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://ddmxjjyxgxyxo"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_1hl01"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dv14kkhb6umkv" path="res://structures/road-straight.tres" id="2_i3hgc"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_6fq1p"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_h6f0e"]
|
||||||
|
script = ExtResource("1_1hl01")
|
||||||
|
type = 0
|
||||||
|
target_count = 4
|
||||||
|
current_count = 0
|
||||||
|
description = "Add 4 additional road segments"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_i3hgc")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_6fq1p")
|
||||||
|
id = "14"
|
||||||
|
title = "Traffic Flow Analysis"
|
||||||
|
description = "Our traffic study needs more data! Expand the road network to create more complex traffic patterns for analysis."
|
||||||
|
objectives = Array[ExtResource("1_1hl01")]([SubResource("Resource_h6f0e")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 350
|
||||||
|
}
|
||||||
|
next_mission_id = "15"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's expand our traffic study! Add 4 more road segments to create a more complex network for analysis."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Excellent work expanding the road network! Now we can analyze more complex traffic patterns."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to create more complex traffic patterns! More roads means more data to analyze."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://doxd30r8qbgdq"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_kdkdo"]
|
||||||
|
[ext_resource type="Resource" uid="uid://mxrnqinnsqnt" path="res://structures/road-straight-lightposts.tres" id="2_0dtbf"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_uodr7"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_uq2hw"]
|
||||||
|
script = ExtResource("1_kdkdo")
|
||||||
|
type = 0
|
||||||
|
target_count = 3
|
||||||
|
current_count = 0
|
||||||
|
description = "Install 3 lamp posts on roads"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_0dtbf")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_uodr7")
|
||||||
|
id = "15"
|
||||||
|
title = "Traffic Flow Analysis"
|
||||||
|
description = "Night traffic requires special consideration. Add roads with lamp posts to analyze how lighting affects traffic flow and safety."
|
||||||
|
objectives = Array[ExtResource("1_kdkdo")]([SubResource("Resource_uq2hw")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 400
|
||||||
|
}
|
||||||
|
next_mission_id = "16"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's study night traffic patterns! Add 3 roads with lamp posts to analyze how lighting affects traffic flow."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Perfect! These lamp posts will help us analyze night traffic patterns and safety improvements."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to study night traffic! Proper lighting is essential for traffic safety after dark."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,47 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=4 format=3 uid="uid://duaxn13myfx22"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_40kcw"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="2_x8j3r"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_qlixo"]
|
||||||
|
script = ExtResource("1_40kcw")
|
||||||
|
type = 3
|
||||||
|
target_count = 100
|
||||||
|
current_count = 0
|
||||||
|
description = "Increase population to 100 citizens"
|
||||||
|
completed = false
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("2_x8j3r")
|
||||||
|
id = "16"
|
||||||
|
title = "Sustainable Development"
|
||||||
|
description = "Your city is growing rapidly, but you need to ensure this growth happens sustainably. Model population growth to ensure you can meet everyone's needs."
|
||||||
|
objectives = Array[ExtResource("1_40kcw")]([SubResource("Resource_qlixo")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 500
|
||||||
|
}
|
||||||
|
next_mission_id = "17"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's model sustainable population growth! Grow your city to 100 citizens while balancing resources."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Congratulations on reaching 100 citizens! Your sustainable growth model is working well."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to model sustainable growth! Can we grow our population while maintaining quality of life?"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,59 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=7 format=3 uid="uid://fuxb3pfbbwjm"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_75i2t"]
|
||||||
|
[ext_resource type="Resource" uid="uid://cntgl86ianngh" path="res://structures/building-small-a.tres" id="2_lh8y5"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dtal0tl2ee336" path="res://structures/store.tres" id="3_3t66o"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="4_30pdy"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_qb5w1"]
|
||||||
|
script = ExtResource("1_75i2t")
|
||||||
|
type = 1
|
||||||
|
target_count = 6
|
||||||
|
current_count = 0
|
||||||
|
description = "Have 6 residential buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_lh8y5")
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_vcbou"]
|
||||||
|
script = ExtResource("1_75i2t")
|
||||||
|
type = 0
|
||||||
|
target_count = 3
|
||||||
|
current_count = 0
|
||||||
|
description = "Have 3 store buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("3_3t66o")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("4_30pdy")
|
||||||
|
id = "17"
|
||||||
|
title = "Sustainable Development"
|
||||||
|
description = "A balanced mix of residential and commercial zones is key to sustainable development. Model the ideal ratio for your city."
|
||||||
|
objectives = Array[ExtResource("1_75i2t")]([SubResource("Resource_qb5w1"), SubResource("Resource_vcbou")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 600
|
||||||
|
}
|
||||||
|
next_mission_id = "18"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's model the perfect balance between homes and businesses! You need 6 residential buildings and 3 store buildings."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Perfect balance! This ratio of homes to businesses creates a sustainable economic model."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to model the perfect ratio! A sustainable city needs the right balance of homes and businesses."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://byd5jxiutxpky"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_3s3sm"]
|
||||||
|
[ext_resource type="Resource" uid="uid://c4qbn3d85prxx" path="res://structures/power-plant.tres" id="2_5l1dw"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_w8jc7"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_d7jw4"]
|
||||||
|
script = ExtResource("1_3s3sm")
|
||||||
|
type = 0
|
||||||
|
target_count = 1
|
||||||
|
current_count = 0
|
||||||
|
description = "Ensure positive electricity production"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_5l1dw")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_w8jc7")
|
||||||
|
id = "18"
|
||||||
|
title = "Sustainable Development"
|
||||||
|
description = "Energy sustainability is crucial for long-term growth. Model your city's power needs to ensure you have enough electricity for everyone."
|
||||||
|
objectives = Array[ExtResource("1_3s3sm")]([SubResource("Resource_d7jw4")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 450
|
||||||
|
}
|
||||||
|
next_mission_id = "19"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's model energy sustainability! Ensure your city has a positive electricity balance as it grows."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Great job balancing energy production! Sustainable power is essential for long-term growth."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to model energy sustainability! Can we meet everyone's power needs while still growing?"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://daug1o7kppqit"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_oa16m"]
|
||||||
|
[ext_resource type="Resource" uid="uid://ccb475jeg7ym5" path="res://structures/grass-trees.tres" id="2_wudjj"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_3tpnw"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_8dxyl"]
|
||||||
|
script = ExtResource("1_oa16m")
|
||||||
|
type = 0
|
||||||
|
target_count = 5
|
||||||
|
current_count = 0
|
||||||
|
description = "Add 5 grass tiles with trees"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_wudjj")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_3tpnw")
|
||||||
|
id = "19"
|
||||||
|
title = "Sustainable Development"
|
||||||
|
description = "Environmental sustainability requires green spaces. Model how adding natural elements improves the sustainability of your city."
|
||||||
|
objectives = Array[ExtResource("1_oa16m")]([SubResource("Resource_8dxyl")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 400
|
||||||
|
}
|
||||||
|
next_mission_id = "20"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's model environmental sustainability! Add green spaces to improve air quality and livability."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Beautiful! These green spaces make your city more environmentally sustainable and livable."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to add some nature to our city model! Green spaces are crucial for environmental sustainability."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://cp7tcpktwlrkt"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_fywct"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dtal0tl2ee336" path="res://structures/store.tres" id="2_a71iq"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_38y5t"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_wq8mf"]
|
||||||
|
script = ExtResource("1_fywct")
|
||||||
|
type = 0
|
||||||
|
target_count = 3
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 3 store buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_a71iq")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_38y5t")
|
||||||
|
id = "20"
|
||||||
|
title = "Urban Planning"
|
||||||
|
description = "Good urban planning requires commercial zones strategically placed throughout the city. Plan and build new commercial districts."
|
||||||
|
objectives = Array[ExtResource("1_fywct")]([SubResource("Resource_wq8mf")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 450
|
||||||
|
}
|
||||||
|
next_mission_id = "21"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's create a commercial district! Build 3 store buildings as part of your urban planning model."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Excellent commercial planning! These stores will serve as hubs for economic activity in your city."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to plan commercial zones! Strategic store placement is key to good urban planning."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://c3q1afcvwi4rk"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_0s0wv"]
|
||||||
|
[ext_resource type="Resource" uid="uid://cntgl86ianngh" path="res://structures/building-small-a.tres" id="2_6f04c"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_7jlc0"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_3fy3g"]
|
||||||
|
script = ExtResource("1_0s0wv")
|
||||||
|
type = 1
|
||||||
|
target_count = 4
|
||||||
|
current_count = 0
|
||||||
|
description = "Add 4 residential buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_6f04c")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_7jlc0")
|
||||||
|
id = "21"
|
||||||
|
title = "Urban Planning"
|
||||||
|
description = "Residential zoning is a critical component of urban planning. Create new residential areas to accommodate your growing population."
|
||||||
|
objectives = Array[ExtResource("1_0s0wv")]([SubResource("Resource_3fy3g")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 500
|
||||||
|
}
|
||||||
|
next_mission_id = "22"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's plan residential zones! Build 4 more residential buildings as part of your urban development model."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Great residential planning! You've created well-designed neighborhoods for your citizens."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to plan residential areas! Good housing placement is essential to urban planning."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://ct1k7n2oopwdu"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_40klq"]
|
||||||
|
[ext_resource type="Resource" uid="uid://mxrnqinnsqnt" path="res://structures/road-straight-lightposts.tres" id="2_u46hd"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_j3mtn"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_fai8r"]
|
||||||
|
script = ExtResource("1_40klq")
|
||||||
|
type = 0
|
||||||
|
target_count = 4
|
||||||
|
current_count = 0
|
||||||
|
description = "Add 4 roads with lamp posts"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_u46hd")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_j3mtn")
|
||||||
|
id = "22"
|
||||||
|
title = "Urban Planning"
|
||||||
|
description = "Well-lit streets are essential for safety and walkability. Plan and implement street lighting in your urban development model."
|
||||||
|
objectives = Array[ExtResource("1_40klq")]([SubResource("Resource_fai8r")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 450
|
||||||
|
}
|
||||||
|
next_mission_id = "23"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's improve street safety! Add 4 roads with lamp posts as part of your urban infrastructure plan."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Excellent lighting plan! Well-lit streets make your city safer and more accessible at night."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to plan street lighting! Good urban planning includes well-lit public spaces."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,59 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=7 format=3 uid="uid://d1fykuxfmh2q1"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_wnlf0"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dqqe3iofnleup" path="res://structures/pavement-fountain.tres" id="2_bmmdj"]
|
||||||
|
[ext_resource type="Resource" uid="uid://ccb475jeg7ym5" path="res://structures/grass-trees.tres" id="3_ycm66"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="4_8gmvv"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_1ht3m"]
|
||||||
|
script = ExtResource("1_wnlf0")
|
||||||
|
type = 0
|
||||||
|
target_count = 1
|
||||||
|
current_count = 0
|
||||||
|
description = "Create 1 fountain"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_bmmdj")
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_5f31m"]
|
||||||
|
script = ExtResource("1_wnlf0")
|
||||||
|
type = 0
|
||||||
|
target_count = 4
|
||||||
|
current_count = 0
|
||||||
|
description = "Add 4 grass tiles with trees surrounding the fountain"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("3_ycm66")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("4_8gmvv")
|
||||||
|
id = "23"
|
||||||
|
title = "Urban Planning"
|
||||||
|
description = "Public spaces like parks and fountains improve quality of life. Plan and create a beautiful public square in your city."
|
||||||
|
objectives = Array[ExtResource("1_wnlf0")]([SubResource("Resource_1ht3m"), SubResource("Resource_5f31m")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 600
|
||||||
|
}
|
||||||
|
next_mission_id = "24"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's create a public square! Build a fountain surrounded by 4 grass tiles with trees for your citizens to enjoy."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Beautiful public space! This fountain plaza will be a favorite gathering spot for your citizens."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to plan public spaces! Good urban design includes beautiful areas for people to gather."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,47 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=4 format=3 uid="uid://detwnqsq87r30"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_cjqfg"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="2_pv8r1"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_e2jx7"]
|
||||||
|
script = ExtResource("1_cjqfg")
|
||||||
|
type = 3
|
||||||
|
target_count = 150
|
||||||
|
current_count = 0
|
||||||
|
description = "Increase city population to 150"
|
||||||
|
completed = false
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("2_pv8r1")
|
||||||
|
id = "24"
|
||||||
|
title = "Economic Forecasting"
|
||||||
|
description = "Economic models predict substantial growth for your city. Use population data to forecast economic trends and prepare for the future."
|
||||||
|
objectives = Array[ExtResource("1_cjqfg")]([SubResource("Resource_e2jx7")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 700
|
||||||
|
}
|
||||||
|
next_mission_id = "25"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's create economic growth forecasts! Increase your population to 150 citizens to model future economic needs."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Congratulations on reaching 150 citizens! Your economic growth model is showing positive trends."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to forecast economic growth! Population trends are key indicators for economic planning."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,59 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=7 format=3 uid="uid://bj7tjuknfaeyg"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_t87pd"]
|
||||||
|
[ext_resource type="Resource" uid="uid://cntgl86ianngh" path="res://structures/building-small-a.tres" id="2_ys3mw"]
|
||||||
|
[ext_resource type="Resource" uid="uid://bh65eqgid4kxy" path="res://structures/building-small-c.tres" id="3_jl18p"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="4_2h1ol"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_mht7j"]
|
||||||
|
script = ExtResource("1_t87pd")
|
||||||
|
type = 1
|
||||||
|
target_count = 3
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 3 small residential buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_ys3mw")
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_vvuiq"]
|
||||||
|
script = ExtResource("1_t87pd")
|
||||||
|
type = 1
|
||||||
|
target_count = 2
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 2 large residential buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("3_jl18p")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("4_2h1ol")
|
||||||
|
id = "25"
|
||||||
|
title = "Economic Forecasting"
|
||||||
|
description = "Housing diversity is important for economic resilience. Create a mix of small and large residential buildings to model housing market forecasts."
|
||||||
|
objectives = Array[ExtResource("1_t87pd")]([SubResource("Resource_mht7j"), SubResource("Resource_vvuiq")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 800
|
||||||
|
}
|
||||||
|
next_mission_id = "26"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's model housing market forecasts! Build a mix of small and large residential buildings to create a diverse housing market."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Excellent housing diversity! This mix of building types creates a more resilient housing market."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to forecast housing needs! Different types of residences serve different economic segments."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://ctyrlnq5cxuiu"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_r0j2r"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dtal0tl2ee336" path="res://structures/store.tres" id="2_oqy42"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_r78ev"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_c21kt"]
|
||||||
|
script = ExtResource("1_r0j2r")
|
||||||
|
type = 0
|
||||||
|
target_count = 5
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 5 store buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_oqy42")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_r78ev")
|
||||||
|
id = "26"
|
||||||
|
title = "Economic Forecasting"
|
||||||
|
description = "Commercial growth drives economic development. Create a robust commercial sector to generate positive economic forecasts."
|
||||||
|
objectives = Array[ExtResource("1_r0j2r")]([SubResource("Resource_c21kt")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 750
|
||||||
|
}
|
||||||
|
next_mission_id = "27"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's boost economic forecasts! Build 5 store buildings to increase commercial activity in your economic model."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Fantastic commercial expansion! These stores will drive economic growth in your forecasting model."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to forecast commercial growth! A strong business sector is key to economic development."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,47 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=4 format=3 uid="uid://ct45gjmw5b7pa"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_6j12t"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="2_t4o2b"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_f1uf2"]
|
||||||
|
script = ExtResource("1_6j12t")
|
||||||
|
type = 2
|
||||||
|
target_count = 1000
|
||||||
|
current_count = 0
|
||||||
|
description = "Maintain a minimum of 1000 money"
|
||||||
|
completed = false
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("2_t4o2b")
|
||||||
|
id = "27"
|
||||||
|
title = "Economic Forecasting"
|
||||||
|
description = "Financial reserves are critical for economic stability. Use your forecasting model to ensure your city maintains a healthy treasury."
|
||||||
|
objectives = Array[ExtResource("1_6j12t")]([SubResource("Resource_f1uf2")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 500
|
||||||
|
}
|
||||||
|
next_mission_id = "28"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's forecast financial stability! Maintain a minimum treasury of 1000 money to ensure your city's economic health."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Well done maintaining a healthy treasury! Your financial forecasting model shows strong fiscal health."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to focus on fiscal forecasting! A strong treasury indicates good economic management."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://bwrkqv42wk8f"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_1k37f"]
|
||||||
|
[ext_resource type="Resource" uid="uid://cntgl86ianngh" path="res://structures/building-small-a.tres" id="2_qlnvj"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_4udbq"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_0fxto"]
|
||||||
|
script = ExtResource("1_1k37f")
|
||||||
|
type = 1
|
||||||
|
target_count = 5
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 5 residential buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_qlnvj")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_4udbq")
|
||||||
|
id = "28"
|
||||||
|
title = "Resource Allocation"
|
||||||
|
description = "Efficient resource allocation starts with housing. Create a residential expansion plan that maximizes land use efficiency."
|
||||||
|
objectives = Array[ExtResource("1_1k37f")]([SubResource("Resource_0fxto")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 600
|
||||||
|
}
|
||||||
|
next_mission_id = "29"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's practice residential resource allocation! Build 5 residential buildings while optimizing land use patterns."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Great residential planning! You've allocated resources efficiently for your housing needs."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to allocate land resources! Efficient housing placement is key to city planning."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://d0nblitd4ixir"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_vdhxy"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dtal0tl2ee336" path="res://structures/store.tres" id="2_hh0xb"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_k5ivn"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_21csl"]
|
||||||
|
script = ExtResource("1_vdhxy")
|
||||||
|
type = 0
|
||||||
|
target_count = 4
|
||||||
|
current_count = 0
|
||||||
|
description = "Build 4 store buildings"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_hh0xb")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_k5ivn")
|
||||||
|
id = "29"
|
||||||
|
title = "Resource Allocation"
|
||||||
|
description = "Commercial resource allocation requires strategic planning. Develop a commercial sector that balances land use with economic benefits."
|
||||||
|
objectives = Array[ExtResource("1_vdhxy")]([SubResource("Resource_21csl")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 650
|
||||||
|
}
|
||||||
|
next_mission_id = "30"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's practice commercial resource allocation! Build 4 store buildings in locations that maximize their effectiveness."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Excellent commercial planning! You've allocated business resources optimally in your city."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to allocate commercial resources! Strategic store placement maximizes economic benefits."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://cxh8dgf54oimx"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_c76o5"]
|
||||||
|
[ext_resource type="Resource" uid="uid://dv14kkhb6umkv" path="res://structures/road-straight.tres" id="2_4rkoa"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_iqaae"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_r01e3"]
|
||||||
|
script = ExtResource("1_c76o5")
|
||||||
|
type = 0
|
||||||
|
target_count = 8
|
||||||
|
current_count = 0
|
||||||
|
description = "Add 8 total road segments"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_4rkoa")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_iqaae")
|
||||||
|
id = "30"
|
||||||
|
title = "Resource Allocation"
|
||||||
|
description = "Transportation infrastructure requires careful resource allocation. Develop an efficient road network that connects all parts of your city."
|
||||||
|
objectives = Array[ExtResource("1_c76o5")]([SubResource("Resource_r01e3")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 700
|
||||||
|
}
|
||||||
|
next_mission_id = "31"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's optimize transportation resource allocation! Build 8 road segments to create an efficient transit network."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Great transportation planning! You've allocated road resources efficiently for optimal city connectivity."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to allocate transportation resources! Efficient road networks require careful planning."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
[gd_resource type="Resource" script_class="MissionData" load_steps=5 format=3 uid="uid://cpfr2xnjtpcog"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" uid="uid://be2nkvjhpebhi" path="res://scripts/mission/mission_objective.gd" id="1_4b0uw"]
|
||||||
|
[ext_resource type="Resource" uid="uid://ccb475jeg7ym5" path="res://structures/grass-trees.tres" id="2_y8alv"]
|
||||||
|
[ext_resource type="Script" uid="uid://cjaik5ku37xqx" path="res://scripts/mission/mission_data.gd" id="3_p34yh"]
|
||||||
|
|
||||||
|
[sub_resource type="Resource" id="Resource_grdmr"]
|
||||||
|
script = ExtResource("1_4b0uw")
|
||||||
|
type = 0
|
||||||
|
target_count = 6
|
||||||
|
current_count = 0
|
||||||
|
description = "Place 6 grass tiles with trees"
|
||||||
|
completed = false
|
||||||
|
structure = ExtResource("2_y8alv")
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
script = ExtResource("3_p34yh")
|
||||||
|
id = "31"
|
||||||
|
title = "Resource Allocation"
|
||||||
|
description = "Green space allocation improves quality of life. Create a strategic plan for natural areas throughout your city."
|
||||||
|
objectives = Array[ExtResource("1_4b0uw")]([SubResource("Resource_grdmr")])
|
||||||
|
rewards = {
|
||||||
|
"cash": 600
|
||||||
|
}
|
||||||
|
next_mission_id = "32"
|
||||||
|
graph_path = ""
|
||||||
|
full_screen_path = ""
|
||||||
|
intro_text = "Let's allocate resources for green spaces! Add 6 grass tiles with trees to create natural areas in your city."
|
||||||
|
question_text = ""
|
||||||
|
correct_answer = ""
|
||||||
|
feedback_text = ""
|
||||||
|
incorrect_feedback = ""
|
||||||
|
company_data = ""
|
||||||
|
power_math_content = ""
|
||||||
|
num_of_user_inputs = 1
|
||||||
|
input_labels = Array[String]([])
|
||||||
|
companion_dialog = {
|
||||||
|
"mission_completed": {
|
||||||
|
"animation": "happy",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Beautiful green space allocation! These natural areas will improve quality of life in your city."]
|
||||||
|
},
|
||||||
|
"mission_started": {
|
||||||
|
"animation": "excited",
|
||||||
|
"duration": 6000,
|
||||||
|
"text": ["Time to allocate resources for nature! Green spaces are an important investment in city well-being."]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
unlocked_items = Array[String]([])
|
||||||
Loading…
Reference in New Issue