Skip to content

Commit

Permalink
Merge pull request #64 from brantai/main
Browse files Browse the repository at this point in the history
Adding support for the demonlord system
  • Loading branch information
lupestro authored Oct 8, 2023
2 parents a340b20 + bcb4f4d commit c53c387
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Out of the box, the following are available:
| ose | Torches, Lantern
| reclaim-the-wild | Candle, Firewood, Lantern (1h, R0), Lantern (1h, R1),Lantern (1h, R2),Lantern (1h, R3), Lantern (1h, R4), Lantern (1h, R5), Torch (1h, R0), Torch (1h, R1), Torch (1h, R2), Torch (1h, R3), Torch (1h, R4), Torch (1h, R5)
| dragonbane | Lantern, Oil Lamp, Torch, Tallow Candle
| demonlord | Candle, Lantern, Spotlight Lantern, Torch

This module just sheds light from the location of a player token upon demand based upon equipment inventory. It is recommended *not* to use this module for spells or equipment that have other capabilities you intend to use, like performing damage or setting down the equipment, but to rely upon other common approaches, like active effects or item piles, for those.

Expand Down
51 changes: 51 additions & 0 deletions sources.json
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,57 @@
}
}
},
"demonlord": {
"system": "demonlord",
"topology": "standard",
"quantity": "quantity",
"aliases": {
"Lantern, Spotlight": "Spotlight Lantern"
},
"sources": {
"Candle": {
"name": "Candle",
"type": "item",
"consumable": true,
"states": 2,
"light": [
{ "bright": 1, "dim": 2, "angle": 360, "color": "#ff9329", "alpha": 0.1,
"animation": {"type": "torch", "speed": "3", "intensity": "1", "reverse": false}
}
]
},
"Torch": {
"name": "Torch",
"type": "item",
"consumable": true,
"states": 2,
"light": [
{ "bright": 5, "dim": 10, "angle": 360, "color": "#ff9329", "alpha": 0.1,
"animation": {"type": "torch", "speed": "1", "intensity": "5", "reverse": false}}
]
},
"Spotlight Lantern": {
"name": "Spotlight Lantern",
"type": "item",
"consumable": false,
"states": 2,
"light": [
{ "bright": 20, "dim": 40, "angle": 53,
"animation": {"type": "torch", "speed": "1", "intensity": "10", "reverse": false} }
]
},
"Lantern": {
"name": "Lantern",
"type": "item",
"consumable": false,
"states": 3,
"light": [
{ "bright": 10, "dim": 20, "angle": 360,
"animation": {"type": "torch", "speed": "1", "intensity": "10", "reverse": false} }
]
}
}
},
"default": {
"system": "default",
"topology": "none",
Expand Down

0 comments on commit c53c387

Please sign in to comment.