1 line
2.6 KiB
HTML
1 line
2.6 KiB
HTML
<!doctype html><html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Botanical Entries</title> <link rel="stylesheet" href="book-page.css" /> </head> <div class="container"> <!-- SILVER STRELITZIA Entry --> <div class="plant-entry" id="silver-strelitzia"> <span class="marker">W</span> <h2 class="plant-name">SILVER STRELITZIA</h2> <p class="subtitle"> Its silvery blossoms are easily mistaken for jewels. </p> <div class="effect-section"> <strong class="effect-title">T EFFECT</strong> <ol class="effect-list"> <li>You are Resistant to bolt and light damage.</li> <li> You and your allies present on the scene are Resistant to bolt and light damage. </li> </ol> </div> </div> <!-- STAR PEONY Entry --> <div class="plant-entry" id="star-peony"> <span class="marker">W</span> <h2 class="plant-name">STAR PEONY</h2> <p class="subtitle">It silently gazes into celestial depths.</p> <div class="effect-section"> <strong class="effect-title">T EFFECT</strong> <ol class="effect-list"> <li> At the end of your turn, you may choose an enemy you can see. If you do, that enemy suffers dazed. </li> <li> At the end of your turn, every enemy you can see suffers dazed. </li> <li> At the end of your turn, you deal an amount of light damage equal to (15 + your Skill Level in Chloromancy) to each enemy you can see who is suffering from dazed. </li> </ol> </div> </div> <!-- STRIPED ORCHID Entry --> <div class="plant-entry" id="striped-orchid"> <span class="marker">W</span> <h2 class="plant-name">STRIPED ORCHID</h2> <p class="subtitle">Each segment of this plant is covered in toxins.</p> <div class="effect-section"> <strong class="effect-title">T EFFECT</strong> <ol class="effect-list"> <li> At the end of your turn, you may choose an enemy you can see. If you do, that enemy suffers weak. </li> <li> At the end of your turn, every enemy you can see suffers weak. </li> <li> At the end of your turn, you deal an amount of poison damage equal to (15 + your Skill Level in Chloromancy) to each enemy you can see who is suffering from weak. </li> </ol> </div> </div> </div></html> |