Skip to content

Commit

Permalink
Merge pull request #68 from Michael-B-23/patch-1
Browse files Browse the repository at this point in the history
Update CONFIGURATIONS.MD to fix PF2E settings
  • Loading branch information
theripper93 authored Aug 29, 2024
2 parents ccac04e + 83e5469 commit f6f849c
Showing 1 changed file with 24 additions and 26 deletions.
50 changes: 24 additions & 26 deletions CONFIGURATIONS.MD
Original file line number Diff line number Diff line change
Expand Up @@ -36,41 +36,39 @@ game.settings.set("splatter", "BloodSheetData", bloodSheetData);

| Field | Value |
|:---|:---|
| Creature Type | details.creatureType |
| Custom Creature Type | details.ancestry.name |
| Creature Type | traits.value |
| Custom Creature Type | traits.value |
| Current HP | attributes.hp.value |
| Max HP | attributes.hp.max |

2. Script macro to set default colors: red for human blood, white-ish for synthetics' fluid, and green for xenomorph's acid. (Remember that *Automatic Blood Color* must be enabled in the module's settings.)
2. Script macro to set default colors. (Remember that *Automatic Blood Color* must be enabled in the module's settings.)

```js
const BloodSheetData = {
Aberration: "#b527d5d5",
Beast: "#a51414d8",
Astral: "#463078d5",
Celestial: "#55a6cdd5",
Construct: "#5f4d39d5",
Dragon: "#40ab26d8",
Elemental: "#737373b1",
Fey: "#b304add8",
Fiend: "#b71e46d8",
Giant: "#541e1ed8",
Humanoid: "#a51414d8",
Monstrosity: "#810808d8",
Ooze: "#f3900fd8",
Plant: "#195d09d8",
Undead: "#260000d8",
Gnome: "#b304add8",
Android: "#5f4d39d5",
Anadi: "#195d09d8",
Automaton: "#b8ae72d5",
Conrasu: "#195d09d8",
aberration: "#b527d5d5",
beast: "#a51414d8",
astral: "#463078d5",
celestial: "#55a6cdd5",
construct: "#5f4d39d5",
dragon: "#40ab26d8",
elemental: "#737373b1",
fey: "#b304add8",
fiend: "#b71e46d8",
giant: "#541e1ed8",
humanoid: "#a51414d8",
monstrosity: "#810808d8",
ooze: "#f3900fd8",
plant: "#195d09d8",
undead: "#260000d8",
gnome: "#b304add8",
android: "#5f4d39d5",
anadi: "#195d09d8",
automaton: "#b8ae72d5",
conrasu: "#195d09d8",
};

game.settings.set("splatter", "BloodSheetData", BloodSheetData);



```

# ALIEN

Expand Down

0 comments on commit f6f849c

Please sign in to comment.