[–] 1 point 1 month ago

Why would you kill the lich? Just cast Stone to Flesh and leave them petrified forever. If you really want to be thorough, you can trap them in a demiplane just before casting Private Sanctum for the 365th time permanently blocking it from interplanar travel.

  • source
  • parent
  • context
  • [–] 6 points 2 months ago (1 child)

    And sometimes the official stats suck. The 2014 Tarrasque was just sad. And if Tabaxis get Cat's Claws, Cat's Talent, Feline Agility, and Darkvision, cats should have those too. Along with a jump height of more than -1 feet.

  • source
  • parent
  • context
  • [–] 1 point 3 months ago

    I was thinking of that as a house rule for Mutants and Masterminds (which has a similar system, but is much more generous with the reroll). I think it's better if you don't feel like you wasted the Hero Point because you rolled low.

    That said, it works best if it's a success/fail type thing. I understand pathfinder has a lot of things with critical success and critical failure. I guess you get it back if you don't score better?

  • source
  • parent
  • context
  • submitted 3 years ago* (last edited 3 years ago) by to c/nostupidquestions@lemmy.world
     

    Right now, the only method I found is to click on the expando, then right click on the image and open it in a new tab. Is there a way to make it so I can just click it once? I can't imagine any possible scenario where I'd want to see a large but not full size image.

    I'm using the browser on my computer if that's relevant.

    Edit: I got it to work using the Stylus addon and:

    .img-expanded:not(.banner, .avatar-overlay) {
        max-height: unset;
        max-width: 100vw;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        outline: auto;
        outline-color: black;
        z-index: 1;
    }
    

    I also made it outline any expandos with:

    /*Note: Links are exactly the same except without bg-transparent, so using not(bg-transparent) instead will outline the links instead of the expandos. Also, they're outlined orange unless you change it, so you could take that off, give them all outlines, and you can tell which they are based on the color.*/
    .thumbnail.rounded.overflow-hidden.d-inline-block.position-relative.p-0.border-0.bg-transparent {
        outline: auto;
    }
    
    view more: next ›