# Dynamic Character Sheet Generation ## Fields * General string * Short (line) * Long (textbox) * Number * Simple * Modifier * Dice (amount + type) * Temporary modifier? * Derived number (readonly) * Value from list * Tickbox * Single * Sequential * *Entry (combination of fields)* ## Structure * Heading * Label * Page * Conditional box (only visible if true) * List of entries ## TOML objects ### Text ``` [[Text]] name = "string" multiline = true | false label = "string" hint = "string" tooltip = "string" length = number ``` ### Number ``` [[Number]] name = "string" isModifier = true isDice = true hasTempModifier = true label = "string" hint = "string" tooltip = "string" min = number max = number step = number readonly = true script = "string" ``` ### List ``` [[List]] name = "string" elements = ["string", ...] hasNone = true | false ``` ### Tickbox ``` [[Tickbox]] name = "string" sequence = true | false length = number ``` ### Entry ``` [[Text]] name = "name" multiline = false label = "Name" tooltip = "Your character's name" length = 32 [[Number]] name = "age" label = "Age" ``` ``` [Character] name = "Dysthymian" age = 145 ``` ## References   
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up