A collection of utilities for the Daggerheart SRD katari.fyi
daggerheart ttrpg gleam api

web: Split on newline in ability descriptions

Signed-off-by: Naomi Roberts <mia@naomieow.xyz>

lesbian.skin a0ecebc0 64cf6ce6

verified
+9 -4
+1 -1
srd/abilities/book-of-homet.json
··· 4 4 "domain": "codex", 5 5 "level": 7, 6 6 "recall_cost": 0, 7 - "description": "**Pass Through:** Make a Spellcast Roll (13). Once per rest on a success, you and all creatures touching you can pass through a wall or door within Close range. The effect ends once everyone is on the other side.**Plane Gate:** Make a Spellcast Roll (14). Once per long rest on a success, open a gateway to a location in another dimension or plane of existence you’ve been to before. This gateway lasts until your next rest." 7 + "description": "**Pass Through:** Make a Spellcast Roll (13). Once per rest on a success, you and all creatures touching you can pass through a wall or door within Close range. The effect ends once everyone is on the other side.\n**Plane Gate:** Make a Spellcast Roll (14). Once per long rest on a success, open a gateway to a location in another dimension or plane of existence you’ve been to before. This gateway lasts until your next rest." 8 8 }
+1 -1
srd/abilities/book-of-tyfar.json
··· 4 4 "domain": "codex", 5 5 "level": 1, 6 6 "recall_cost": 2, 7 - "description": "**Wild Flame:** Make a Spellcast Roll against up to three adversaries within Melee range. Targets you succeed against take 2d6 magic damage and must mark a Stress as flames erupt from your hand.\n**Magic Hand:** You conjure a magical hand with the same size and strength as your own within Far range.**Mysterious Mist:** Make a Spellcast Roll (13) to cast a temporary thick fog that gathers in a stationary area within Very Close range. The fog heavily obscures this area and everything in it." 7 + "description": "**Wild Flame:** Make a Spellcast Roll against up to three adversaries within Melee range. Targets you succeed against take 2d6 magic damage and must mark a Stress as flames erupt from your hand.\n**Magic Hand:** You conjure a magical hand with the same size and strength as your own within Far range.\n**Mysterious Mist:** Make a Spellcast Roll (13) to cast a temporary thick fog that gathers in a stationary area within Very Close range. The fog heavily obscures this area and everything in it." 8 8 }
+7 -2
web/src/web/pages/abilities.gleam
··· 33 33 34 34 case ability { 35 35 Error(_) -> not_found.not_found(data) 36 - Ok(ability) -> 36 + Ok(ability) -> { 37 + let description = 38 + ability.description 39 + |> string.split(on: "\n") 40 + |> list.map(fn(feat) { html.p([], [html.text(feat)]) }) 37 41 html.div([], [ 38 42 html.h1([], [html.text(ability.name)]), 39 43 html.h2([], [html.text("Level: " <> int.to_string(ability.level))]), ··· 47 51 html.text(ability.domain), 48 52 ]), 49 53 ]), 50 - html.p([], [html.text(ability.description)]), 54 + ..description 51 55 ]) 56 + } 52 57 } 53 58 }