4K poster
https://i.ibb.co/fMzvpCd/bg3-daylight.jpg--
DiurnalisRare Cloak
Shining Soul The wearer gains Daylight.
Daylight deals 1 Radiant damage.
Daylight's duration is halved.
Stellaris Uncommon Quarterstaff
Solar Flayer Daylight's damage is dealt every turn.
Daylight's duration is halved.
Quasaris Very Rare Belt
Photonic Accretion Daylight's damage over time doubles every turn.
Daylight's duration is halved.
--
Explainer Damage Over Time that rewards patience and teaches players compound interests.
Sorcerer's Extended Spell is godlike.
const daylight = async (items = 3, extended = false) => {
let sum = 0;
let max = 0;
if (items === 1) { max = 1; }
if (items === 2 || items === 3) {
let turns = 100 * (extended ? 2 : 1);
max = Math.ceil(turns / 2 ** items);
}
for (let i = 0; i < max; ++i) {
sum += 1 * (items === 3 ? 2 ** i : 1);
if (items < 3) { console.log(`1`); }
if (items === 3) { console.log(`1 x 2 ^ ${i} = ${2**i}`); }
}
console.log(sum);
}
await daylight(1, false)
1
await daylight(1, true)
1
await daylight(2, false)
25
await daylight(2, true)
50
await daylight(3, false)
1 x 2 ^ 0 = 1
1 x 2 ^ 1 = 2
1 x 2 ^ 2 = 4
1 x 2 ^ 3 = 8
1 x 2 ^ 4 = 16
1 x 2 ^ 5 = 32
1 x 2 ^ 6 = 64
1 x 2 ^ 7 = 128
1 x 2 ^ 8 = 256
1 x 2 ^ 9 = 512
1 x 2 ^ 10 = 1 024
1 x 2 ^ 11 = 2 048
1 x 2 ^ 12 = 4 096
8 191
await daylight(3, true)
1 x 2 ^ 0 = 1
1 x 2 ^ 1 = 2
1 x 2 ^ 2 = 4
1 x 2 ^ 3 = 8
1 x 2 ^ 4 = 16
1 x 2 ^ 5 = 32
1 x 2 ^ 6 = 64
1 x 2 ^ 7 = 128
1 x 2 ^ 8 = 256
1 x 2 ^ 9 = 512
1 x 2 ^ 10 = 1 024
1 x 2 ^ 11 = 2 048
1 x 2 ^ 12 = 4 096
1 x 2 ^ 13 = 8 192
1 x 2 ^ 14 = 16 384
1 x 2 ^ 15 = 32 768
1 x 2 ^ 16 = 65 536
1 x 2 ^ 17 = 131 072
1 x 2 ^ 18 = 262 144
1 x 2 ^ 19 = 524 288
1 x 2 ^ 20 = 1 048 576
1 x 2 ^ 21 = 2 097 152
1 x 2 ^ 22 = 4 194 304
1 x 2 ^ 23 = 8 388 608
1 x 2 ^ 24 = 16 777 216
33 554 431
--
InspirationsDaylight + Extended SpellSolar Sailer from TRON Legacy (Daft Punk)--
Other proposals
https://baldur-proposals.web.app/