Class ChatterLinesData
- Namespace
- TrinketTinker.Models
- Assembly
- TrinketTinker.dll
public sealed class ChatterLinesData
- Inheritance
-
ChatterLinesData
- Inherited Members
Properties
Condition
Game state query condition
public string? Condition { get; set; }
Property Value
Lines
Ordered dialogue lines, one will be picked at random. Supports translation keys.
public List<string>? Lines { get; set; }
Property Value
Priority
Priority of this chatter line, higher is earlier
public int Priority { get; set; }
Property Value
Responses
Response dialogue lines, used for $q and other cross dialogue key things. Supports translation keys.
public Dictionary<string, string>? Responses { get; set; }