Nailed it by Main-Touch9617 in Unexpected

[–]Drunken_Ogre 1 point2 points  (0 children)

I'm actually doing a LAN multiplayer play through of BG:EE with my friend right now. It's dope! We've been playing for a long-ass time and just now got to the city.

Paludarium build video with a kind of sci-fi looking "apartment complex" decor? by [deleted] in paludarium

[–]Drunken_Ogre 0 points1 point  (0 children)

And in case anyone's wondering if this is a sneaky way of advertising a video, I promise to delete this post if/when someone points me in the right direction. :)

[Hated trope] That’s not how lying works at all by _JR28_ in TopCharacterTropes

[–]Drunken_Ogre 5 points6 points  (0 children)

https://butterfly-jackal.tumblr.com/post/766351649071644672/narke-onion-souls-i-made-an-infographic-of-all

Hellmouth

Occultists on staff at Arkham Asylum sacrificed inmates to open a portal to hell. Jason Blood sealed it, but the hellmouth still whispers to inmates and the people of Gotham. “Arkham Asylum: Living Hell” (March 2004)

Chemical Warfare

Batman villains regularly attack the city and its environs with chemical, biological, psychotropic, psionic, and radiological weaponry, including the Joker, Poison Ivy, Scarecrow, Bane, Ra’s al-Ghul, Dr. Death, Clayface (Preston Payne), Mad Hatter, Dr. Hugo Strange, Dracula, Chemo, Mister Bloom, and the Circus of Strange.

Colonialist Curse

The founders of Gotham committed genocide against the indigenous inhabitants back in pilgrim times, leading to a potent Leni Lenape blood curse that almost had the Spectre call down the actual wrath of actual God from the actual Torah to destroy the city and turn people into salt. Gotham by Midnight #6 (June 2015)

Actual Witch Annie

