Fillable Character Sheet

By TheSapient, in Shadow of the Beanstalk

Here is a fillable pdf character sheet with some handy features.

Clicking on the skill tracks changes the ranks from white to green to yellow, so you can display your dice pool for each skill.

You can add or remove a character image on page 3. Look for the "Click Here To Clear Image" text below The Natural image. Add your own image by clicking on "CLICK HERE TO ADD CHARACTER IMAGE".

Please let me know if you find any errors or can suggest any improvements.

This is built on Drainsmith's character sheet .

Edited by TheSapient

This is great! Thank you!

A new version of this is up. The only change is that one of the Knowledge skill check marks is now black instead of yellow.

Also, I've had several requests for info on how to implement the color changing skills. You will need software that allows you to build forms and use javascript, such as Acrobat Pro. The each skill rectangle is a button that executes the following code.

var Button = this.getField(event.targetName);
if (color.equal(Button.fillColor, color.green)==true) Button.fillColor = color.yellow;
else if (color.equal(Button.fillColor, color.yellow)==true) Button.fillColor = color.white;
else Button.fillColor = color.green;

I'm sure someone who actually knows javascripting can make something more elegant. Don't judge my code hackery!

Great job, thank you for sharing!

For me, the font for both Brawn and Intellect highlight bold like all of the characteristics when they are selected to change, but unlike all of the other characteristics, Brawn and Intellect do not un-bold.

As an aside - why did you secure the file? I like to remove superfluous images before I print, or tweak fonts depending on character.

Edited by vargr
On 3/8/2019 at 7:08 PM, vargr said:

Great job, thank you for sharing!

For me, the font for both Brawn and Intellect highlight bold like all of the characteristics when they are selected to change, but unlike all of the other characteristics, Brawn and Intellect do not un-bold.

As an aside - why did you secure the file? I like to remove superfluous images before I print, or tweak fonts depending on character.

What software and sheet version are you using?

On 3/11/2019 at 5:51 PM, TheSapient said:

What software and sheet version are you using?

I have 1.0.1, but I notice that the version is now 1.1.1. Looks like the odd font issue has been fixed.

I'm using Adobe Acrobat Pro DC.

First off can I say thanks for this. I'm utterly useless at page setting and layout in general so people like you, who do stuff like this, are just awesome in my book.

Thanks :)

Having said that ... Is it possible to get a second Talent Page? A full page of little talent boxes after the initial one. My players are getting close to wanting multiple Tier 5 talents.

Cheers,

:)

4 hours ago, VictorTugglebend said:

Having said that ... Is it possible to get a second Talent Page? A full page of little talent boxes after the initial one. My players are getting close to wanting multiple Tier 5 talents.

Sorry, that's beyond my skills. I just took the official Terrinoth sheet and added form fields. I'm not much when it comes to graphics.