blob: 0a01509582239a5e08f4314578a10051ef210c1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[
{
"id": [ "TALK_FRIEND", "TALK_GIVE_ITEM", "TALK_USE_ITEM", "TALK_RADIO" ],
"note": "Check if the player is a vampire, not busy, and in person with a follower.",
"type": "talk_topic",
"responses": [
{
"text": "*Consider making your follower into a vampire*.",
"condition": { "and": [
{ "u_has_trait": "THRESH_VAMP" },
{ "not": { "npc_has_trait": "THRESH_VAMP" } },
{ "not": "is_by_radio" },
{ "not": "u_driving" },
{ "not": "npc_driving" }
] },
"topic": "TALK_EMBRACE_MENU_ALLY"
}
]
}
]
|