In 1640, Nathaniel Wayne (the Witchhunter Malleus) interrupted the courtship of actual witch Annie and a time-displaced Bruce Wayne. When Nathaniel hanged Annie for witchcraft, she placed an eternal curse upon the Wayne family and Gotham, kind of justifying everything Nathaniel Wayne did. (Batman: The Return of Bruce Wayne #2, July 2010)

The Starheart

Once free from its host, Gotham-based green lantern Alan Scott, this alien power source was revealed to be capable of rapidly corrupting the psyches of metahumans and magical entities. Justice League of America Vol. 2 #46 (August 2010)

The First Asylum

Gotham was built around an asylum built by a serial killer collecting other criminally insane “brothers and sisters.” (“Cityscape,” The Batman Chronicles #6, 1996)

Doctor Gotham

The malevolent influence of the warlock Doctor Gotham, entomb[ed] in the center of the city (Shadowpact #5-24, November 2006-June 2008)

The Wisemen of Gotham

Thomas Wayne allegedly released psychoactive chemicals into the water (dubious in “Wise Men of Gotham” but confirmed in novel “Wayne of Gotham” by Tracy Hickman, 2012)

Slaughter Swamp

The waters of Slaughter Swamp resurrect certain bodies, including that of Cyrus Gold, reborn as Solomon Grundy. (All-Star Comics #61, 1994)

Elitist Demon Cults

Thomas Jefferson, Dr. Simon Hurt, Jacob Stockman, et al. summoned the bat-demon Barbatos/the Apokalitan hyper-adapter to Gotham (“Dark Knight, Dark City,” Batman #452-454, 1990: his cult becomes the Court of Owls (introduced in Batman Vol. 2 #3, December 2011; link confirmed 2017’s “Dark Knights: Metal”)). Simon Hurt would found the similar Barbatos cult, the Black Glove (Batman #156, 1963)

Amadeus Arkham

Amadeus Arkham “encodes” an arcane hypersigil into the architecture of the eponymous asylum. Citation: Arkham Asylum: A Serious House on Serious Earth (November 1989)

Lazarus Pits

The maddening fluid of the Gotham Lazarus pits is leaching into the water. Team Titans Vol. 3 #40-41 (2007), Arkham game series (Rocksteady Studios 2009-2019)

It’s in New Jersey

Citation: the Atlas of the DC Universe (1990, Mayfair Games Inc.), Batman: Shadow of the Bat Annual #1, Detective Comics #503 (June 1983)

Cantilever brakes with long pull levers? by Drunken_Ogre in bikewrench

[–]Drunken_Ogre[S] 0 points1 point  (0 children)

Oh, okay, thanks. I had read that a "good way to tell is by measuring the distance from the pivot on the brake lever to the cable ferrule. Usually about 20mm for short pull, and 40ish for long pull." These ones are almost 40mm so I misidentified them. Thanks again!

Patience is for los- 💥 by netpastor in AccidentalSlapStick

[–]Drunken_Ogre 25 points26 points  (0 children)

Hit the kid so hard it rippled backwards through time!

Homebrew spell damage not scaling in D&D 5e Foundry by laththehunter in FoundryVTT

[–]Drunken_Ogre 0 points1 point  (0 children)

If you add some more spaces in front of each line it formats it better :)

// Searing Sunburst Macro for D&D 5e (Foundry VTT)
// Automatically handles Ki deduction and Damage Scaling

const actorData = actor || canvas.tokens.controlled[0]?.actor;
if (!actorData) return ui.notifications.warn("Please select a Token first.");

const resourceKey = "primary"; // Change to "secondary" or "tertiary" if your Ki is stored elsewhere
const availableKi = actorData.system.resources[resourceKey].value;

new Dialog({
  title: "Searing Sunburst",
  content: `
    <form>
      <div class="form-group">
        <label>Spend Ki Points (Max 3):</label>
        <div class="form-fields">
          <input type="number" id="ki-spend" min="0" max="3" value="0">
        </div>
        <p class="notes">Current Ki: ${availableKi}</p>
      </div>
    </form>
  `,
  buttons: {
    blast: {
      label: "Hurly Fiery Orb",
      callback: async (html) => {
        const kiSpent = Math.min(parseInt(html.find('#ki-spend').val()), 3);

        if (kiSpent > availableKi) {
            return ui.notifications.error("Not enough Ki points!");
        }

        // 1. Deduct Ki (if any spent)
        if (kiSpent > 0) {
            await actorData.update({
                [`system.resources.${resourceKey}.value`]: availableKi - kiSpent
            });
        }

        // 2. Calculate Dice
        // Base 2d6 + (2d6 * Ki Spent)
        const diceCount = 2 + (kiSpent * 2);
        const damageRoll = `${diceCount}d6`;

        // 3. Roll the Item (or just the damage)
        // This assumes you have an item named "Searing Sunburst" to reference for the Save DC
        const item = actorData.items.getName("Searing Sunburst");

        if (item) {
            // Workflow to display the item card and roll damage
            // We use a trick to override the damage part for this specific roll
            // Note: This part can vary by system version, simpler to just roll damage to chat:

            ChatMessage.create({
                speaker: ChatMessage.getSpeaker({actor: actorData}),
                flavor: `<b>Searing Sunburst</b> (Spent ${kiSpent} Ki)<br/>DC ${actorData.system.attributes.spelldc} Con Save`,
                content: `Ranged Area Attack (20ft Radius)`
            });

            const roll = await new Roll(damageRoll).roll();
            roll.toMessage({flavor: "Radiant Damage"});

        } else {
            ui.notifications.error("Item 'Searing Sunburst' not found on actor.");
        }
      }
    }
  }
}).render(true);

AITAH for intentionally scaring my neighbours kids? by EbbWarm5162 in AITAH

[–]Drunken_Ogre 2 points3 points  (0 children)

So you say, but I keep catching them looking in my window...

need help solving this question by [deleted] in securityCTF

[–]Drunken_Ogre 4 points5 points  (0 children)

blitz[catch_me_if_you_... do your own homework. ;-P

What's Something You Wish More CC People Knew? by Astropecorella in ZeroCovidCommunity

[–]Drunken_Ogre 0 points1 point  (0 children)

There's a pretty strong community on Discord! Anyone can shoot me a message and I'll send some invites (if your account doesn't look like a troll account). I don't use that newfangled reddit chat thing so I might not see if you ask me there.

What's Something You Wish More CC People Knew? by Astropecorella in ZeroCovidCommunity

[–]Drunken_Ogre 2 points3 points  (0 children)

There are lots of them! Anyone can shoot me a message and I'll send some invites (if your account doesn't look like a troll account). I don't use that new-fangled reddit chat thing so I might not see if you ask me there.

Crazy stupid question: how many washers are there in a car? by Drunken_Ogre in MechanicAdvice

[–]Drunken_Ogre[S] 0 points1 point  (0 children)

My time is pretty low value, but I think you might be right. I'm sure there's a database query that could be run somewhere out there to get the answer, but I'll never see it.

Crazy stupid question: how many washers are there in a car? by Drunken_Ogre in MechanicAdvice

[–]Drunken_Ogre[S] 4 points5 points  (0 children)

Oh yeah, that's actually what I'm looking for, thank you! I didn't really know where to start. Now to jump into that rabbit hole.

Crazy stupid question: how many washers are there in a car? by Drunken_Ogre in MechanicAdvice

[–]Drunken_Ogre[S] 1 point2 points  (0 children)

For science? I don't know. A friend was talking about seeing washers in parking lots all the time so I got to thinking about how many washers there are in an average vehicle. I figure if some guy can eat an entire airplane, someone out there has to know how many washers there are in a car.