Archpawn

joined 2 years ago
[–] Archpawn 1 points 1 week ago

How long since you've had six hours of sleep with two hours of light activity like keeping watch or reading?

[–] Archpawn 1 points 3 weeks ago

Imagine living in an RPG verse where all the players have superpowers, but all the NPCs can get them to do whatever they want by calling it a "quest". And also can pay with premium currency. Seriously, how is the kid asking me to feed ducks paying in primogems?

[–] Archpawn 3 points 3 weeks ago

1d8. There's a 12.5% chance that literally any damage will kill you.

I feel like those people would die off faster, so really you should be rolling HP with advantage.

[–] Archpawn 5 points 1 month ago

And it's good to keep a little, just in case you have the opportunity for Clone and don't want to cut out more.

I wouldn't expect you'd just keep a rotting head though. Does it still count as a creature for the purposes of Gentle Repose? Do they just not have a good way to get rid of the flesh and they want to keep the skull?

[–] Archpawn 11 points 1 month ago

If we can give him a -3 penalty, then we'll get more investigators than we lose.

[–] Archpawn 6 points 1 month ago (1 children)
[–] Archpawn 1 points 1 month ago

If they keep taking the slow sheep, they'll evolve to be faster and make the whole thing less convenient. Dragons live a long time, so they know from experience that in the long run it will be easier to only eat the fastest sheep.

[–] Archpawn 5 points 1 month ago

Being the bigger person makes it easier to eat the smaller person.

[–] Archpawn 4 points 1 month ago

So she's saying if I reach level 20 I can be her slave? Count me in.

[–] Archpawn 1 points 1 month ago

The image looks really small for me, and I had to follow the link to the actual comic. Is anyone else having the same problem?

[–] Archpawn 15 points 1 month ago (6 children)

As a DM, I don't think you should be using Power Word Kill at all. "I've set up this awesome encounter that you're all going to love. Except you. You'll have to sit this one out."

1
submitted 2 years ago by Archpawn to c/css
 

I asked for help making the expanded images fully expand here. They got something workable, but it gets rid of the sidebar. I'm hoping for something where the image just covers the sidebar.

I found the class, but I don't know how to write the CSS to make it go all the way across the screen regardless of the parent. So it would start with .img-expanded:not(.banner):not(.avatar-overlay) { } but I need to know what goes in the brackets.

20
submitted 2 years ago* (last edited 2 years ago) by Archpawn to c/nostupidquestions
 

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 ›