Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

simple knife spear quest options #77335

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data/json/npcs/tacoma_ranch/NPC_ranch_foreman.json
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@
"followup": "MISSION_RANCH_FOREMAN_17",
"dialogue": {
"describe": "We need help…",
"offer": "Just flipping through the book, I can tell that one ingredient in most of the alcoholic drinks that we don't have a large supply of is sugar. What alcohol we have been able to loot isn't going to last us long, so starting our first large batch is a priority. Could you bring in 80 units of sugar? That should last us until we can start producing our own supply.",
"offer": "Just flipping through the book, I can tell that one ingredient in most of the alcoholic drinks that we don't have a large supply of is sugar. What alcohol we have been able to loot isn't going to last us long, so starting our first large batch is a priority. Could you bring in 80 lbs of sugar? That should last us until we can start producing our own supply.",
Night-Pryanik marked this conversation as resolved.
Show resolved Hide resolved
"accepted": "I'm counting on you.",
"rejected": "Come back when you get a chance. We need skilled survivors.",
"advice": "You might get lucky finding it, but you could always boil it out of fruit if you are familiar with the process. Or go into the cities and look in restaurants and bakeries.",
Expand Down
20 changes: 17 additions & 3 deletions data/json/npcs/tacoma_ranch/NPC_ranch_scavenger.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,16 @@
"id": "MISSION_RANCH_SCAVENGER_1",
"type": "mission_definition",
"name": { "str": "Make 12 Simple Knife Spears" },
"goal": "MGOAL_FIND_ITEM",
"goal": "MGOAL_CONDITION",
"goal_condition": {
"u_has_items_sum": [
{ "item": "spear_knife", "amount": 12 },
{ "item": "spear_knife_superior", "amount": 12 },
{ "item": "spear_knife_proper", "amount": 12 }
]
},
"difficulty": 5,
"value": 50000,
"item": "spear_knife",
"count": 12,
"origins": [ "ORIGIN_SECONDARY" ],
"followup": "MISSION_RANCH_SCAVENGER_2",
"dialogue": {
Expand Down Expand Up @@ -128,6 +133,15 @@
],
"place_item": [ { "item": "30gal_drum", "x": 8, "y": 19, "faction": "tacoma_commune" } ]
}
],
"effect": [
{
"u_consume_item_sum": [
{ "item": "spear_knife", "amount": 12 },
{ "item": "spear_knife_superior", "amount": 12 },
{ "item": "spear_knife_proper", "amount": 12 }
]
}
]
}
},
Expand Down
Loading