1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[
{
"id": [ "TALK_FRIEND", "TALK_GIVE_ITEM", "TALK_USE_ITEM", "TALK_RADIO" ],
"//": "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_REAL_VAMP" },
{ "not": { "npc_has_trait": "THRESH_REAL_VAMP" } },
{ "not": { "npc_has_trait": "VAMP_GHOUL" } },
{ "not": { "npc_has_trait": "VAMP_BLOODDOLL" } },
{ "not": "is_by_radio" },
{ "not": "u_driving" },
{ "not": "npc_driving" }
] },
"topic": "TALK_EMBRACE_MENU_ALLY"
}
]
}
]
|