Skip to content

Instantly share code, notes, and snippets.

@tradiuz
Last active September 15, 2025 18:02
Show Gist options
  • Select an option

  • Save tradiuz/271b2827d0b6af860753df12c5570fed to your computer and use it in GitHub Desktop.

Select an option

Save tradiuz/271b2827d0b6af860753df12c5570fed to your computer and use it in GitHub Desktop.
FoundryVTT Torch Module Config

Mothership Configs for the Torch module

Get the module

Install the module per the instructions here: https://foundryvtt.com/packages/torch/

Configure the module

  • Once installed and enabled
  • Go to Game Settings
  • Go to the Torch Settings
  • Click on the File icon for Additional light sources
  • Upload the mosh-torch.json file
  • ???
  • Profit

Notes

This includes the Flashlight (which also covers the Headlamp, Vacsuit, Advanced Battle Dress, Hazard Suit) and Chemlight (also aliased as Glowstick). I've also included a lighter, if you want one, since it felt thematic.

{
"mosh": {
"system": "mosh",
"topology": "standard",
"quantity": "quantity",
"aliases": {
"Vaccsuit": "Flashlight",
"Hazard Suit": "Flashlight",
"Advanced Battle Dress": "Flashlight",
"Headlamp": "Flashlight",
"Glowstick": "Chemlight"
},
"sources": {
"Flashlight": {
"name": "Flashlight",
"type": "equipment",
"consumable": false,
"states": 2,
"light": [
{
"bright": 5,
"dim": 10,
"angle": 50
}
]
},
"Lighter": {
"name": "Lighter",
"type": "equipment",
"consumable": false,
"states": 2,
"light": [
{
"bright": 1,
"dim": 3,
"angle": 360,
"color": "#ff9329",
"alpha": 0.5,
"animation": {
"type": "torch",
"speed": 5,
"intensity": 5,
"reverse": false
}
}
]
},
"Chemlight": {
"name": "Chemlight",
"type": "equipment",
"consumable": true,
"states": 2,
"light": [
{
"bright": 1,
"dim": 2,
"angle": 360,
"color": "#00ff00",
"alpha": 0.5
}
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment