Update character creation tool XML: add new personality and appearance attributes, and enhance layout with additional fields and inputs
This commit is contained in:
parent
b5cffeb61e
commit
76656512c0
@ -37,6 +37,13 @@
|
||||
<Int Name="height"/>
|
||||
<Int Name="weight"/>
|
||||
<Int Name="age"/>
|
||||
<String Name="background"/>
|
||||
<String Name="motivation"/>
|
||||
<String Name="importance"/>
|
||||
<String Name="fears"/>
|
||||
<String Name="passions"/>
|
||||
<String Name="weaknesses"/>
|
||||
<String Name="optics"/>
|
||||
</Variables>
|
||||
</Group>
|
||||
<Group Name="race">
|
||||
|
||||
@ -297,6 +297,7 @@
|
||||
<GridContainer>
|
||||
<Cols>3</Cols>
|
||||
<Content>
|
||||
<!-- Height/Größe -->
|
||||
<Label>
|
||||
<Text>"Größe"</Text>
|
||||
</Label>
|
||||
@ -328,6 +329,125 @@
|
||||
</ValueButton>
|
||||
</Buttons>
|
||||
</ValueButtons>
|
||||
|
||||
<!-- Weight/Gewicht -->
|
||||
<Label>
|
||||
<Text>"Gewicht"</Text>
|
||||
</Label>
|
||||
<ValueAndBorders>
|
||||
<Value>[data.character.definition.weight]</Value>
|
||||
<LowerBorder>[data.character.race.minweight]</LowerBorder>
|
||||
<UpperBorder>[data.character.race.maxweight]</UpperBorder>
|
||||
</ValueAndBorders>
|
||||
<ValueButtons>
|
||||
<Output>[data.character.definition.weight]</Output>
|
||||
<Buttons>
|
||||
<ValueButton>
|
||||
<Value>-10</Value>
|
||||
</ValueButton>
|
||||
<ValueButton>
|
||||
<Value>-5</Value>
|
||||
</ValueButton>
|
||||
<ValueButton>
|
||||
<Value>-1</Value>
|
||||
</ValueButton>
|
||||
<ValueButton>
|
||||
<Value>+1</Value>
|
||||
</ValueButton>
|
||||
<ValueButton>
|
||||
<Value>+5</Value>
|
||||
</ValueButton>
|
||||
<ValueButton>
|
||||
<Value>+10</Value>
|
||||
</ValueButton>
|
||||
</Buttons>
|
||||
</ValueButtons>
|
||||
|
||||
<!-- Age/Alter -->
|
||||
<Label>
|
||||
<Text>"Alter"</Text>
|
||||
</Label>
|
||||
<ValueAndBorders>
|
||||
<Value>[data.character.definition.age]</Value>
|
||||
<LowerBorder>[data.character.race.minage]</LowerBorder>
|
||||
<UpperBorder>[data.character.race.maxage]</UpperBorder>
|
||||
</ValueAndBorders>
|
||||
<ValueButtons>
|
||||
<Output>[data.character.definition.age]</Output>
|
||||
<Buttons>
|
||||
<ValueButton>
|
||||
<Value>-10</Value>
|
||||
</ValueButton>
|
||||
<ValueButton>
|
||||
<Value>-5</Value>
|
||||
</ValueButton>
|
||||
<ValueButton>
|
||||
<Value>-1</Value>
|
||||
</ValueButton>
|
||||
<ValueButton>
|
||||
<Value>+1</Value>
|
||||
</ValueButton>
|
||||
<ValueButton>
|
||||
<Value>+5</Value>
|
||||
</ValueButton>
|
||||
<ValueButton>
|
||||
<Value>+10</Value>
|
||||
</ValueButton>
|
||||
</Buttons>
|
||||
</ValueButtons>
|
||||
|
||||
<Label>
|
||||
<Text>Beschreibung Aussehen</Text>
|
||||
</Label>
|
||||
<TextInput>
|
||||
<Output>[data.character.definition.optics]</Output>
|
||||
</TextInput>
|
||||
|
||||
</Content>
|
||||
</GridContainer>
|
||||
<Header>
|
||||
<Level>2</Level>
|
||||
<Text>"Persönlichkeit"</Text>
|
||||
</Header>
|
||||
<GridContainer>
|
||||
<Cols>2</Cols>
|
||||
<Content>
|
||||
<Label>
|
||||
<Text>"Lebensgeschichte - Was passierte bis jetzt?"</Text>
|
||||
</Label>
|
||||
<TextInput>
|
||||
<Output>[data.character.definition.background]</Output>
|
||||
</TextInput>
|
||||
<Label>
|
||||
<Text>"Motivation - Was möchtest du erreichen?</Text>
|
||||
</Label>
|
||||
<TextInput>
|
||||
<Output>[data.character.definition.motivation]</Output>
|
||||
</TextInput>
|
||||
<Label>
|
||||
<Text>Was sind deine Passionen/Begabungen?</Text>
|
||||
</Label>
|
||||
<TextInput>
|
||||
<Output>[data.character.definition.passions]</Output>
|
||||
</TextInput>
|
||||
<Label>
|
||||
<Text>Was ist dir wichtig/Was sind deine Überzeugungen?</Text>
|
||||
</Label>
|
||||
<TextInput>
|
||||
<Output>[data.character.definition.importance]</Output>
|
||||
</TextInput>
|
||||
<Label>
|
||||
<Text>Was sind deine größten Ängste?</Text>
|
||||
</Label>
|
||||
<TextInput>
|
||||
<Output>[data.character.definition.fears]</Output>
|
||||
</TextInput>
|
||||
<Label>
|
||||
<Text>Was sind deine Schwächen/schlechten Angewohnheiten?</Text>
|
||||
</Label>
|
||||
<TextInput>
|
||||
<Output>[data.character.definition.weaknesses]</Output>
|
||||
</TextInput>
|
||||
</Content>
|
||||
</GridContainer>
|
||||
</Content>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user