Fate/Fudge π²Dice Roller in Nushell
def rollf [?] {
let dF1 = random integer (-1)..1
let dF2 = random integer (-1)..1
let dF3 = random integer (-1)..1
let dF4 = random integer (-1)..1
print "You rolled " ($dF1 + $dF2 + $dF3 + $dF4) " on 4dF (" $dF1 ", " $dF2 ", " $dF3 ", " $dF4 ")" --no-newline
}
> rollf
> You rolled -1 on 4dF (-1, -1, 1, 0)
Sometimes @alsorew does silly things for no reason.
Fate/Fudge π²Dice Roller in Powershell
function Fate-Dice-Roller {
$rollFateDie1 = -1, 0, 1 | Get-Random
$rollFateDie2 = -1, 0, 1 | Get-Random
$rollFateDie3 = -1, 0, 1 | Get-Random
$rollFateDie4 = -1, 0, 1 | Get-Random
$rollFateDice = $rollFateDie1 + $rollFateDie2 + $rollFateDie3 + $rollFateDie4
Write-Output "You rolled $rollFateDice on 4dF ($rollFateDie1, $rollFateDie2, $rollFateDie3, $rollFateDie4)"
}
Set-Alias -Name rollf -Value Fate-Dice-Roller
> rollf
> You rolled -1 on 4dF (0, 0, 0, -1)
There is a FUDGE BUNDLE OF HOLDING folks!!! This is not a drill! Loads of stuff they just now are putting up in PDF plus some great third party indie games! Currently under 30 bucks.
I talk to Russell Collins about some of the interesting mechanics coming up in Tears of a Machine 2nd ed. Especially a clever new way to use #FudgeDice. https://www.buzzsprout.com/167566/3340441
Content Warning: Mental HealthDiscord Invite: Discord.plusorminus.xyzSnagged an interview with Russell Collins, creator of the Tears of a Machine (Affiliate) RPG. Granted Tears of a Machine isnβt a Fudge RPG, but the second edition will feature Fu...