diff --git a/config/tmfx-presets.json b/config/tmfx-presets.json
old mode 100755
new mode 100644
index 5ad3e77..6ba631e
--- a/config/tmfx-presets.json
+++ b/config/tmfx-presets.json
@@ -6,11 +6,11 @@
{
"filterType": "shadow",
"filterId": "MB - Tree Shadow",
- "rotation": 35,
- "blur": 2,
- "quality": 10,
- "distance": 30,
- "alpha": 0.7,
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
"padding": 10,
"shadowOnly": false,
"color": 0,
@@ -21,12 +21,40 @@
]
},
{
- "name": "MB - Tree Swaying in Light Wind",
+ "name": "MB - Tree Breeze Ripple",
+ "library": "tmfx-main",
+ "params": [
+ {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true
+ }
+ ]
+ },
+ {
+ "name": "MB - Tree Swaying in Wind",
"library": "tmfx-main",
"params": [
{
"filterType": "transform",
- "filterId": "MB - Tree Swaying in Light Wind",
+ "filterId": "MB - Tree Swaying in Wind",
"twRadiusPercent": 150,
"padding": 100,
"animated": {
@@ -42,47 +70,62 @@
"val2": 1,
"loopDuration": 5000
}
- },
- "rank": 10002,
- "enabled": true
+ }
}
]
},
{
- "name": "MB - Tree Swaying in Strong Wind",
+ "name": "MB - Fire Motes",
"library": "tmfx-main",
"params": [
{
- "filterType": "transform",
- "filterId": "MB - Tree Swaying in Strong Wind",
- "twRadiusPercent": 100,
- "padding": 100,
+ "filterType": "globes",
+ "filterId": "MB - Fire Motes",
+ "time": 0.1,
+ "color": 15180040,
+ "distortion": 0.3,
+ "scale": 100,
+ "alphaDiscard": true,
+ "zOrder": 1,
"animated": {
- "rotation": {
- "animType": "sinOscillation",
- "val1": -2,
- "val2": 2,
- "loopDuration": 5000
- },
- "twRotation": {
- "animType": "sinOscillation",
- "val1": -2,
- "val2": 2,
- "loopDuration": 5000
+ "time": {
+ "active": true,
+ "speed": 0.00015,
+ "animType": "move"
}
},
- "rank": 10002,
+ "rank": 10013,
+ "enabled": true
+ },
+ {
+ "filterType": "glow",
+ "filterId": "MB - Fire Motes",
+ "outerStrength": 3,
+ "innerStrength": 0,
+ "color": 15180040,
+ "quality": 0.1,
+ "padding": 10,
+ "animated": {
+ "color": {
+ "active": true,
+ "loopDuration": 12000,
+ "animType": "colorOscillation",
+ "val1": 15142157,
+ "val2": 15180040
+ }
+ },
+ "rank": 10014,
"enabled": true
}
]
},
{
- "name": "MB Fire Overlay",
+ "name": "MB - Fire Overlay",
"library": "tmfx-main",
"params": [
{
"filterType": "xfire",
- "filterId": "MB Fire Overlay",
+ "filterId": "MB - Fire Overlay",
"time": 0,
"blend": 1,
"amplitude": 1,
@@ -102,50 +145,5 @@
"enabled": true
}
]
- },
- {
- "name": "MB Fire Motes",
- "library": "tmfx-main",
- "params": [
- {
- "filterType": "globes",
- "filterId": "MB Fire Motes",
- "time": 0.1,
- "color": 15180040,
- "distortion": 0.3,
- "scale": 100,
- "alphaDiscard": true,
- "zOrder": 1,
- "animated": {
- "time": {
- "active": true,
- "speed": 0.00015,
- "animType": "move"
- }
- },
- "rank": 10013,
- "enabled": true
- },
- {
- "filterType": "glow",
- "filterId": "MB Fire Motes",
- "outerStrength": 3,
- "innerStrength": 0,
- "color": 15180040,
- "quality": 0.1,
- "padding": 10,
- "animated": {
- "color": {
- "active": true,
- "loopDuration": 12000,
- "animType": "colorOscillation",
- "val1": 15142157,
- "val2": 15180040
- }
- },
- "rank": 10014,
- "enabled": true
- }
- ]
}
]
diff --git a/macros/journalPage.js b/macros/journalPage.js
new file mode 100644
index 0000000..21e0b43
--- /dev/null
+++ b/macros/journalPage.js
@@ -0,0 +1,14 @@
+function main() {
+ const page = scene?.journal?.pages?.find((p) => p.name.toLowerCase().includes(region.name.toLowerCase()));
+ const isFriendly = event?.data?.token?.disposition === CONST.TOKEN_DISPOSITIONS.FRIENDLY;
+ if (!page || !isFriendly) {
+ return;
+ }
+ if (page.ownership.default !== CONST.DOCUMENT_OWNERSHIP_LEVELS.INHERIT) {
+ page.update({
+ ownership: { default: CONST.DOCUMENT_OWNERSHIP_LEVELS.INHERIT },
+ });
+ }
+}
+
+main();
diff --git a/packs/asset-macros/000005.ldb b/packs/asset-macros/000005.ldb
index 3d5ce1f..d058e87 100644
Binary files a/packs/asset-macros/000005.ldb and b/packs/asset-macros/000005.ldb differ
diff --git a/packs/asset-macros/LOG b/packs/asset-macros/LOG
index 0698d08..fd11742 100644
--- a/packs/asset-macros/LOG
+++ b/packs/asset-macros/LOG
@@ -1,5 +1,5 @@
-2024/08/11-15:23:30.541097 7f1a38fbc700 Delete type=3 #1
-2024/08/11-15:23:30.543421 7f179bfff700 Level-0 table #5: started
-2024/08/11-15:23:30.563641 7f179bfff700 Level-0 table #5: 3427 bytes OK
-2024/08/11-15:23:30.573024 7f179bfff700 Delete type=0 #3
-2024/08/11-15:23:30.573128 7f179bfff700 Manual compaction at level-0 from '!folders!antf8BjHVvX5cTS7' @ 72057594037927935 : 1 .. '!macros!xLuOWsKg7NzeVLMz' @ 0 : 0; will stop at (end)
+2025/06/22-21:34:23.335201 7ebcb97fa640 Delete type=3 #1
+2025/06/22-21:34:23.337295 7ebc92ffd640 Level-0 table #5: started
+2025/06/22-21:34:23.339696 7ebc92ffd640 Level-0 table #5: 10908 bytes OK
+2025/06/22-21:34:23.341723 7ebc92ffd640 Delete type=0 #3
+2025/06/22-21:34:23.341815 7ebc92ffd640 Manual compaction at level-0 from '!folders!1e5EaquD2GTpHlOW' @ 72057594037927935 : 1 .. '!macros!xLuOWsKg7NzeVLMz' @ 0 : 0; will stop at (end)
diff --git a/packs/asset-macros/MANIFEST-000002 b/packs/asset-macros/MANIFEST-000002
index 84b73eb..9866603 100644
Binary files a/packs/asset-macros/MANIFEST-000002 and b/packs/asset-macros/MANIFEST-000002 differ
diff --git a/packs/fx-and-asset-macros/LOG b/packs/fx-and-asset-macros/LOG
index 1f29731..55c0c2f 100644
--- a/packs/fx-and-asset-macros/LOG
+++ b/packs/fx-and-asset-macros/LOG
@@ -1 +1 @@
-2024/08/11-15:23:30.695701 7fe1ecceb700 Delete type=3 #1
+2025/06/22-21:34:23.445609 7896a2ffd640 Delete type=3 #1
diff --git a/packs/journal-templates/LOG b/packs/journal-templates/LOG
index df93575..08aa97c 100644
--- a/packs/journal-templates/LOG
+++ b/packs/journal-templates/LOG
@@ -1 +1 @@
-2024/08/11-15:23:30.825355 7fa38e7fc700 Delete type=3 #1
+2025/06/22-21:34:23.575383 7f39e4ff9640 Delete type=3 #1
diff --git a/packs/mass-edit-presets/000005.ldb b/packs/mass-edit-presets/000005.ldb
index 1b178ed..3c1935e 100644
Binary files a/packs/mass-edit-presets/000005.ldb and b/packs/mass-edit-presets/000005.ldb differ
diff --git a/packs/mass-edit-presets/LOG b/packs/mass-edit-presets/LOG
index 02fb2f7..c6e581b 100644
--- a/packs/mass-edit-presets/LOG
+++ b/packs/mass-edit-presets/LOG
@@ -1,5 +1,5 @@
-2024/08/11-15:23:30.978515 7f750cfbd700 Delete type=3 #1
-2024/08/11-15:23:30.981396 7f750bfbb700 Level-0 table #5: started
-2024/08/11-15:23:30.989721 7f750bfbb700 Level-0 table #5: 60021 bytes OK
-2024/08/11-15:23:30.998625 7f750bfbb700 Delete type=0 #3
-2024/08/11-15:23:30.998730 7f750bfbb700 Manual compaction at level-0 from '!folders!18d3idmsLUHRO4Hp' @ 72057594037927935 : 1 .. '!journal!zjdzg3QKzujGZaoD' @ 0 : 0; will stop at (end)
+2025/06/22-21:34:23.716502 7a58af7fe640 Delete type=3 #1
+2025/06/22-21:34:23.721244 7a58ae3ff640 Level-0 table #5: started
+2025/06/22-21:34:23.725155 7a58ae3ff640 Level-0 table #5: 173270 bytes OK
+2025/06/22-21:34:23.727129 7a58ae3ff640 Delete type=0 #3
+2025/06/22-21:34:23.727322 7a58ae3ff640 Manual compaction at level-0 from '!folders!18d3idmsLUHRO4Hp' @ 72057594037927935 : 1 .. '!journal!zjdzg3QKzujGZaoD' @ 0 : 0; will stop at (end)
diff --git a/packs/mass-edit-presets/MANIFEST-000002 b/packs/mass-edit-presets/MANIFEST-000002
index c1472f7..c4ca063 100644
Binary files a/packs/mass-edit-presets/MANIFEST-000002 and b/packs/mass-edit-presets/MANIFEST-000002 differ
diff --git a/packs/playlists/000005.ldb b/packs/playlists/000005.ldb
index 7800c63..827eca5 100644
Binary files a/packs/playlists/000005.ldb and b/packs/playlists/000005.ldb differ
diff --git a/packs/playlists/LOG b/packs/playlists/LOG
index 23c8cf6..34aece0 100644
--- a/packs/playlists/LOG
+++ b/packs/playlists/LOG
@@ -1,5 +1,5 @@
-2024/08/11-15:23:31.124490 7f714a7be700 Delete type=3 #1
-2024/08/11-15:23:31.126753 7f7148fbb700 Level-0 table #5: started
-2024/08/11-15:23:31.133974 7f7148fbb700 Level-0 table #5: 4207 bytes OK
-2024/08/11-15:23:31.143069 7f7148fbb700 Delete type=0 #3
-2024/08/11-15:23:31.143160 7f7148fbb700 Manual compaction at level-0 from '!folders!Dz9I4fllGBK4RtKU' @ 72057594037927935 : 1 .. '!playlists.sounds!ynw5hUH1ZPbAGq8g.Yq1yXMOjnlHWhnYt' @ 0 : 0; will stop at (end)
+2025/06/22-21:34:23.835929 76c4677fe640 Delete type=3 #1
+2025/06/22-21:34:23.838054 76c465bff640 Level-0 table #5: started
+2025/06/22-21:34:23.840370 76c465bff640 Level-0 table #5: 4231 bytes OK
+2025/06/22-21:34:23.842306 76c465bff640 Delete type=0 #3
+2025/06/22-21:34:23.842377 76c465bff640 Manual compaction at level-0 from '!folders!Dz9I4fllGBK4RtKU' @ 72057594037927935 : 1 .. '!playlists.sounds!ynw5hUH1ZPbAGq8g.Yq1yXMOjnlHWhnYt' @ 0 : 0; will stop at (end)
diff --git a/packs/playlists/MANIFEST-000002 b/packs/playlists/MANIFEST-000002
index 7bfc2be..0b88d5a 100644
Binary files a/packs/playlists/MANIFEST-000002 and b/packs/playlists/MANIFEST-000002 differ
diff --git a/packsrc/asset-macros/Bare_Tree__Ashen__Brush_1OZYJSdqY0bKdKIz.json b/packsrc/asset-macros/Bare_Tree__Ashen__Brush_1OZYJSdqY0bKdKIz.json
new file mode 100644
index 0000000..ae911ae
--- /dev/null
+++ b/packsrc/asset-macros/Bare_Tree__Ashen__Brush_1OZYJSdqY0bKdKIz.json
@@ -0,0 +1,28 @@
+{
+ "name": "Bare Tree (Ashen) Brush",
+ "type": "script",
+ "scope": "global",
+ "command": "MassEdit.openBrushMenu({ \n uuid: [\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.Hluflk5VK4jxwOvD\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.3QMUweqIPcgoHtn1\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.JzykxHR1l1ywhLz7\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.nktxGgWuoEbASyvt\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.VhtF1tY7heS7JvmU\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.uiu2R7e3egQ95TLR\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.diJLh88EHCfxCNzM\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.90gDCbKXqfJeJOIS\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.3mJFOHq4SspPKKP8\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.2FgRIPoVz5ljoDQF\"\n]\n },\n {\n \"scale\": [\n 0.6,\n 0.6\n ],\n \"rotation\": [\n -180,\n 180\n ],\n \"random\": true,\n \"group\": false,\n \"spawner\": true,\n \"eraser\": false,\n \"lock\": false,\n \"snap\": false,\n \"scaleToGrid\": true,\n \"tmfxPreset\": null,\n \"color\": null,\n \"randomColor\": null,\n \"density\": 1,\n \"tagger\": null\n}\n );",
+ "img": "icons/magic/nature/tree-bare-glow-yellow.webp",
+ "author": "sVoCvBU1knmXzoYe",
+ "folder": "uuW1p6onA3cLVWQJ",
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645167662,
+ "modifiedTime": 1750645167662,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_id": "1OZYJSdqY0bKdKIz",
+ "sort": 0,
+ "_key": "!macros!1OZYJSdqY0bKdKIz"
+}
diff --git a/packsrc/asset-macros/Bare_Tree__Dark__Brush_iA56yq07CYmdmpfS.json b/packsrc/asset-macros/Bare_Tree__Dark__Brush_iA56yq07CYmdmpfS.json
new file mode 100644
index 0000000..a947f44
--- /dev/null
+++ b/packsrc/asset-macros/Bare_Tree__Dark__Brush_iA56yq07CYmdmpfS.json
@@ -0,0 +1,28 @@
+{
+ "name": "Bare Tree (Dark) Brush",
+ "type": "script",
+ "scope": "global",
+ "command": "MassEdit.openBrushMenu({ \n uuid: [\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.CQij73v9550W57iY\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.3cMgbQLSDJUhA9PZ\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.f5oLtF2UIYob6OoM\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.62baVbkoegs3p3mU\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.kLyow4BBJxT4bai3\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.gWxwZpmNjg7wouX6\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.UU8sC0zLfRgeUIzb\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.w4naaZQWylF6ywE7\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.Stt1NfzEAzbBToJN\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.xFknz35l1hk1m0CP\"\n]\n },\n {\n \"scale\": [\n 0.6,\n 0.6\n ],\n \"rotation\": [\n -180,\n 180\n ],\n \"random\": true,\n \"group\": false,\n \"spawner\": true,\n \"eraser\": false,\n \"lock\": false,\n \"snap\": false,\n \"scaleToGrid\": true,\n \"tmfxPreset\": null,\n \"color\": null,\n \"randomColor\": null,\n \"density\": 1,\n \"tagger\": null\n}\n );",
+ "img": "icons/magic/nature/tree-bare-glow-yellow.webp",
+ "author": "sVoCvBU1knmXzoYe",
+ "folder": "uuW1p6onA3cLVWQJ",
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645169698,
+ "modifiedTime": 1750645169698,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_id": "iA56yq07CYmdmpfS",
+ "sort": 0,
+ "_key": "!macros!iA56yq07CYmdmpfS"
+}
diff --git a/packsrc/asset-macros/Bare_Tree__Light__Brush_Tzw6pwHw6ss9rdfA.json b/packsrc/asset-macros/Bare_Tree__Light__Brush_Tzw6pwHw6ss9rdfA.json
new file mode 100644
index 0000000..c812adf
--- /dev/null
+++ b/packsrc/asset-macros/Bare_Tree__Light__Brush_Tzw6pwHw6ss9rdfA.json
@@ -0,0 +1,28 @@
+{
+ "name": "Bare Tree (Light) Brush",
+ "type": "script",
+ "scope": "global",
+ "command": "MassEdit.openBrushMenu({ \n uuid: [\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.77Dc7tb95qq5yVgE\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.6rWiBf3QuEzZ8JUt\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.k4IG8QwgqS0IADs3\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.dtJ9oxGrlmVr3aos\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.BAZM5h6QEQLrUFfd\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.zRxciV5dCcXasDub\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.9vT4XFgn3EwvYhAv\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.EyIn7kuosYsNfCw0\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.wqUfEQRgOaMIDCry\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.CGYEktZcak7S96mk\"\n]\n },\n {\n \"scale\": [\n 0.6,\n 0.6\n ],\n \"rotation\": [\n -180,\n 180\n ],\n \"random\": true,\n \"group\": false,\n \"spawner\": true,\n \"eraser\": false,\n \"lock\": false,\n \"snap\": false,\n \"scaleToGrid\": true,\n \"tmfxPreset\": null,\n \"color\": null,\n \"randomColor\": null,\n \"density\": 1,\n \"tagger\": null\n}\n );",
+ "img": "icons/magic/nature/tree-bare-glow-yellow.webp",
+ "author": "sVoCvBU1knmXzoYe",
+ "folder": "uuW1p6onA3cLVWQJ",
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645171637,
+ "modifiedTime": 1750645171637,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_id": "Tzw6pwHw6ss9rdfA",
+ "sort": 0,
+ "_key": "!macros!Tzw6pwHw6ss9rdfA"
+}
diff --git a/packsrc/asset-macros/Leafy_Tree_Brush_s03jPsTRsp9QpvNW.json b/packsrc/asset-macros/Leafy_Tree_Brush_s03jPsTRsp9QpvNW.json
new file mode 100644
index 0000000..607a14a
--- /dev/null
+++ b/packsrc/asset-macros/Leafy_Tree_Brush_s03jPsTRsp9QpvNW.json
@@ -0,0 +1,28 @@
+{
+ "name": "Leafy Tree Brush",
+ "type": "script",
+ "scope": "global",
+ "command": "MassEdit.openBrushMenu({ \n uuid: [\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.2Iaaks8WNo0RyY1O\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.A3MboNOE7cqMAJtk\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.Afs7S5dk9kWkl9I1\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.CwvsgfpmApzGBPKj\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.IakSz93I7CoOz344\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.JO3Z6swCJg4LKIyu\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.MTG3tWrAbc5Q14f8\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.SIYfKaoirm3KzZNY\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.SdlmHvE9bJs5knxT\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.TEVentXNWNgcbLl8\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.WZdAmc2bjmOxnOVn\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.WxdhcLOfP6mH3JI6\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.XIutuaIC9qVuoQmC\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.iFrKPuvDZWnyn3HK\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.iVGagdFBAHBDGZgZ\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.jkP8Xf48Xi996RYH\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.lN1XagNzbEfTk7OG\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.oS1XP3W3MfFmA0mA\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.pR1aPmgiPrpUeYDv\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.pYXDqgwyj83C89zE\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.rXQJOi2Hi9kmrYXZ\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.s9rH3RPws1blnan0\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.udCLRvHwGSZgUGHn\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.ufXS6HUAiNMm7ufQ\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.xAVJiKqpnbuHhxMI\",\n \"Compendium.mb-assets.mass-edit-presets.JournalEntry.z0mctTk3NKbIymjU\"\n]\n },\n {\n \"scale\": [\n 1,\n 1\n ],\n \"rotation\": [\n -180,\n 180\n ],\n \"random\": true,\n \"group\": false,\n \"spawner\": true,\n \"eraser\": false,\n \"lock\": false,\n \"snap\": false,\n \"scaleToGrid\": true,\n \"tmfxPreset\": null,\n \"color\": null,\n \"randomColor\": null,\n \"density\": 1,\n \"tagger\": null\n}\n );",
+ "img": "icons/environment/wilderness/tree-ash.webp",
+ "author": "sVoCvBU1knmXzoYe",
+ "folder": "uuW1p6onA3cLVWQJ",
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750641562143,
+ "modifiedTime": 1750641580258,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_id": "s03jPsTRsp9QpvNW",
+ "sort": 100000,
+ "_key": "!macros!s03jPsTRsp9QpvNW"
+}
diff --git a/packsrc/asset-macros/Mass_Edit_Brushes_uuW1p6onA3cLVWQJ.json b/packsrc/asset-macros/Mass_Edit_Brushes_uuW1p6onA3cLVWQJ.json
new file mode 100644
index 0000000..cbf802a
--- /dev/null
+++ b/packsrc/asset-macros/Mass_Edit_Brushes_uuW1p6onA3cLVWQJ.json
@@ -0,0 +1,23 @@
+{
+ "type": "Macro",
+ "folder": null,
+ "name": "Mass Edit Brushes",
+ "color": null,
+ "sorting": "a",
+ "_id": "uuW1p6onA3cLVWQJ",
+ "description": "",
+ "sort": 0,
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750630965865,
+ "modifiedTime": 1750630965865,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!folders!uuW1p6onA3cLVWQJ"
+}
diff --git a/packsrc/asset-macros/Open_Item_Pile__MATT__bUoKPxrggAco4JwR.json b/packsrc/asset-macros/Open_Item_Pile__MATT__bUoKPxrggAco4JwR.json
index 955a180..5488938 100644
--- a/packsrc/asset-macros/Open_Item_Pile__MATT__bUoKPxrggAco4JwR.json
+++ b/packsrc/asset-macros/Open_Item_Pile__MATT__bUoKPxrggAco4JwR.json
@@ -16,12 +16,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.0.6",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1690061702306,
"modifiedTime": 1691346445006,
"lastModifiedBy": "Aqnn9hCDQPbyTWiq",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"_id": "bUoKPxrggAco4JwR",
"sort": 0,
diff --git a/packsrc/asset-macros/Post_Preset_Leafy_Tree_jXyqie75jEVIFvb8.json b/packsrc/asset-macros/Post_Preset_Leafy_Tree_jXyqie75jEVIFvb8.json
new file mode 100644
index 0000000..b67e948
--- /dev/null
+++ b/packsrc/asset-macros/Post_Preset_Leafy_Tree_jXyqie75jEVIFvb8.json
@@ -0,0 +1,28 @@
+{
+ "folder": "1e5EaquD2GTpHlOW",
+ "name": "Post Preset Leafy Tree",
+ "type": "script",
+ "_id": "jXyqie75jEVIFvb8",
+ "author": "sVoCvBU1knmXzoYe",
+ "img": "icons/environment/wilderness/tree-oak.webp",
+ "scope": "global",
+ "command": "let canopy = objects.find(o => o.document.documentName === 'Tile' && Tagger.hasTags(o.document, 'TreeCanopy'))?.document\nlet shadow = objects.find(o => o.document.documentName === 'Tile' && Tagger.hasTags(o.document, 'TreeShadow'))?.document\nshadow.update({x: canopy.x + 50, y: canopy.y + 50})",
+ "sort": 100000,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750563013752,
+ "modifiedTime": 1750617861968,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!macros!jXyqie75jEVIFvb8"
+}
diff --git a/packsrc/asset-macros/Reveal_FoW_TCtNmn6W5twRGQo8.json b/packsrc/asset-macros/Reveal_FoW_TCtNmn6W5twRGQo8.json
index 5ef45f3..c152eff 100644
--- a/packsrc/asset-macros/Reveal_FoW_TCtNmn6W5twRGQo8.json
+++ b/packsrc/asset-macros/Reveal_FoW_TCtNmn6W5twRGQo8.json
@@ -16,12 +16,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1712206097249,
"modifiedTime": 1713026618048,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"_key": "!macros!TCtNmn6W5twRGQo8"
}
diff --git a/packsrc/asset-macros/Set_Tree_Opacity_9mGisaPegF6F8Uex.json b/packsrc/asset-macros/Set_Tree_Opacity_9mGisaPegF6F8Uex.json
new file mode 100644
index 0000000..e0ddecb
--- /dev/null
+++ b/packsrc/asset-macros/Set_Tree_Opacity_9mGisaPegF6F8Uex.json
@@ -0,0 +1,28 @@
+{
+ "folder": "1e5EaquD2GTpHlOW",
+ "name": "Set Tree Opacity",
+ "type": "script",
+ "_id": "9mGisaPegF6F8Uex",
+ "author": "sVoCvBU1knmXzoYe",
+ "img": "icons/environment/wilderness/tree-spruce.webp",
+ "scope": "global",
+ "command": "let opacity;\ntry {\n opacity = await foundry.applications.api.DialogV2.prompt({\n window: { title: \"Set Tree Opacity on current scene\" },\n content: '',\n ok: {\n label: \"Set Opacity\",\n callback: (event, button, dialog) => button.form.elements.opacity.valueAsNumber\n }\n });\n} catch {\n console.log(\"User did not choose opacity.\");\n return;\n}\nif (!opacity) { \n console.log(\"no opacity set\")\n return\n}\nconsole.log(\"set opacity to \", opacity)\nlet treeCanopies = game.scenes.current.tiles.filter(t => Tagger.hasTags([t], ['TreeCanopy']))\ngame.scenes.current.updateEmbeddedDocuments('Tile', treeCanopies.map(c => {\n return {\"_id\": c.id, \"alpha\": opacity}\n}))",
+ "sort": 200000,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750556083913,
+ "modifiedTime": 1750617863361,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!macros!9mGisaPegF6F8Uex"
+}
diff --git a/packsrc/asset-macros/Show_Calendar__SimpleCalendar__mVb5uW9peYwdRsFG.json b/packsrc/asset-macros/Show_Calendar__SimpleCalendar__mVb5uW9peYwdRsFG.json
index 6e61cae..9e73158 100644
--- a/packsrc/asset-macros/Show_Calendar__SimpleCalendar__mVb5uW9peYwdRsFG.json
+++ b/packsrc/asset-macros/Show_Calendar__SimpleCalendar__mVb5uW9peYwdRsFG.json
@@ -16,12 +16,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.0.6",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1692465227255,
"modifiedTime": 1692465443615,
"lastModifiedBy": "Aqnn9hCDQPbyTWiq",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"_key": "!macros!mVb5uW9peYwdRsFG"
}
diff --git a/packsrc/asset-macros/Tree_Style_Select_qD7v8yTOa2TNi2DL.json b/packsrc/asset-macros/Tree_Style_Select_qD7v8yTOa2TNi2DL.json
new file mode 100644
index 0000000..e71eacc
--- /dev/null
+++ b/packsrc/asset-macros/Tree_Style_Select_qD7v8yTOa2TNi2DL.json
@@ -0,0 +1,28 @@
+{
+ "folder": "1e5EaquD2GTpHlOW",
+ "name": "Tree Style Select",
+ "type": "script",
+ "_id": "qD7v8yTOa2TNi2DL",
+ "author": "sVoCvBU1knmXzoYe",
+ "img": "icons/environment/wilderness/tree-oak.webp",
+ "scope": "global",
+ "command": "let choices = {\n 'Green': 'Green',\n 'Multicolor1': 'Multi-color',\n 'Red': 'Red',\n 'Yellow': 'Yellow',\n 'Multicolor2': 'Fey1',\n 'Multicolor3': 'Fey2'\n};\nlet content = '';\nlet style;\ntry {\n style = await foundry.applications.api.DialogV2.prompt({\n window: { title: \"Choose Tree Style\" },\n content,\n ok: {\n label: 'Set Tree Style',\n callback: (event, button, dialog) => button.form.elements.style.value\n }\n });\n} catch {\n console.log(\"no choice made\");\n return;\n}\nif (!style) {\n console.log(\"no choice made\");\n return;\n}\n\nlet updates = [];\nlet trees = canvas.scene.tiles.filter(t => Tagger.hasTags(t, 'TreeCanopy')).forEach(t => {\n let styleimg\n if (style === 'Green' && t.flags['multiface-tiles']?.originalImage) {\n styleimg = t.flags['multiface-tiles']?.originalImage\n } else {\n styleimg = t.flags['multiface-tiles']?.altImages?.find(i => i.indexOf(style) > -1)\n }\n if (styleimg) {\n updates.push({'_id': t.id, 'texture.src': styleimg})\n }\n});\ncanvas.scene.updateEmbeddedDocuments('Tile', updates)",
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750627757667,
+ "modifiedTime": 1750630748699,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!macros!qD7v8yTOa2TNi2DL"
+}
diff --git a/packsrc/asset-macros/Tree_Wind_Select_wcf1tPQc3HAtk2tv.json b/packsrc/asset-macros/Tree_Wind_Select_wcf1tPQc3HAtk2tv.json
new file mode 100644
index 0000000..f2d1278
--- /dev/null
+++ b/packsrc/asset-macros/Tree_Wind_Select_wcf1tPQc3HAtk2tv.json
@@ -0,0 +1,28 @@
+{
+ "folder": "1e5EaquD2GTpHlOW",
+ "name": "Tree Wind Select",
+ "type": "script",
+ "_id": "wcf1tPQc3HAtk2tv",
+ "author": "sVoCvBU1knmXzoYe",
+ "img": "icons/magic/nature/tree-spirit-blue.webp",
+ "scope": "global",
+ "command": "let choices = {\n 'none': 'No Wind',\n 'breeze': 'Leaf Rustle',\n 'high': 'High Wind',\n};\nlet rippleEffect = 'MB - Tree Breeze Ripple';\nlet swayEffect = 'MB - Tree Swaying in Wind';\nlet content = '';\nlet wind;\ntry {\n wind = await foundry.applications.api.DialogV2.prompt({\n window: { title: \"Choose Tree Style\" },\n content,\n ok: {\n label: 'Set Tree Wind Effect',\n callback: (event, button, dialog) => button.form.elements.wind.value\n }\n });\n} catch {\n console.log(\"no choice made\");\n return;\n}\nif (!wind) {\n console.log(\"no choice made\");\n return;\n}\n\nlet ripplingTrees = canvas.scene.tiles.filter(t => Tagger.hasTags(t, 'TreeCanopy'))\nlet swayingTrees = canvas.scene.tiles.filter(t => Tagger.hasTags(t, ['TreeBare', 'TreeShadow', 'TreeCanopy'], {matchAny: true}))\n\nif (wind === 'none') {\n \n}\n\nif (wind === 'none') {\n ripplingTrees.forEach(async t => await TokenMagic.deleteFilters(t.object, rippleEffect))\n}\nif (wind === 'none' || wind === 'breeze') {\n swayingTrees.forEach(async t => await TokenMagic.deleteFilters(t.object, swayEffect))\n}\nif (wind === 'breeze' || wind === 'high') {\n ripplingTrees.forEach(async t => await TokenMagic.addUpdateFilters(t.object, TokenMagic.getPreset(rippleEffect)))\n}\nif (wind === 'high') {\n swayingTrees.forEach(async t => await TokenMagic.addUpdateFilters(t.object, TokenMagic.getPreset(swayEffect)))\n}",
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750642203681,
+ "modifiedTime": 1750644765778,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!macros!wcf1tPQc3HAtk2tv"
+}
diff --git a/packsrc/asset-macros/Trees_1e5EaquD2GTpHlOW.json b/packsrc/asset-macros/Trees_1e5EaquD2GTpHlOW.json
new file mode 100644
index 0000000..56a17fe
--- /dev/null
+++ b/packsrc/asset-macros/Trees_1e5EaquD2GTpHlOW.json
@@ -0,0 +1,21 @@
+{
+ "type": "Macro",
+ "folder": "antf8BjHVvX5cTS7",
+ "name": "Trees",
+ "color": null,
+ "sorting": "a",
+ "_id": "1e5EaquD2GTpHlOW",
+ "description": "",
+ "sort": 0,
+ "flags": {},
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "lastModifiedBy": null
+ },
+ "_key": "!folders!1e5EaquD2GTpHlOW"
+}
diff --git a/packsrc/asset-macros/hasEffect_xLuOWsKg7NzeVLMz.json b/packsrc/asset-macros/hasEffect_xLuOWsKg7NzeVLMz.json
index 70374d7..ff052a1 100644
--- a/packsrc/asset-macros/hasEffect_xLuOWsKg7NzeVLMz.json
+++ b/packsrc/asset-macros/hasEffect_xLuOWsKg7NzeVLMz.json
@@ -16,12 +16,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.3",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1709168972541,
"modifiedTime": 1709169248584,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"_key": "!macros!xLuOWsKg7NzeVLMz"
}
diff --git a/packsrc/mass-edit-presets/Acid_Splash_HevuCPBpFEeCb30g.json b/packsrc/mass-edit-presets/Acid_Splash_HevuCPBpFEeCb30g.json
index 8a34029..7ccf559 100644
--- a/packsrc/mass-edit-presets/Acid_Splash_HevuCPBpFEeCb30g.json
+++ b/packsrc/mass-edit-presets/Acid_Splash_HevuCPBpFEeCb30g.json
@@ -93,12 +93,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1715452726550,
"modifiedTime": 1715452726550,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!HevuCPBpFEeCb30g"
}
diff --git a/packsrc/mass-edit-presets/Alchemist_s_Fire_HrSMyOaNLr9VqotP.json b/packsrc/mass-edit-presets/Alchemist_s_Fire_HrSMyOaNLr9VqotP.json
index 15bd9fc..ccbf1a4 100644
--- a/packsrc/mass-edit-presets/Alchemist_s_Fire_HrSMyOaNLr9VqotP.json
+++ b/packsrc/mass-edit-presets/Alchemist_s_Fire_HrSMyOaNLr9VqotP.json
@@ -58,12 +58,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1715452726566,
"modifiedTime": 1715452726566,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!HrSMyOaNLr9VqotP"
}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Ashen_B10_8x9_2FgRIPoVz5ljoDQF.json b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B10_8x9_2FgRIPoVz5ljoDQF.json
new file mode 100644
index 0000000..044de4e
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B10_8x9_2FgRIPoVz5ljoDQF.json
@@ -0,0 +1,449 @@
+{
+ "_id": "2FgRIPoVz5ljoDQF",
+ "name": "Bare_Tree_Ashen_B10_8x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "2FgRIPoVz5ljoDQF",
+ "name": "Bare_Tree_Ashen_B10_8x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B10_8x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 9300,
+ "width": 1600,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "fxXtsEa025SGZEPn",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Ashen_B10_8x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B10_8x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "hshXnjROFDAEfpmZ",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "3IdvlBY6EILvfZaq",
+ "placeableId": "fxXtsEa025SGZEPn",
+ "filterInternalId": "hshXnjROFDAEfpmZ",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "AIeRMMOYxD4eJh0f",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2000000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.2FgRIPoVz5ljoDQF",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B10_8x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4448,
+ "y": 10000,
+ "width": 487,
+ "height": 435,
+ "elevation": 0,
+ "sort": 27,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "X4Xs5hGPwMTKT9Nd",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B2_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "AIeRMMOYxD4eJh0f",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4483,
+ "y": 9980,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 61,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "RUQLnRAiUmvgXLmU",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B1_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "AIeRMMOYxD4eJh0f",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4688,
+ 10138,
+ 4613,
+ 10200
+ ],
+ "_id": "LweVsC8A2tGLqeIx",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "AIeRMMOYxD4eJh0f",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4613,
+ 10200,
+ 4688,
+ 10288
+ ],
+ "_id": "fiu6kHE942OrQGCX",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "AIeRMMOYxD4eJh0f",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4688,
+ 10288,
+ 4775,
+ 10225
+ ],
+ "_id": "wElij8AFuFbLHeIT",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "AIeRMMOYxD4eJh0f",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4775,
+ 10225,
+ 4688,
+ 10138
+ ],
+ "_id": "7G83DwGZzzXhbZYZ",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "AIeRMMOYxD4eJh0f",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!2FgRIPoVz5ljoDQF"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Ashen_B1_8x9_Hluflk5VK4jxwOvD.json b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B1_8x9_Hluflk5VK4jxwOvD.json
new file mode 100644
index 0000000..8eb3049
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B1_8x9_Hluflk5VK4jxwOvD.json
@@ -0,0 +1,442 @@
+{
+ "_id": "Hluflk5VK4jxwOvD",
+ "name": "Bare_Tree_Ashen_B1_8x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "Hluflk5VK4jxwOvD",
+ "name": "Bare_Tree_Ashen_B1_8x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B1_8x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 7500,
+ "width": 1600,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "49BBZz4lmUaZd9G3",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "aH57ls1gWCnkyzBC",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "ipwTXOmE22K1f0nF",
+ "placeableId": "49BBZz4lmUaZd9G3",
+ "filterInternalId": "aH57ls1gWCnkyzBC",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Ashen_B1_8x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B1_8x9.webp",
+ "altImages": []
+ },
+ "levels": {
+ "rangeTop": null,
+ "showIfAbove": false,
+ "showAboveRange": null,
+ "noCollision": false,
+ "noFogHide": false,
+ "isBasement": false,
+ "allWallBlockSight": true
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2oLagYuEUVEEUHsH",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1100000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.Hluflk5VK4jxwOvD",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B1_8x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4600,
+ "y": 8200,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 60,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "ovgz1pSgsIUx9gpz",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B1_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2oLagYuEUVEEUHsH",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4800,
+ 8388,
+ 4738,
+ 8450
+ ],
+ "_id": "oTcXyf1Q5NmqLAbg",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2oLagYuEUVEEUHsH",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4738,
+ 8450,
+ 4788,
+ 8513
+ ],
+ "_id": "3SXnIar67r4qcSpG",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2oLagYuEUVEEUHsH",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4788,
+ 8513,
+ 4850,
+ 8488
+ ],
+ "_id": "BVgyDPg3ADkgBMQx",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2oLagYuEUVEEUHsH",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4850,
+ 8488,
+ 4850,
+ 8425
+ ],
+ "_id": "QYnNxeEFDyLxFHop",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2oLagYuEUVEEUHsH",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4850,
+ 8425,
+ 4800,
+ 8388
+ ],
+ "_id": "XflvPIqMnWPnnHkN",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2oLagYuEUVEEUHsH",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!Hluflk5VK4jxwOvD"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Ashen_B2_11x10_3QMUweqIPcgoHtn1.json b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B2_11x10_3QMUweqIPcgoHtn1.json
new file mode 100644
index 0000000..6633f78
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B2_11x10_3QMUweqIPcgoHtn1.json
@@ -0,0 +1,433 @@
+{
+ "_id": "3QMUweqIPcgoHtn1",
+ "name": "Bare_Tree_Ashen_B2_11x10",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "3QMUweqIPcgoHtn1",
+ "name": "Bare_Tree_Ashen_B2_11x10",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B2_11x10.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5600,
+ "y": 7500,
+ "width": 2200,
+ "height": 2000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Rje37DvNUOdI6mCv",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Ashen_B2_11x10",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B2_11x10.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "4Sax1Bl3THTWYwaT",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "L0wau9yXJqWqFNkg",
+ "placeableId": "Rje37DvNUOdI6mCv",
+ "filterInternalId": "4Sax1Bl3THTWYwaT",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "OhnwLkgorOSmEUjW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1200000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.3QMUweqIPcgoHtn1",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B2_11x10.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6387,
+ "y": 8278,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 62,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Zw3GHcKjMbw7A3Yt",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B2_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "OhnwLkgorOSmEUjW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6625,
+ 8450,
+ 6563,
+ 8488
+ ],
+ "_id": "lgaeVyXUtIXETr6q",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "OhnwLkgorOSmEUjW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6563,
+ 8488,
+ 6588,
+ 8550
+ ],
+ "_id": "J7ZSNsp7AyQl6885",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "OhnwLkgorOSmEUjW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6588,
+ 8550,
+ 6650,
+ 8550
+ ],
+ "_id": "w5U9DyxPxcVeVF41",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "OhnwLkgorOSmEUjW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6650,
+ 8550,
+ 6688,
+ 8500
+ ],
+ "_id": "6Ls9iusPOEa9njBi",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "OhnwLkgorOSmEUjW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6688,
+ 8500,
+ 6625,
+ 8450
+ ],
+ "_id": "dBg3VxeMirWdoG6B",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "OhnwLkgorOSmEUjW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!3QMUweqIPcgoHtn1"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Ashen_B3_9x8_JzykxHR1l1ywhLz7.json b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B3_9x8_JzykxHR1l1ywhLz7.json
new file mode 100644
index 0000000..e109a55
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B3_9x8_JzykxHR1l1ywhLz7.json
@@ -0,0 +1,141 @@
+{
+ "_id": "JzykxHR1l1ywhLz7",
+ "name": "Bare_Tree_Ashen_B3_9x8",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "JzykxHR1l1ywhLz7",
+ "name": "Bare_Tree_Ashen_B3_9x8",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B3_9x8.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7800,
+ "y": 7500,
+ "width": 1800,
+ "height": 1600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "GiG1zFsf14ihE5rJ",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Ashen_B3_9x8",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B3_9x8.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "dkid9OEjtLMpxiZ1",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "q3Tk0a1DrrRGSdSx",
+ "placeableId": "GiG1zFsf14ihE5rJ",
+ "filterInternalId": "dkid9OEjtLMpxiZ1",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "mjMhzM7WNRwLajFp",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1300000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.JzykxHR1l1ywhLz7",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B3_9x8.webp",
+ "gridSize": 200,
+ "tags": [
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
+ ]
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!JzykxHR1l1ywhLz7"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Ashen_B4_8x9_nktxGgWuoEbASyvt.json b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B4_8x9_nktxGgWuoEbASyvt.json
new file mode 100644
index 0000000..9d221fd
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B4_8x9_nktxGgWuoEbASyvt.json
@@ -0,0 +1,141 @@
+{
+ "_id": "nktxGgWuoEbASyvt",
+ "name": "Bare_Tree_Ashen_B4_8x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "nktxGgWuoEbASyvt",
+ "name": "Bare_Tree_Ashen_B4_8x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B4_8x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 9600,
+ "y": 7500,
+ "width": 1600,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "HDTy1GnVRXYnEGrq",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Ashen_B4_8x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B4_8x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "XOSnN5EOJ6moR4tw",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "33ags5XasVA97zCp",
+ "placeableId": "HDTy1GnVRXYnEGrq",
+ "filterInternalId": "XOSnN5EOJ6moR4tw",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "JKWKd8yOfk2oYFvE",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1400000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.nktxGgWuoEbASyvt",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B4_8x9.webp",
+ "gridSize": 200,
+ "tags": [
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
+ ]
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!nktxGgWuoEbASyvt"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Ashen_B5_9x8_VhtF1tY7heS7JvmU.json b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B5_9x8_VhtF1tY7heS7JvmU.json
new file mode 100644
index 0000000..f8244cd
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B5_9x8_VhtF1tY7heS7JvmU.json
@@ -0,0 +1,433 @@
+{
+ "_id": "VhtF1tY7heS7JvmU",
+ "name": "Bare_Tree_Ashen_B5_9x8",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "VhtF1tY7heS7JvmU",
+ "name": "Bare_Tree_Ashen_B5_9x8",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B5_9x8.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 11200,
+ "y": 7500,
+ "width": 1800,
+ "height": 1600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "PoF5pNH9RVFfiyxm",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Ashen_B5_9x8",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B5_9x8.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "Lkku5QUFc6yLgymb",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "8Xt0UFerOKBDndea",
+ "placeableId": "PoF5pNH9RVFfiyxm",
+ "filterInternalId": "Lkku5QUFc6yLgymb",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hb23UmEe3TiIl6RT",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1500000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.VhtF1tY7heS7JvmU",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B5_9x8.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B5_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 11809,
+ "y": 8154,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 65,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "GRUoWAqkmxwqOv4m",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B5_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hb23UmEe3TiIl6RT",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12038,
+ 8313,
+ 11975,
+ 8363
+ ],
+ "_id": "chwTcnCiuzrtT4i8",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hb23UmEe3TiIl6RT",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 11975,
+ 8363,
+ 11988,
+ 8425
+ ],
+ "_id": "RH56BdcTL3gBBMuq",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hb23UmEe3TiIl6RT",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 11988,
+ 8425,
+ 12050,
+ 8438
+ ],
+ "_id": "pkFPjhD2QuxsC0Z6",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hb23UmEe3TiIl6RT",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12050,
+ 8438,
+ 12100,
+ 8375
+ ],
+ "_id": "sek7HzAUknzlA0mz",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hb23UmEe3TiIl6RT",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12100,
+ 8375,
+ 12038,
+ 8325
+ ],
+ "_id": "dBfDjhm0dp1t4nGY",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hb23UmEe3TiIl6RT",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!VhtF1tY7heS7JvmU"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Ashen_B6_8x8_uiu2R7e3egQ95TLR.json b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B6_8x8_uiu2R7e3egQ95TLR.json
new file mode 100644
index 0000000..ff63641
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B6_8x8_uiu2R7e3egQ95TLR.json
@@ -0,0 +1,433 @@
+{
+ "_id": "uiu2R7e3egQ95TLR",
+ "name": "Bare_Tree_Ashen_B6_8x8",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "uiu2R7e3egQ95TLR",
+ "name": "Bare_Tree_Ashen_B6_8x8",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B6_8x8.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 13000,
+ "y": 7500,
+ "width": 1600,
+ "height": 1600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "fo1WNuOyRyAYHUuQ",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Ashen_B6_8x8",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B6_8x8.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "OxY7El9bWNyi5WVj",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "PHwTUb0vd2SHjRDX",
+ "placeableId": "fo1WNuOyRyAYHUuQ",
+ "filterInternalId": "OxY7El9bWNyi5WVj",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hbp8WnGOMaBNN67N",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1600000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.uiu2R7e3egQ95TLR",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B6_8x8.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B6_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 13627,
+ "y": 7953,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 66,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "IfnA0whLZFXUMStC",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B6_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hbp8WnGOMaBNN67N",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 13825,
+ 8125,
+ 13750,
+ 8175
+ ],
+ "_id": "NCzalUAVNSQ2a3w9",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hbp8WnGOMaBNN67N",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 13750,
+ 8175,
+ 13775,
+ 8238
+ ],
+ "_id": "8VuECWALpyQjgrbk",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hbp8WnGOMaBNN67N",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 13775,
+ 8238,
+ 13850,
+ 8250
+ ],
+ "_id": "29bmSDZXwJolVMYd",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hbp8WnGOMaBNN67N",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 13850,
+ 8250,
+ 13875,
+ 8188
+ ],
+ "_id": "0ZhDxyETQcJFVtFq",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hbp8WnGOMaBNN67N",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 13875,
+ 8188,
+ 13825,
+ 8125
+ ],
+ "_id": "DCrAawml94naYEtj",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Hbp8WnGOMaBNN67N",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!uiu2R7e3egQ95TLR"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Ashen_B7_10x10_diJLh88EHCfxCNzM.json b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B7_10x10_diJLh88EHCfxCNzM.json
new file mode 100644
index 0000000..e4470cc
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B7_10x10_diJLh88EHCfxCNzM.json
@@ -0,0 +1,433 @@
+{
+ "_id": "diJLh88EHCfxCNzM",
+ "name": "Bare_Tree_Ashen_B7_10x10",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "diJLh88EHCfxCNzM",
+ "name": "Bare_Tree_Ashen_B7_10x10",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B7_10x10.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 14600,
+ "y": 7500,
+ "width": 2000,
+ "height": 2000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "acEaItqybRcwNIUC",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Ashen_B7_10x10",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B7_10x10.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "YRwlxdpKSc0MmCCt",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "tjt9CsHMxga6GgUW",
+ "placeableId": "acEaItqybRcwNIUC",
+ "filterInternalId": "YRwlxdpKSc0MmCCt",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "u5iNG1DuhprOslYZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1700000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.diJLh88EHCfxCNzM",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B7_10x10.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B7_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 15419,
+ "y": 8130,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 67,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "I7twCNCJTZ1WdvXB",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B7_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "u5iNG1DuhprOslYZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15638,
+ 8313,
+ 15575,
+ 8375
+ ],
+ "_id": "rEBVti5msVmiKpsV",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "u5iNG1DuhprOslYZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15575,
+ 8375,
+ 15625,
+ 8438
+ ],
+ "_id": "tzxAtgj3ibSSApU2",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "u5iNG1DuhprOslYZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15625,
+ 8438,
+ 15700,
+ 8413
+ ],
+ "_id": "FcqKaPEdTZitslAj",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "u5iNG1DuhprOslYZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15700,
+ 8413,
+ 15713,
+ 8350
+ ],
+ "_id": "qi8OqvPztgy6S13i",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "u5iNG1DuhprOslYZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15713,
+ 8350,
+ 15638,
+ 8313
+ ],
+ "_id": "1z3IY4SiKGGiPN3F",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "u5iNG1DuhprOslYZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!diJLh88EHCfxCNzM"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Ashen_B8_10x11_90gDCbKXqfJeJOIS.json b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B8_10x11_90gDCbKXqfJeJOIS.json
new file mode 100644
index 0000000..294db29
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B8_10x11_90gDCbKXqfJeJOIS.json
@@ -0,0 +1,433 @@
+{
+ "_id": "90gDCbKXqfJeJOIS",
+ "name": "Bare_Tree_Ashen_B8_10x11",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "90gDCbKXqfJeJOIS",
+ "name": "Bare_Tree_Ashen_B8_10x11",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B8_10x11.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 16600,
+ "y": 7500,
+ "width": 2000,
+ "height": 2200,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "5EWgxpJOk3XkV78c",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Ashen_B8_10x11",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B8_10x11.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "1zKCAVQHmdKIdZxI",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "FsbcfeX3qAa9EXlQ",
+ "placeableId": "5EWgxpJOk3XkV78c",
+ "filterInternalId": "1zKCAVQHmdKIdZxI",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "XmBOydV22j1X4ZPX",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1800000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.90gDCbKXqfJeJOIS",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B8_10x11.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 17257,
+ "y": 8268,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 68,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "UzTi4yz2Gj0cFWW2",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B1_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "XmBOydV22j1X4ZPX",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17450,
+ 8413,
+ 17388,
+ 8475
+ ],
+ "_id": "Q63hAoBV1OtXm7ys",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "XmBOydV22j1X4ZPX",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17388,
+ 8475,
+ 17438,
+ 8563
+ ],
+ "_id": "tMOdXpflnfZsG5CG",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "XmBOydV22j1X4ZPX",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17438,
+ 8563,
+ 17513,
+ 8538
+ ],
+ "_id": "MRUU65M1qBU6wC9T",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "XmBOydV22j1X4ZPX",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17513,
+ 8538,
+ 17550,
+ 8488
+ ],
+ "_id": "GAkf3uYprh3tEwmr",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "XmBOydV22j1X4ZPX",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17550,
+ 8488,
+ 17450,
+ 8413
+ ],
+ "_id": "PIbTUO13nbS91jjh",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "XmBOydV22j1X4ZPX",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!90gDCbKXqfJeJOIS"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Ashen_B9_9x9_3mJFOHq4SspPKKP8.json b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B9_9x9_3mJFOHq4SspPKKP8.json
new file mode 100644
index 0000000..2fc693f
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Ashen_B9_9x9_3mJFOHq4SspPKKP8.json
@@ -0,0 +1,397 @@
+{
+ "_id": "3mJFOHq4SspPKKP8",
+ "name": "Bare_Tree_Ashen_B9_9x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "3mJFOHq4SspPKKP8",
+ "name": "Bare_Tree_Ashen_B9_9x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B9_9x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 18600,
+ "y": 7500,
+ "width": 1800,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "JgDzqtZJJQWyv3ve",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Ashen_B9_9x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "levels": {
+ "rangeTop": null,
+ "showIfAbove": false,
+ "showAboveRange": null,
+ "noCollision": false,
+ "noFogHide": false,
+ "isBasement": false,
+ "allWallBlockSight": true
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B9_9x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "SJwiy9C1VUYrOXyc",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "Z7cGEVb3veCkrERD",
+ "placeableId": "JgDzqtZJJQWyv3ve",
+ "filterInternalId": "SJwiy9C1VUYrOXyc",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "t3ngxR4c1AXbiJtl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1900000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.3mJFOHq4SspPKKP8",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B9_9x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B5_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 19353,
+ "y": 8217,
+ "width": 381,
+ "height": 340,
+ "elevation": 0,
+ "sort": 69,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "fRMeyqoQTKV5UScf",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Ashen_B5_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "t3ngxR4c1AXbiJtl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19550,
+ 8350,
+ 19488,
+ 8413
+ ],
+ "_id": "0zvzYLSotgSecpYa",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "t3ngxR4c1AXbiJtl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19488,
+ 8413,
+ 19550,
+ 8475
+ ],
+ "_id": "bdeZcdC0a31ipKoF",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "t3ngxR4c1AXbiJtl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19550,
+ 8475,
+ 19613,
+ 8413
+ ],
+ "_id": "w8E20NFjhrkUHDHe",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "t3ngxR4c1AXbiJtl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19613,
+ 8413,
+ 19550,
+ 8350
+ ],
+ "_id": "YkivAHNxr2UbE1dy",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "t3ngxR4c1AXbiJtl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!3mJFOHq4SspPKKP8"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Dark_B10_8x9_xFknz35l1hk1m0CP.json b/packsrc/mass-edit-presets/Bare_Tree_Dark_B10_8x9_xFknz35l1hk1m0CP.json
new file mode 100644
index 0000000..7e366d6
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Dark_B10_8x9_xFknz35l1hk1m0CP.json
@@ -0,0 +1,433 @@
+{
+ "_id": "xFknz35l1hk1m0CP",
+ "name": "Bare_Tree_Dark_B10_8x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "xFknz35l1hk1m0CP",
+ "name": "Bare_Tree_Dark_B10_8x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B10_8x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 4800,
+ "width": 1600,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "bS9Ugk0txv6dCObg",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Dark_B10_8x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B10_8x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "ua9dnPk397cqGpq7",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "vA8iSwLmRZHtrZMf",
+ "placeableId": "bS9Ugk0txv6dCObg",
+ "filterInternalId": "ua9dnPk397cqGpq7",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "73UD7Sd6OhRD7BDl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1000000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.xFknz35l1hk1m0CP",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B10_8x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4464,
+ "y": 5479,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 59,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "AHGpPqKXc2mat8nQ",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B1_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "73UD7Sd6OhRD7BDl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4625,
+ 5650,
+ 4713,
+ 5638
+ ],
+ "_id": "9ojI9uwkIXJNkHub",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "73UD7Sd6OhRD7BDl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4713,
+ 5638,
+ 4750,
+ 5750
+ ],
+ "_id": "TG8Cj7Kdw62IrKqJ",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "73UD7Sd6OhRD7BDl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4750,
+ 5750,
+ 4638,
+ 5788
+ ],
+ "_id": "WJUFyRHAldMkypVc",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "73UD7Sd6OhRD7BDl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4638,
+ 5788,
+ 4588,
+ 5725
+ ],
+ "_id": "GVANdKDnxHz3Z1qu",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "73UD7Sd6OhRD7BDl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4588,
+ 5725,
+ 4625,
+ 5650
+ ],
+ "_id": "PBrVX4iiD32OXQ8N",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "73UD7Sd6OhRD7BDl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "dark",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!xFknz35l1hk1m0CP"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Dark_B1_8x9_CQij73v9550W57iY.json b/packsrc/mass-edit-presets/Bare_Tree_Dark_B1_8x9_CQij73v9550W57iY.json
new file mode 100644
index 0000000..a18347f
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Dark_B1_8x9_CQij73v9550W57iY.json
@@ -0,0 +1,397 @@
+{
+ "_id": "CQij73v9550W57iY",
+ "name": "Bare_Tree_Dark_B1_8x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "CQij73v9550W57iY",
+ "name": "Bare_Tree_Dark_B1_8x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B1_8x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 3000,
+ "width": 1600,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "XY8LTAx3qYVrjSth",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Dark_B1_8x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B1_8x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "N8Jw5fM6RlGuh5Fh",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "gjus9zuImXRoIwyD",
+ "placeableId": "XY8LTAx3qYVrjSth",
+ "filterInternalId": "N8Jw5fM6RlGuh5Fh",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3RJDVcpTOUQvHMd5",
+ "type": 0
+ }
+ ]
+ },
+ "levels": {
+ "rangeTop": null,
+ "showIfAbove": false,
+ "showAboveRange": null,
+ "noCollision": false,
+ "noFogHide": false,
+ "isBasement": false,
+ "allWallBlockSight": true
+ }
+ }
+ }
+ ],
+ "sort": 100000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.CQij73v9550W57iY",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B1_8x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4622,
+ "y": 3825,
+ "width": 380,
+ "height": 346,
+ "elevation": 0,
+ "sort": 50,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "jMyJLZ52pm5IVitg",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B1_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3RJDVcpTOUQvHMd5",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4788,
+ 3888,
+ 4875,
+ 3938
+ ],
+ "_id": "LXsIAj3MYKPvOBIP",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3RJDVcpTOUQvHMd5",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4875,
+ 3938,
+ 4850,
+ 4013
+ ],
+ "_id": "WJAsU59to4iZOFoI",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3RJDVcpTOUQvHMd5",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4838,
+ 4013,
+ 4738,
+ 3988
+ ],
+ "_id": "xS1HewWq6dsBCP2U",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3RJDVcpTOUQvHMd5",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4738,
+ 3988,
+ 4788,
+ 3888
+ ],
+ "_id": "1fvsxmSlBQjhODgi",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3RJDVcpTOUQvHMd5",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "dark",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!CQij73v9550W57iY"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Dark_B2_11x10_3cMgbQLSDJUhA9PZ.json b/packsrc/mass-edit-presets/Bare_Tree_Dark_B2_11x10_3cMgbQLSDJUhA9PZ.json
new file mode 100644
index 0000000..cd91a63
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Dark_B2_11x10_3cMgbQLSDJUhA9PZ.json
@@ -0,0 +1,382 @@
+{
+ "_id": "3cMgbQLSDJUhA9PZ",
+ "name": "Bare_Tree_Dark_B2_11x10",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "3cMgbQLSDJUhA9PZ",
+ "name": "Bare_Tree_Dark_B2_11x10",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B2_11x10.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5800,
+ "y": 3000,
+ "width": 2200,
+ "height": 2000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "UwzUNCkFUk9Fojn6",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Dark_B2_11x10",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B2_11x10.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "UXfUIsnxJBov0BHf",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "qRkWvtVJkVzci9G7",
+ "placeableId": "UwzUNCkFUk9Fojn6",
+ "filterInternalId": "UXfUIsnxJBov0BHf",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TimzOgiq1s3TTSdG",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 200000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.3cMgbQLSDJUhA9PZ",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B2_11x10.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6600,
+ "y": 3700,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 51,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "eM0p2uF6UBW2kIbJ",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B2_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TimzOgiq1s3TTSdG",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6788,
+ 3913,
+ 6913,
+ 3913
+ ],
+ "_id": "KJrWXnPFVPft6M91",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TimzOgiq1s3TTSdG",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6913,
+ 3913,
+ 6925,
+ 4038
+ ],
+ "_id": "0vTPfM0VfYFvUcpy",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TimzOgiq1s3TTSdG",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6925,
+ 4038,
+ 6788,
+ 4038
+ ],
+ "_id": "EJD0La9jlcssJAho",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TimzOgiq1s3TTSdG",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6788,
+ 4038,
+ 6788,
+ 3913
+ ],
+ "_id": "8bzYPLFl9eDjVzaC",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TimzOgiq1s3TTSdG",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!3cMgbQLSDJUhA9PZ"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Dark_B3_9x8_f5oLtF2UIYob6OoM.json b/packsrc/mass-edit-presets/Bare_Tree_Dark_B3_9x8_f5oLtF2UIYob6OoM.json
new file mode 100644
index 0000000..2ea4a82
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Dark_B3_9x8_f5oLtF2UIYob6OoM.json
@@ -0,0 +1,433 @@
+{
+ "_id": "f5oLtF2UIYob6OoM",
+ "name": "Bare_Tree_Dark_B3_9x8",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "f5oLtF2UIYob6OoM",
+ "name": "Bare_Tree_Dark_B3_9x8",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B3_9x8.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 8000,
+ "y": 3000,
+ "width": 1800,
+ "height": 1600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "oNLnI0dFkAANyvRi",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Dark_B3_9x8",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B3_9x8.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "Uz84uMX6bnNHDW6p",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "XFU82xqN6w4S62lz",
+ "placeableId": "oNLnI0dFkAANyvRi",
+ "filterInternalId": "Uz84uMX6bnNHDW6p",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TPsGyeymblOJJUsJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 300000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.f5oLtF2UIYob6OoM",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B3_9x8.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B3_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 8367,
+ "y": 3620,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 52,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "5U3pqVoXEzqjBttN",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B3_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TPsGyeymblOJJUsJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8538,
+ 3825,
+ 8600,
+ 3775
+ ],
+ "_id": "Go1lWeTPHt1GZDv5",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TPsGyeymblOJJUsJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8600,
+ 3775,
+ 8675,
+ 3825
+ ],
+ "_id": "ozDTGfR7v9N9RWsa",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TPsGyeymblOJJUsJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8675,
+ 3825,
+ 8663,
+ 3913
+ ],
+ "_id": "JRXePSl36wFISBD6",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TPsGyeymblOJJUsJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8663,
+ 3913,
+ 8563,
+ 3913
+ ],
+ "_id": "7zhXOYh8Kpo8OJg6",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TPsGyeymblOJJUsJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8563,
+ 3913,
+ 8538,
+ 3825
+ ],
+ "_id": "QpNQtRKDlEgN41mA",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TPsGyeymblOJJUsJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "dark",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!f5oLtF2UIYob6OoM"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Dark_B4_8x9_62baVbkoegs3p3mU.json b/packsrc/mass-edit-presets/Bare_Tree_Dark_B4_8x9_62baVbkoegs3p3mU.json
new file mode 100644
index 0000000..bc3c82e
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Dark_B4_8x9_62baVbkoegs3p3mU.json
@@ -0,0 +1,433 @@
+{
+ "_id": "62baVbkoegs3p3mU",
+ "name": "Bare_Tree_Dark_B4_8x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "62baVbkoegs3p3mU",
+ "name": "Bare_Tree_Dark_B4_8x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B4_8x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 9900,
+ "y": 3000,
+ "width": 1600,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "AAgUwzjp8B15PQDw",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Dark_B4_8x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B4_8x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "BzOoh3WcbLPM50r2",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "nc7cIf1WwFjpFcRK",
+ "placeableId": "AAgUwzjp8B15PQDw",
+ "filterInternalId": "BzOoh3WcbLPM50r2",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "87p1tCecJZpUAJIl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 400000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.62baVbkoegs3p3mU",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B4_8x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B4_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 10482,
+ "y": 3657,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 53,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "spYV9WbkExd7VnHu",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B4_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "87p1tCecJZpUAJIl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 10713,
+ 3813,
+ 10625,
+ 3888
+ ],
+ "_id": "CsA64m3eVsbLf25N",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "87p1tCecJZpUAJIl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 10625,
+ 3888,
+ 10688,
+ 3950
+ ],
+ "_id": "DkK8SJNUqNMdZesI",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "87p1tCecJZpUAJIl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 10688,
+ 3950,
+ 10775,
+ 3938
+ ],
+ "_id": "PYfqJe1jYNa5VEZN",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "87p1tCecJZpUAJIl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 10775,
+ 3938,
+ 10788,
+ 3863
+ ],
+ "_id": "J9M0XruKT4IxL1P9",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "87p1tCecJZpUAJIl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 10788,
+ 3863,
+ 10713,
+ 3813
+ ],
+ "_id": "4KvCmy0r1KGTfZBS",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "87p1tCecJZpUAJIl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "dark",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!62baVbkoegs3p3mU"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Dark_B5_9x8_kLyow4BBJxT4bai3.json b/packsrc/mass-edit-presets/Bare_Tree_Dark_B5_9x8_kLyow4BBJxT4bai3.json
new file mode 100644
index 0000000..a375093
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Dark_B5_9x8_kLyow4BBJxT4bai3.json
@@ -0,0 +1,433 @@
+{
+ "_id": "kLyow4BBJxT4bai3",
+ "name": "Bare_Tree_Dark_B5_9x8",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "kLyow4BBJxT4bai3",
+ "name": "Bare_Tree_Dark_B5_9x8",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B5_9x8.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 11500,
+ "y": 3000,
+ "width": 1800,
+ "height": 1600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "cMFPIghkyuaZOVfh",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Dark_B5_9x8",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B5_9x8.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "zuqKwgUDsGoVG20O",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "DVZc0UsB1FbBsAUu",
+ "placeableId": "cMFPIghkyuaZOVfh",
+ "filterInternalId": "zuqKwgUDsGoVG20O",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2ouOqLdqE7kn4uCs",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 500000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.kLyow4BBJxT4bai3",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B5_9x8.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B5_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 12101,
+ "y": 3670,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 54,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "CgUlf4c7TrhRK6WK",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B5_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2ouOqLdqE7kn4uCs",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12325,
+ 3825,
+ 12275,
+ 3888
+ ],
+ "_id": "Jso5WdZUj1McfeUO",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2ouOqLdqE7kn4uCs",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12275,
+ 3888,
+ 12313,
+ 3963
+ ],
+ "_id": "W66gFVHdOCs5erv2",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2ouOqLdqE7kn4uCs",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12313,
+ 3963,
+ 12400,
+ 3963
+ ],
+ "_id": "TmCHdqlfIiUC1Qwr",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2ouOqLdqE7kn4uCs",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12400,
+ 3963,
+ 12400,
+ 3863
+ ],
+ "_id": "WJQbhwyYT9UDRIUU",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2ouOqLdqE7kn4uCs",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12400,
+ 3863,
+ 12325,
+ 3825
+ ],
+ "_id": "kjGnsNgZiqRmeKjs",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2ouOqLdqE7kn4uCs",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "dark",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!kLyow4BBJxT4bai3"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Dark_B6_8x8_gWxwZpmNjg7wouX6.json b/packsrc/mass-edit-presets/Bare_Tree_Dark_B6_8x8_gWxwZpmNjg7wouX6.json
new file mode 100644
index 0000000..22fbb8e
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Dark_B6_8x8_gWxwZpmNjg7wouX6.json
@@ -0,0 +1,141 @@
+{
+ "_id": "gWxwZpmNjg7wouX6",
+ "name": "Bare_Tree_Dark_B6_8x8",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "gWxwZpmNjg7wouX6",
+ "name": "Bare_Tree_Dark_B6_8x8",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B6_8x8.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 13200,
+ "y": 3000,
+ "width": 1600,
+ "height": 1600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "EwqVtBYCIZP8sGMg",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Dark_B6_8x8",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B6_8x8.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "PaSn2nd8x8Fgk7Qs",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "MsBAosU5laE92rIg",
+ "placeableId": "EwqVtBYCIZP8sGMg",
+ "filterInternalId": "PaSn2nd8x8Fgk7Qs",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "rDAlZ822maw7Rh3X",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 600000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.gWxwZpmNjg7wouX6",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B6_8x8.webp",
+ "gridSize": 200,
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "dark",
+ "wood"
+ ]
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!gWxwZpmNjg7wouX6"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Dark_B7_10x10_UU8sC0zLfRgeUIzb.json b/packsrc/mass-edit-presets/Bare_Tree_Dark_B7_10x10_UU8sC0zLfRgeUIzb.json
new file mode 100644
index 0000000..446da26
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Dark_B7_10x10_UU8sC0zLfRgeUIzb.json
@@ -0,0 +1,433 @@
+{
+ "_id": "UU8sC0zLfRgeUIzb",
+ "name": "Bare_Tree_Dark_B7_10x10",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "UU8sC0zLfRgeUIzb",
+ "name": "Bare_Tree_Dark_B7_10x10",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B7_10x10.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 14900,
+ "y": 3000,
+ "width": 2000,
+ "height": 2000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "KRCuKSHXIGUUIVt9",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Dark_B7_10x10",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B7_10x10.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "Wmn7ISA2fcGW8HaS",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "JntLKHsqXGuGkRSg",
+ "placeableId": "KRCuKSHXIGUUIVt9",
+ "filterInternalId": "Wmn7ISA2fcGW8HaS",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dAhVHTxca0KfrkPb",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 700000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.UU8sC0zLfRgeUIzb",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B7_10x10.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B7_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 15698,
+ "y": 3599,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 56,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "f60kur83CTq91AKf",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B7_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dAhVHTxca0KfrkPb",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15938,
+ 3775,
+ 15875,
+ 3875
+ ],
+ "_id": "lv8MrvH41bH467Oa",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dAhVHTxca0KfrkPb",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15875,
+ 3875,
+ 15938,
+ 3925
+ ],
+ "_id": "XydX1skcgvf0mY0i",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dAhVHTxca0KfrkPb",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15938,
+ 3925,
+ 16025,
+ 3913
+ ],
+ "_id": "vGrejN0iNj5f8RRl",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dAhVHTxca0KfrkPb",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 16025,
+ 3913,
+ 16025,
+ 3825
+ ],
+ "_id": "4EHb4b4azVFQdH5p",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dAhVHTxca0KfrkPb",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 16025,
+ 3825,
+ 15938,
+ 3775
+ ],
+ "_id": "9f8LMkljBCxlEpiR",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dAhVHTxca0KfrkPb",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "dark",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!UU8sC0zLfRgeUIzb"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Dark_B8_10x11_w4naaZQWylF6ywE7.json b/packsrc/mass-edit-presets/Bare_Tree_Dark_B8_10x11_w4naaZQWylF6ywE7.json
new file mode 100644
index 0000000..df82961
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Dark_B8_10x11_w4naaZQWylF6ywE7.json
@@ -0,0 +1,478 @@
+{
+ "_id": "w4naaZQWylF6ywE7",
+ "name": "Bare_Tree_Dark_B8_10x11",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "w4naaZQWylF6ywE7",
+ "name": "Bare_Tree_Dark_B8_10x11",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B8_10x11.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 16900,
+ "y": 3000,
+ "width": 2000,
+ "height": 2200,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "qudtJkpoZ8Crl0dq",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Dark_B8_10x11",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B8_10x11.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "Ed8mZ21ELPab43tB",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "I7mHUXvxgykC99aQ",
+ "placeableId": "qudtJkpoZ8Crl0dq",
+ "filterInternalId": "Ed8mZ21ELPab43tB",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "FqeZIJgnvtm2Oa0L",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 800000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.w4naaZQWylF6ywE7",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B8_10x11.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 17547,
+ "y": 3763,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 57,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "68spfhSnj0X5nvqX",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B1_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "FqeZIJgnvtm2Oa0L",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17738,
+ 3925,
+ 17688,
+ 3975
+ ],
+ "_id": "Jm7CnhHlUt9RnSFh",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "FqeZIJgnvtm2Oa0L",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17688,
+ 3975,
+ 17725,
+ 4063
+ ],
+ "_id": "BAfMvk0pf2U6xNCU",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "FqeZIJgnvtm2Oa0L",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17725,
+ 4063,
+ 17813,
+ 4050
+ ],
+ "_id": "qQcefFrQA9dMaWSh",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "FqeZIJgnvtm2Oa0L",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17813,
+ 4050,
+ 17850,
+ 3975
+ ],
+ "_id": "2vbbtSpOYX50tgR5",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "FqeZIJgnvtm2Oa0L",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17850,
+ 3975,
+ 17800,
+ 3913
+ ],
+ "_id": "kBEbbtxUsuZYoexg",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "FqeZIJgnvtm2Oa0L",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17800,
+ 3913,
+ 17738,
+ 3925
+ ],
+ "_id": "VcOcYZMYwJZ414Gi",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "FqeZIJgnvtm2Oa0L",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "dark",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!w4naaZQWylF6ywE7"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Dark_B9_9x9_Stt1NfzEAzbBToJN.json b/packsrc/mass-edit-presets/Bare_Tree_Dark_B9_9x9_Stt1NfzEAzbBToJN.json
new file mode 100644
index 0000000..5f5a631
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Dark_B9_9x9_Stt1NfzEAzbBToJN.json
@@ -0,0 +1,433 @@
+{
+ "_id": "Stt1NfzEAzbBToJN",
+ "name": "Bare_Tree_Dark_B9_9x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "Stt1NfzEAzbBToJN",
+ "name": "Bare_Tree_Dark_B9_9x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B9_9x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 18800,
+ "y": 3000,
+ "width": 1800,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "2gWHWMYrhHfFIF9P",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Dark_B9_9x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B9_9x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "W0Jwc8j1Mq59Y5rS",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "eIORN6q0mwF9cSkm",
+ "placeableId": "2gWHWMYrhHfFIF9P",
+ "filterInternalId": "W0Jwc8j1Mq59Y5rS",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uY8hmMi97XJGutWj",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 900000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.Stt1NfzEAzbBToJN",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B9_9x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 19523,
+ "y": 3666,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 58,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "uU4kpAlAJvkb0MDU",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B2_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uY8hmMi97XJGutWj",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19763,
+ 3863,
+ 19700,
+ 3875
+ ],
+ "_id": "Xn4nec5qBqCc92zB",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uY8hmMi97XJGutWj",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19700,
+ 3875,
+ 19688,
+ 3950
+ ],
+ "_id": "5mTDtopCgLViIkor",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uY8hmMi97XJGutWj",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19688,
+ 3950,
+ 19750,
+ 3975
+ ],
+ "_id": "0i3C1mG0qmFEbpuE",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uY8hmMi97XJGutWj",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19750,
+ 3975,
+ 19813,
+ 3938
+ ],
+ "_id": "afKTd6g0YBjTw3S5",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uY8hmMi97XJGutWj",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19813,
+ 3938,
+ 19763,
+ 3863
+ ],
+ "_id": "VK99oe0gNGQQY8YU",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uY8hmMi97XJGutWj",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "dark",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!Stt1NfzEAzbBToJN"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Light_B10_8x9_CGYEktZcak7S96mk.json b/packsrc/mass-edit-presets/Bare_Tree_Light_B10_8x9_CGYEktZcak7S96mk.json
new file mode 100644
index 0000000..922e727
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Light_B10_8x9_CGYEktZcak7S96mk.json
@@ -0,0 +1,433 @@
+{
+ "_id": "CGYEktZcak7S96mk",
+ "name": "Bare_Tree_Light_B10_8x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "CGYEktZcak7S96mk",
+ "name": "Bare_Tree_Light_B10_8x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B10_8x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 13200,
+ "width": 1600,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "ZvDwF2BkMFgkndxi",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Light_B10_8x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B10_8x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "Ty91iDibEUhtp70E",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "MtD4imLWIAZCSVtV",
+ "placeableId": "ZvDwF2BkMFgkndxi",
+ "filterInternalId": "Ty91iDibEUhtp70E",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bOR0KtCGEpRxFS8Y",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 3000000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.CGYEktZcak7S96mk",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B10_8x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4476,
+ "y": 13874,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 71,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "QRD142osGW29BoYQ",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B1_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bOR0KtCGEpRxFS8Y",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4675,
+ 14025,
+ 4613,
+ 14075
+ ],
+ "_id": "iaUEyxaxJ5u7P5kK",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bOR0KtCGEpRxFS8Y",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4613,
+ 14075,
+ 4650,
+ 14163
+ ],
+ "_id": "0RHCKF9FNXhLrsdu",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bOR0KtCGEpRxFS8Y",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4650,
+ 14163,
+ 4750,
+ 14150
+ ],
+ "_id": "Ql6ez9hf7vlwa2qq",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bOR0KtCGEpRxFS8Y",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4750,
+ 14150,
+ 4763,
+ 14063
+ ],
+ "_id": "uGixNicURqeF4Q07",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bOR0KtCGEpRxFS8Y",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4763,
+ 14063,
+ 4675,
+ 14025
+ ],
+ "_id": "f8zvc7CHuFLZrE7M",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bOR0KtCGEpRxFS8Y",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!CGYEktZcak7S96mk"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Light_B1_9x9_77Dc7tb95qq5yVgE.json b/packsrc/mass-edit-presets/Bare_Tree_Light_B1_9x9_77Dc7tb95qq5yVgE.json
new file mode 100644
index 0000000..8cd2402
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Light_B1_9x9_77Dc7tb95qq5yVgE.json
@@ -0,0 +1,433 @@
+{
+ "_id": "77Dc7tb95qq5yVgE",
+ "name": "Bare_Tree_Light_B1_9x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "77Dc7tb95qq5yVgE",
+ "name": "Bare_Tree_Light_B1_9x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B1_9x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 11400,
+ "width": 1800,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Td7b2Gs6hjZAc7nh",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Light_B1_9x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B1_9x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "StNta7A3uDVrnMEb",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "NNnqQY0K9JdnGtmH",
+ "placeableId": "Td7b2Gs6hjZAc7nh",
+ "filterInternalId": "StNta7A3uDVrnMEb",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bdizBJaKqjQbtc9D",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2100000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.77Dc7tb95qq5yVgE",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B1_9x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4705,
+ "y": 12117,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 70,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "p4ODG4a0AtH5QaKe",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B1_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bdizBJaKqjQbtc9D",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4925,
+ 12263,
+ 4850,
+ 12338
+ ],
+ "_id": "O5yLWt3oipET7FU6",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bdizBJaKqjQbtc9D",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4850,
+ 12338,
+ 4900,
+ 12425
+ ],
+ "_id": "7yq48GE59Jy6DlvN",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bdizBJaKqjQbtc9D",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4900,
+ 12425,
+ 4975,
+ 12388
+ ],
+ "_id": "XR3vV9VDnR0wZimA",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bdizBJaKqjQbtc9D",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4975,
+ 12388,
+ 4988,
+ 12313
+ ],
+ "_id": "WlguEk769SVy9F8o",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bdizBJaKqjQbtc9D",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4988,
+ 12313,
+ 4925,
+ 12263
+ ],
+ "_id": "DQiSg65cn78g9mab",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "bdizBJaKqjQbtc9D",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!77Dc7tb95qq5yVgE"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Light_B2_11x11_6rWiBf3QuEzZ8JUt.json b/packsrc/mass-edit-presets/Bare_Tree_Light_B2_11x11_6rWiBf3QuEzZ8JUt.json
new file mode 100644
index 0000000..008770b
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Light_B2_11x11_6rWiBf3QuEzZ8JUt.json
@@ -0,0 +1,433 @@
+{
+ "_id": "6rWiBf3QuEzZ8JUt",
+ "name": "Bare_Tree_Light_B2_11x11",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "6rWiBf3QuEzZ8JUt",
+ "name": "Bare_Tree_Light_B2_11x11",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B2_11x11.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5800,
+ "y": 11400,
+ "width": 2200,
+ "height": 2200,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "JDo0r1K9Us9FoF2t",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Light_B2_11x11",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B2_11x11.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "4BQ5nxGs4EEgTCn4",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "isErPAkj0TVJbCrk",
+ "placeableId": "JDo0r1K9Us9FoF2t",
+ "filterInternalId": "4BQ5nxGs4EEgTCn4",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NYnjsfW9yPDoTAJC",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2200000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.6rWiBf3QuEzZ8JUt",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B2_11x11.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6600,
+ "y": 12300,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 72,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "HInPytiNOtzOgioU",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B2_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NYnjsfW9yPDoTAJC",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6813,
+ 12413,
+ 6763,
+ 12463
+ ],
+ "_id": "EMMZbEe07uQMJ9Zi",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NYnjsfW9yPDoTAJC",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6763,
+ 12463,
+ 6763,
+ 12538
+ ],
+ "_id": "lQTzpBO87WQkn37s",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NYnjsfW9yPDoTAJC",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6763,
+ 12538,
+ 6838,
+ 12575
+ ],
+ "_id": "wdn3HpAEjdNRwAc2",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NYnjsfW9yPDoTAJC",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6838,
+ 12575,
+ 6900,
+ 12500
+ ],
+ "_id": "OkMUUM6RoChCnVpO",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NYnjsfW9yPDoTAJC",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6900,
+ 12500,
+ 6813,
+ 12413
+ ],
+ "_id": "iXTkyFUMCPQE3uC5",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NYnjsfW9yPDoTAJC",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!6rWiBf3QuEzZ8JUt"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Light_B3_9x9_k4IG8QwgqS0IADs3.json b/packsrc/mass-edit-presets/Bare_Tree_Light_B3_9x9_k4IG8QwgqS0IADs3.json
new file mode 100644
index 0000000..9644303
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Light_B3_9x9_k4IG8QwgqS0IADs3.json
@@ -0,0 +1,388 @@
+{
+ "_id": "k4IG8QwgqS0IADs3",
+ "name": "Bare_Tree_Light_B3_9x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "k4IG8QwgqS0IADs3",
+ "name": "Bare_Tree_Light_B3_9x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B3_9x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 8000,
+ "y": 11400,
+ "width": 1800,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "4LlLj9oRtdGV8bz7",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Light_B3_9x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B3_9x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "iSvpb6eJbFDsVWwB",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "rbGcOL7RZR63loaM",
+ "placeableId": "4LlLj9oRtdGV8bz7",
+ "filterInternalId": "iSvpb6eJbFDsVWwB",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aY6hvElr1PXMXOE7",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2300000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.k4IG8QwgqS0IADs3",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B3_9x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B3_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 8371,
+ "y": 12134,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 73,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "EeCe6HuR7GLvP2KJ",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B3_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aY6hvElr1PXMXOE7",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8600,
+ 12263,
+ 8525,
+ 12325
+ ],
+ "_id": "Ivn2SqMLxtbLYDGi",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aY6hvElr1PXMXOE7",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8525,
+ 12325,
+ 8588,
+ 12425
+ ],
+ "_id": "oPY68pYGR4XEvGNA",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aY6hvElr1PXMXOE7",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8588,
+ 12425,
+ 8675,
+ 12363
+ ],
+ "_id": "JOjRl8wkxJrpUcze",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aY6hvElr1PXMXOE7",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8675,
+ 12363,
+ 8600,
+ 12263
+ ],
+ "_id": "UBdSIT22OkrD29MI",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aY6hvElr1PXMXOE7",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!k4IG8QwgqS0IADs3"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Light_B4_8x9_dtJ9oxGrlmVr3aos.json b/packsrc/mass-edit-presets/Bare_Tree_Light_B4_8x9_dtJ9oxGrlmVr3aos.json
new file mode 100644
index 0000000..bdfac27
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Light_B4_8x9_dtJ9oxGrlmVr3aos.json
@@ -0,0 +1,433 @@
+{
+ "_id": "dtJ9oxGrlmVr3aos",
+ "name": "Bare_Tree_Light_B4_8x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "dtJ9oxGrlmVr3aos",
+ "name": "Bare_Tree_Light_B4_8x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B4_8x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 9800,
+ "y": 11400,
+ "width": 1600,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "xOeNlIYagZvM7mS6",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Light_B4_8x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B4_8x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "G7gVJgKpyTRzAyLb",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "NPZFrXKKFLEGpqJZ",
+ "placeableId": "xOeNlIYagZvM7mS6",
+ "filterInternalId": "G7gVJgKpyTRzAyLb",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "C2wO9j33nyGOk2FY",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2400000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.dtJ9oxGrlmVr3aos",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B4_8x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B4_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 10339,
+ "y": 12022,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 74,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "TXEBn4nnqid6wVsg",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B4_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "C2wO9j33nyGOk2FY",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 10600,
+ 12138,
+ 10513,
+ 12213
+ ],
+ "_id": "T6N0FGBsxeF5r49H",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "C2wO9j33nyGOk2FY",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 10513,
+ 12213,
+ 10538,
+ 12300
+ ],
+ "_id": "N5tdB6glfCbV302Y",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "C2wO9j33nyGOk2FY",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 10538,
+ 12300,
+ 10638,
+ 12275
+ ],
+ "_id": "90V6ogR55bfnvsfL",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "C2wO9j33nyGOk2FY",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 10638,
+ 12275,
+ 10663,
+ 12200
+ ],
+ "_id": "p3wexFkcIyU0Psnp",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "C2wO9j33nyGOk2FY",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 10663,
+ 12200,
+ 10600,
+ 12138
+ ],
+ "_id": "QvuJWOWG0hhzxZyP",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "C2wO9j33nyGOk2FY",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!dtJ9oxGrlmVr3aos"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Light_B5_9x8_BAZM5h6QEQLrUFfd.json b/packsrc/mass-edit-presets/Bare_Tree_Light_B5_9x8_BAZM5h6QEQLrUFfd.json
new file mode 100644
index 0000000..f71c597
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Light_B5_9x8_BAZM5h6QEQLrUFfd.json
@@ -0,0 +1,433 @@
+{
+ "_id": "BAZM5h6QEQLrUFfd",
+ "name": "Bare_Tree_Light_B5_9x8",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "BAZM5h6QEQLrUFfd",
+ "name": "Bare_Tree_Light_B5_9x8",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B5_9x8.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 11400,
+ "y": 11400,
+ "width": 1800,
+ "height": 1600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "g2o8K60rMeZx9wvu",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Light_B5_9x8",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B5_9x8.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "4NmsuQq4Hz7JEJQT",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "zIORVZuS5g5emaEc",
+ "placeableId": "g2o8K60rMeZx9wvu",
+ "filterInternalId": "4NmsuQq4Hz7JEJQT",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "F2cS3CvOKmS7nCNy",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2500000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.BAZM5h6QEQLrUFfd",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B5_9x8.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B5_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 11994,
+ "y": 12086,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 75,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "vO2H9d0Qi87B6s7U",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B5_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "F2cS3CvOKmS7nCNy",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12225,
+ 12213,
+ 12150,
+ 12288
+ ],
+ "_id": "qFTQtIRbbZvH7Gjy",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "F2cS3CvOKmS7nCNy",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12150,
+ 12288,
+ 12188,
+ 12375
+ ],
+ "_id": "LTEjj3EIetuMMTEu",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "F2cS3CvOKmS7nCNy",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12188,
+ 12375,
+ 12288,
+ 12363
+ ],
+ "_id": "na6tBLj64L24f2c3",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "F2cS3CvOKmS7nCNy",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12288,
+ 12363,
+ 12313,
+ 12275
+ ],
+ "_id": "ILRIrygStPkdiAeV",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "F2cS3CvOKmS7nCNy",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 12313,
+ 12275,
+ 12225,
+ 12213
+ ],
+ "_id": "7TLveY6ZyWp5JvMO",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "F2cS3CvOKmS7nCNy",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!BAZM5h6QEQLrUFfd"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Light_B6_8x8_zRxciV5dCcXasDub.json b/packsrc/mass-edit-presets/Bare_Tree_Light_B6_8x8_zRxciV5dCcXasDub.json
new file mode 100644
index 0000000..fa42d8b
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Light_B6_8x8_zRxciV5dCcXasDub.json
@@ -0,0 +1,433 @@
+{
+ "_id": "zRxciV5dCcXasDub",
+ "name": "Bare_Tree_Light_B6_8x8",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "zRxciV5dCcXasDub",
+ "name": "Bare_Tree_Light_B6_8x8",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B6_8x8.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 13200,
+ "y": 11400,
+ "width": 1600,
+ "height": 1600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "47O6syUccj5St7tU",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Light_B6_8x8",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B6_8x8.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "oUjSeetHpnAw2gxh",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "81V99oGJFuqLuFZf",
+ "placeableId": "47O6syUccj5St7tU",
+ "filterInternalId": "oUjSeetHpnAw2gxh",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aW4a83Y0HJAYCIDw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2600000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.zRxciV5dCcXasDub",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B6_8x8.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B5_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 13800,
+ "y": 11900,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 76,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "6LosYz4VplP0dGiT",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B5_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aW4a83Y0HJAYCIDw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 14025,
+ 12025,
+ 13963,
+ 12088
+ ],
+ "_id": "p170xolfeh6RRGXO",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aW4a83Y0HJAYCIDw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 13963,
+ 12088,
+ 14000,
+ 12175
+ ],
+ "_id": "dmkJWkoLs6t6y4YF",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aW4a83Y0HJAYCIDw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 14000,
+ 12175,
+ 14113,
+ 12175
+ ],
+ "_id": "BOMzK3oIMOj0mdCW",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aW4a83Y0HJAYCIDw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 14113,
+ 12175,
+ 14138,
+ 12088
+ ],
+ "_id": "CRYIZr7y3hoGaVVK",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aW4a83Y0HJAYCIDw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 14138,
+ 12088,
+ 14025,
+ 12025
+ ],
+ "_id": "0cNbgDiUrDRexwiy",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "aW4a83Y0HJAYCIDw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!zRxciV5dCcXasDub"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Light_B7_10x10_9vT4XFgn3EwvYhAv.json b/packsrc/mass-edit-presets/Bare_Tree_Light_B7_10x10_9vT4XFgn3EwvYhAv.json
new file mode 100644
index 0000000..fb93df6
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Light_B7_10x10_9vT4XFgn3EwvYhAv.json
@@ -0,0 +1,388 @@
+{
+ "_id": "9vT4XFgn3EwvYhAv",
+ "name": "Bare_Tree_Light_B7_10x10",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "9vT4XFgn3EwvYhAv",
+ "name": "Bare_Tree_Light_B7_10x10",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B7_10x10.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 14800,
+ "y": 11400,
+ "width": 2000,
+ "height": 2000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "4ckJL61FAT5EDLPK",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Light_B7_10x10",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B7_10x10.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "B40mljX07QtsfNs6",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "AL8QsmX962oHazRT",
+ "placeableId": "4ckJL61FAT5EDLPK",
+ "filterInternalId": "B40mljX07QtsfNs6",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NZza8Vc8IQgno3be",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2700000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.9vT4XFgn3EwvYhAv",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B7_10x10.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B7_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 15600,
+ "y": 12000,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 77,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Dze6DX6IyIF2Cg62",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B7_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NZza8Vc8IQgno3be",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15850,
+ 12200,
+ 15775,
+ 12250
+ ],
+ "_id": "AKkJU5jhgP5SetOp",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NZza8Vc8IQgno3be",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15775,
+ 12250,
+ 15825,
+ 12325
+ ],
+ "_id": "sVUp71WhGJ8k4Ldv",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NZza8Vc8IQgno3be",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15825,
+ 12325,
+ 15925,
+ 12288
+ ],
+ "_id": "6jjE4KJ3KKlhlwaQ",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NZza8Vc8IQgno3be",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 15925,
+ 12288,
+ 15850,
+ 12200
+ ],
+ "_id": "ZWnbriX3lY0o0e68",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "NZza8Vc8IQgno3be",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!9vT4XFgn3EwvYhAv"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Light_B8_10x11_EyIn7kuosYsNfCw0.json b/packsrc/mass-edit-presets/Bare_Tree_Light_B8_10x11_EyIn7kuosYsNfCw0.json
new file mode 100644
index 0000000..9330eff
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Light_B8_10x11_EyIn7kuosYsNfCw0.json
@@ -0,0 +1,388 @@
+{
+ "_id": "EyIn7kuosYsNfCw0",
+ "name": "Bare_Tree_Light_B8_10x11",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "EyIn7kuosYsNfCw0",
+ "name": "Bare_Tree_Light_B8_10x11",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B8_10x11.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 16800,
+ "y": 11400,
+ "width": 2000,
+ "height": 2200,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "OeVzh59B5uueBBsI",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Light_B8_10x11",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B8_10x11.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "gwVLLuatoYUpb11q",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "PWCecNceSU5wShWg",
+ "placeableId": "OeVzh59B5uueBBsI",
+ "filterInternalId": "gwVLLuatoYUpb11q",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7DHOCy7D7I6Sje5Q",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2800000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.EyIn7kuosYsNfCw0",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B8_10x11.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 17477,
+ "y": 12164,
+ "width": 457,
+ "height": 457,
+ "elevation": 0,
+ "sort": 78,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "1bgrsvT2Ur9DRNHm",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B1_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7DHOCy7D7I6Sje5Q",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17675,
+ 12338,
+ 17600,
+ 12363
+ ],
+ "_id": "scCiqqtHzLlqM7up",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7DHOCy7D7I6Sje5Q",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17600,
+ 12363,
+ 17625,
+ 12475
+ ],
+ "_id": "MEkVvk6JyMFTtIHf",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7DHOCy7D7I6Sje5Q",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17625,
+ 12475,
+ 17738,
+ 12450
+ ],
+ "_id": "iltmBVZLeDgbbZwd",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7DHOCy7D7I6Sje5Q",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 17738,
+ 12450,
+ 17675,
+ 12338
+ ],
+ "_id": "lfBhZfEPZmMXkWLg",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7DHOCy7D7I6Sje5Q",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!EyIn7kuosYsNfCw0"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Tree_Light_B9_9x9_wqUfEQRgOaMIDCry.json b/packsrc/mass-edit-presets/Bare_Tree_Light_B9_9x9_wqUfEQRgOaMIDCry.json
new file mode 100644
index 0000000..b9c1748
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Tree_Light_B9_9x9_wqUfEQRgOaMIDCry.json
@@ -0,0 +1,388 @@
+{
+ "_id": "wqUfEQRgOaMIDCry",
+ "name": "Bare_Tree_Light_B9_9x9",
+ "pages": [],
+ "folder": "FmHlSiVOI9gl0bpE",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "wqUfEQRgOaMIDCry",
+ "name": "Bare_Tree_Light_B9_9x9",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B9_9x9.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 18800,
+ "y": 11400,
+ "width": 1800,
+ "height": 1800,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "cSV5yHv2t7m3Eu03",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Bare_Tree_Light_B9_9x9",
+ "TreeOverhead",
+ "TreeBare"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B9_9x9.webp",
+ "altImages": []
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Shadow",
+ "tmFilterInternalId": "mu3pT1mr0GioUrwS",
+ "tmFilterType": "shadow",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "shadow",
+ "filterId": "MB - Tree Shadow",
+ "rotation": 45,
+ "blur": 0,
+ "quality": 5,
+ "distance": 100,
+ "alpha": 0.35,
+ "padding": 10,
+ "shadowOnly": false,
+ "color": 0,
+ "zOrder": 6000,
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "QUhIuXCLeXlANAFO",
+ "placeableId": "cSV5yHv2t7m3Eu03",
+ "filterInternalId": "mu3pT1mr0GioUrwS",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3OGSUkCzz5kc00Nw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2900000,
+ "folder": "FmHlSiVOI9gl0bpE",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.wqUfEQRgOaMIDCry",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B9_9x9.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 19570,
+ "y": 12091,
+ "width": 370,
+ "height": 357,
+ "elevation": 0,
+ "sort": 79,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "PSmqjLOmNm5I7U4L",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B2_4x4.webp",
+ "altImages": []
+ },
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3OGSUkCzz5kc00Nw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19788,
+ 12225,
+ 19725,
+ 12250
+ ],
+ "_id": "LS6K0QYQTb1vCkHU",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3OGSUkCzz5kc00Nw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19725,
+ 12250,
+ 19725,
+ 12325
+ ],
+ "_id": "HY8b7z1xU4kg3xwN",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3OGSUkCzz5kc00Nw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19725,
+ 12325,
+ 19800,
+ 12313
+ ],
+ "_id": "15SW2EFNeByvvP3r",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3OGSUkCzz5kc00Nw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 19800,
+ 12313,
+ 19788,
+ 12225
+ ],
+ "_id": "g89FpHiWxnzxwcsp",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "3OGSUkCzz5kc00Nw",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645043301,
+ "modifiedTime": 1750645043301,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!wqUfEQRgOaMIDCry"
+}
diff --git a/packsrc/mass-edit-presets/Bare_Trees_FmHlSiVOI9gl0bpE.json b/packsrc/mass-edit-presets/Bare_Trees_FmHlSiVOI9gl0bpE.json
new file mode 100644
index 0000000..7a00dd2
--- /dev/null
+++ b/packsrc/mass-edit-presets/Bare_Trees_FmHlSiVOI9gl0bpE.json
@@ -0,0 +1,28 @@
+{
+ "_id": "FmHlSiVOI9gl0bpE",
+ "name": "Bare Trees",
+ "color": null,
+ "sorting": "m",
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "types": [
+ "ALL",
+ "Tile"
+ ]
+ }
+ },
+ "type": "JournalEntry",
+ "description": "",
+ "sort": 0,
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "lastModifiedBy": null
+ },
+ "_key": "!folders!FmHlSiVOI9gl0bpE"
+}
diff --git a/packsrc/mass-edit-presets/Bullseye_Lantern__10___SB2PqEIxuChmGSci.json b/packsrc/mass-edit-presets/Bullseye_Lantern__10___SB2PqEIxuChmGSci.json
index b01c448..9bd89ff 100644
--- a/packsrc/mass-edit-presets/Bullseye_Lantern__10___SB2PqEIxuChmGSci.json
+++ b/packsrc/mass-edit-presets/Bullseye_Lantern__10___SB2PqEIxuChmGSci.json
@@ -71,12 +71,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1715452439337,
"modifiedTime": 1715452439337,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!SB2PqEIxuChmGSci"
}
diff --git a/packsrc/mass-edit-presets/Candle_NnqgzJI0ZpTJkZrM.json b/packsrc/mass-edit-presets/Candle_NnqgzJI0ZpTJkZrM.json
index 48e9270..5ccc798 100644
--- a/packsrc/mass-edit-presets/Candle_NnqgzJI0ZpTJkZrM.json
+++ b/packsrc/mass-edit-presets/Candle_NnqgzJI0ZpTJkZrM.json
@@ -66,12 +66,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1715452439352,
"modifiedTime": 1715452439352,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!NnqgzJI0ZpTJkZrM"
}
diff --git a/packsrc/mass-edit-presets/Create_Pit_Power_lykNH1CF1odY11vX.json b/packsrc/mass-edit-presets/Create_Pit_Power_lykNH1CF1odY11vX.json
index 5657199..633f532 100644
--- a/packsrc/mass-edit-presets/Create_Pit_Power_lykNH1CF1odY11vX.json
+++ b/packsrc/mass-edit-presets/Create_Pit_Power_lykNH1CF1odY11vX.json
@@ -65,12 +65,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.4.1",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1718679948685,
"modifiedTime": 1718679948685,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!lykNH1CF1odY11vX"
}
diff --git a/packsrc/mass-edit-presets/Darkness_Power_sq8jZhOvcfUiuLfu.json b/packsrc/mass-edit-presets/Darkness_Power_sq8jZhOvcfUiuLfu.json
index 8a9dae6..d763666 100644
--- a/packsrc/mass-edit-presets/Darkness_Power_sq8jZhOvcfUiuLfu.json
+++ b/packsrc/mass-edit-presets/Darkness_Power_sq8jZhOvcfUiuLfu.json
@@ -62,12 +62,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1715452719116,
"modifiedTime": 1715452719116,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!sq8jZhOvcfUiuLfu"
}
diff --git a/packsrc/mass-edit-presets/Flora_7Hhzf59jc7SqF5x4.json b/packsrc/mass-edit-presets/Flora_7Hhzf59jc7SqF5x4.json
new file mode 100644
index 0000000..3351318
--- /dev/null
+++ b/packsrc/mass-edit-presets/Flora_7Hhzf59jc7SqF5x4.json
@@ -0,0 +1,28 @@
+{
+ "_id": "7Hhzf59jc7SqF5x4",
+ "name": "Flora",
+ "color": null,
+ "sorting": "m",
+ "folder": "OsZiOH83adaCRaaR",
+ "flags": {
+ "multi-token-edit": {
+ "types": [
+ "ALL",
+ "Tile"
+ ]
+ }
+ },
+ "type": "JournalEntry",
+ "description": "",
+ "sort": 0,
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "lastModifiedBy": null
+ },
+ "_key": "!folders!7Hhzf59jc7SqF5x4"
+}
diff --git a/packsrc/mass-edit-presets/Lamp__3___k0KYgArWj2wOuuxQ.json b/packsrc/mass-edit-presets/Lamp__3___k0KYgArWj2wOuuxQ.json
index e61d50d..3bef5c0 100644
--- a/packsrc/mass-edit-presets/Lamp__3___k0KYgArWj2wOuuxQ.json
+++ b/packsrc/mass-edit-presets/Lamp__3___k0KYgArWj2wOuuxQ.json
@@ -71,12 +71,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1715452439367,
"modifiedTime": 1715452439367,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!k0KYgArWj2wOuuxQ"
}
diff --git a/packsrc/mass-edit-presets/Lantern__6___7KPV7r0XXQMlSGwA.json b/packsrc/mass-edit-presets/Lantern__6___7KPV7r0XXQMlSGwA.json
index eb6fc28..91d43dd 100644
--- a/packsrc/mass-edit-presets/Lantern__6___7KPV7r0XXQMlSGwA.json
+++ b/packsrc/mass-edit-presets/Lantern__6___7KPV7r0XXQMlSGwA.json
@@ -71,12 +71,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1715452439392,
"modifiedTime": 1715452439392,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!7KPV7r0XXQMlSGwA"
}
diff --git a/packsrc/mass-edit-presets/Light_Power_KQ23zZGZk40bhDz1.json b/packsrc/mass-edit-presets/Light_Power_KQ23zZGZk40bhDz1.json
index 68f4564..d088cd5 100644
--- a/packsrc/mass-edit-presets/Light_Power_KQ23zZGZk40bhDz1.json
+++ b/packsrc/mass-edit-presets/Light_Power_KQ23zZGZk40bhDz1.json
@@ -67,12 +67,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1715452439421,
"modifiedTime": 1715452439421,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!KQ23zZGZk40bhDz1"
}
diff --git a/packsrc/mass-edit-presets/Light_Power___Beam_qpd4ihztRr1DWyEa.json b/packsrc/mass-edit-presets/Light_Power___Beam_qpd4ihztRr1DWyEa.json
index 2483f02..7dd3320 100644
--- a/packsrc/mass-edit-presets/Light_Power___Beam_qpd4ihztRr1DWyEa.json
+++ b/packsrc/mass-edit-presets/Light_Power___Beam_qpd4ihztRr1DWyEa.json
@@ -68,12 +68,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1715452439435,
"modifiedTime": 1715452439435,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!qpd4ihztRr1DWyEa"
}
diff --git a/packsrc/mass-edit-presets/Phase_Selector_I59kZy8WySY4kLyk.json b/packsrc/mass-edit-presets/Phase_Selector_I59kZy8WySY4kLyk.json
index 82c4de1..a8d89c7 100644
--- a/packsrc/mass-edit-presets/Phase_Selector_I59kZy8WySY4kLyk.json
+++ b/packsrc/mass-edit-presets/Phase_Selector_I59kZy8WySY4kLyk.json
@@ -232,12 +232,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1713115206732,
"modifiedTime": 1713115206732,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!I59kZy8WySY4kLyk"
}
diff --git a/packsrc/mass-edit-presets/Reset_Scene_8udCDDd2ieLVuyDX.json b/packsrc/mass-edit-presets/Reset_Scene_8udCDDd2ieLVuyDX.json
index 086c9f0..a37f7ec 100644
--- a/packsrc/mass-edit-presets/Reset_Scene_8udCDDd2ieLVuyDX.json
+++ b/packsrc/mass-edit-presets/Reset_Scene_8udCDDd2ieLVuyDX.json
@@ -233,12 +233,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1713115206710,
"modifiedTime": 1713115206710,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!8udCDDd2ieLVuyDX"
}
diff --git a/packsrc/mass-edit-presets/Silence_Power_J3dS6bybSG3urkfq.json b/packsrc/mass-edit-presets/Silence_Power_J3dS6bybSG3urkfq.json
index a6814de..a7d7e0b 100644
--- a/packsrc/mass-edit-presets/Silence_Power_J3dS6bybSG3urkfq.json
+++ b/packsrc/mass-edit-presets/Silence_Power_J3dS6bybSG3urkfq.json
@@ -65,12 +65,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.4.1",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1718679948718,
"modifiedTime": 1718679948718,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!J3dS6bybSG3urkfq"
}
diff --git a/packsrc/mass-edit-presets/Torch__4___toj80cTP64UHD63i.json b/packsrc/mass-edit-presets/Torch__4___toj80cTP64UHD63i.json
index cad55f1..4fc0a18 100644
--- a/packsrc/mass-edit-presets/Torch__4___toj80cTP64UHD63i.json
+++ b/packsrc/mass-edit-presets/Torch__4___toj80cTP64UHD63i.json
@@ -71,12 +71,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.3.11",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1715452439404,
"modifiedTime": 1715452439404,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!toj80cTP64UHD63i"
}
diff --git a/packsrc/mass-edit-presets/Tree_A1_6x6_lN1XagNzbEfTk7OG.json b/packsrc/mass-edit-presets/Tree_A1_6x6_lN1XagNzbEfTk7OG.json
new file mode 100644
index 0000000..92d829c
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_A1_6x6_lN1XagNzbEfTk7OG.json
@@ -0,0 +1,512 @@
+{
+ "_id": "lN1XagNzbEfTk7OG",
+ "name": "Tree_A1_6x6",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "lN1XagNzbEfTk7OG",
+ "name": "Tree_A1_6x6",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A1_6x6.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2000,
+ "y": 1600,
+ "width": 1200,
+ "height": 1200,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "kY715XPwrsHJ5TGH",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_A1_6x6",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "levels": {
+ "rangeTop": null,
+ "showIfAbove": false,
+ "showAboveRange": null,
+ "noCollision": false,
+ "noFogHide": false,
+ "isBasement": false,
+ "allWallBlockSight": true
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A1_6x6.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_A1_6x6.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_A1_6x6.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_A1_6x6.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_A1_6x6.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_A1_6x6.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "XuYprOcsVPpaCWv8",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "ZVfHuDOdyUjBHz43",
+ "placeableId": "kY715XPwrsHJ5TGH",
+ "filterInternalId": "XuYprOcsVPpaCWv8",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Z8ISOF8LMXMSGGa6",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 100000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.lN1XagNzbEfTk7OG",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A1_6x6.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_A1_6x6.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2000,
+ "y": 1600,
+ "width": 1200,
+ "height": 1200,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "7aLxmFJvQalq32C1",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_A1_6x6.webp"
+ },
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Z8ISOF8LMXMSGGa6",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2444,
+ "y": 2233,
+ "width": 320,
+ "height": 320,
+ "elevation": 0,
+ "sort": 26,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "3R2OrMPSIHSc0DBT",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeCanopy",
+ "TreeStump"
+ ]
+ },
+ "tokenmagic": {},
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Z8ISOF8LMXMSGGa6",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2588,
+ 2338,
+ 2538,
+ 2388
+ ],
+ "_id": "dX8VcJKQoNDnSBDw",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Z8ISOF8LMXMSGGa6",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2538,
+ 2388,
+ 2563,
+ 2450
+ ],
+ "_id": "7xdiHdWeEZ1TDXGp",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Z8ISOF8LMXMSGGa6",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2563,
+ 2450,
+ 2638,
+ 2450
+ ],
+ "_id": "JBjTxI7GCRh860k4",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Z8ISOF8LMXMSGGa6",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2638,
+ 2450,
+ 2663,
+ 2400
+ ],
+ "_id": "O3CksjgFX9tGBH4K",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Z8ISOF8LMXMSGGa6",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2663,
+ 2400,
+ 2588,
+ 2338
+ ],
+ "_id": "BcZTP6ouN571U1zT",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "Z8ISOF8LMXMSGGa6",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-a"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!lN1XagNzbEfTk7OG"
+}
diff --git a/packsrc/mass-edit-presets/Tree_A2_8x7_rXQJOi2Hi9kmrYXZ.json b/packsrc/mass-edit-presets/Tree_A2_8x7_rXQJOi2Hi9kmrYXZ.json
new file mode 100644
index 0000000..4933f6f
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_A2_8x7_rXQJOi2Hi9kmrYXZ.json
@@ -0,0 +1,543 @@
+{
+ "_id": "rXQJOi2Hi9kmrYXZ",
+ "name": "Tree_A2_8x7",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "rXQJOi2Hi9kmrYXZ",
+ "name": "Tree_A2_8x7",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A2_8x7.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3200,
+ "y": 1600,
+ "width": 1600,
+ "height": 1400,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "r7LmgYrbtySDB4rf",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_A2_8x7",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A2_8x7.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_A2_8x7.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_A2_8x7.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_A2_8x7.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_A2_8x7.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_A2_8x7.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "kl5YvdjQqTNWoOs1",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "bLdLYmRUIuP6E2yf",
+ "placeableId": "r7LmgYrbtySDB4rf",
+ "filterInternalId": "kl5YvdjQqTNWoOs1",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7AKrIaS1A0cK6zDL",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 200000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.rXQJOi2Hi9kmrYXZ",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A2_8x7.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_A2_8x7.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3200,
+ "y": 1600,
+ "width": 1600,
+ "height": 1400,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "FoopVSTkwL84c2yA",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7AKrIaS1A0cK6zDL",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3809,
+ "y": 2184,
+ "width": 320,
+ "height": 320,
+ "elevation": 0,
+ "sort": 27,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "BlyPvYwpGXTEtgUN",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7AKrIaS1A0cK6zDL",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3988,
+ 2288,
+ 3925,
+ 2288
+ ],
+ "_id": "WCZrvJYM6ddv2BXm",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7AKrIaS1A0cK6zDL",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3925,
+ 2288,
+ 3900,
+ 2350
+ ],
+ "_id": "ouT4SGzMajl9izHT",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7AKrIaS1A0cK6zDL",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3900,
+ 2350,
+ 3950,
+ 2413
+ ],
+ "_id": "eFnnvWGzj1iEiL4Z",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7AKrIaS1A0cK6zDL",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3950,
+ 2413,
+ 4013,
+ 2400
+ ],
+ "_id": "Zy6188eeROCJymQk",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7AKrIaS1A0cK6zDL",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4013,
+ 2400,
+ 4038,
+ 2350
+ ],
+ "_id": "R3cr2rYHYrkJkFYk",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7AKrIaS1A0cK6zDL",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4038,
+ 2350,
+ 3988,
+ 2288
+ ],
+ "_id": "1Y8DJByQf2Fqzhew",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "7AKrIaS1A0cK6zDL",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-a"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!rXQJOi2Hi9kmrYXZ"
+}
diff --git a/packsrc/mass-edit-presets/Tree_A3_6x5_WZdAmc2bjmOxnOVn.json b/packsrc/mass-edit-presets/Tree_A3_6x5_WZdAmc2bjmOxnOVn.json
new file mode 100644
index 0000000..5f06554
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_A3_6x5_WZdAmc2bjmOxnOVn.json
@@ -0,0 +1,543 @@
+{
+ "_id": "WZdAmc2bjmOxnOVn",
+ "name": "Tree_A3_6x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "WZdAmc2bjmOxnOVn",
+ "name": "Tree_A3_6x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A3_6x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4800,
+ "y": 1600,
+ "width": 1200,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "0oY6nwZ9aLeP4KU4",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_A3_6x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A3_6x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_A3_6x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_A3_6x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_A3_6x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_A3_6x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_A3_6x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "aUZLI6kVZm28mlZw",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "fDcD69FLIVTjtdr1",
+ "placeableId": "0oY6nwZ9aLeP4KU4",
+ "filterInternalId": "aUZLI6kVZm28mlZw",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dH6F9rjMYDrjViNP",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 300000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.WZdAmc2bjmOxnOVn",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A3_6x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_A3_6x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4800,
+ "y": 1600,
+ "width": 1200,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "IQj4tHJHe5haqnJ1",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dH6F9rjMYDrjViNP",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B3_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5187,
+ "y": 1943,
+ "width": 320,
+ "height": 320,
+ "elevation": 0,
+ "sort": 28,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "U5UaR1SrwnELkj6M",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dH6F9rjMYDrjViNP",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5375,
+ 2038,
+ 5313,
+ 2038
+ ],
+ "_id": "kDHaxYvzVdmeW1VV",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dH6F9rjMYDrjViNP",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5313,
+ 2038,
+ 5275,
+ 2088
+ ],
+ "_id": "ETFByCw8T45HRVUR",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dH6F9rjMYDrjViNP",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5275,
+ 2088,
+ 5300,
+ 2150
+ ],
+ "_id": "gtd6dXYa4oL04zjA",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dH6F9rjMYDrjViNP",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5300,
+ 2150,
+ 5363,
+ 2163
+ ],
+ "_id": "mF6bhB7PU59qZXfD",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dH6F9rjMYDrjViNP",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5363,
+ 2163,
+ 5413,
+ 2125
+ ],
+ "_id": "LVx5aUQ30VJvt3vp",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dH6F9rjMYDrjViNP",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5413,
+ 2125,
+ 5375,
+ 2038
+ ],
+ "_id": "N2ofNzjWEqa3zhbH",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "dH6F9rjMYDrjViNP",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-a"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!WZdAmc2bjmOxnOVn"
+}
diff --git a/packsrc/mass-edit-presets/Tree_A4_5x6_iVGagdFBAHBDGZgZ.json b/packsrc/mass-edit-presets/Tree_A4_5x6_iVGagdFBAHBDGZgZ.json
new file mode 100644
index 0000000..de96229
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_A4_5x6_iVGagdFBAHBDGZgZ.json
@@ -0,0 +1,543 @@
+{
+ "_id": "iVGagdFBAHBDGZgZ",
+ "name": "Tree_A4_5x6",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "iVGagdFBAHBDGZgZ",
+ "name": "Tree_A4_5x6",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A4_5x6.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6000,
+ "y": 1600,
+ "width": 1000,
+ "height": 1200,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "0VhIWWqgxER5EQ5i",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_A4_5x6",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A4_5x6.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_A4_5x6.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_A4_5x6.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_A4_5x6.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_A4_5x6.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_A4_5x6.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "H06bYBShGGLNcIAm",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "CdAkAiju0dk1aQH2",
+ "placeableId": "0VhIWWqgxER5EQ5i",
+ "filterInternalId": "H06bYBShGGLNcIAm",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2bWr766QU82xXeXh",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 400000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.iVGagdFBAHBDGZgZ",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A4_5x6.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_A4_5x6.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6000,
+ "y": 1600,
+ "width": 1000,
+ "height": 1200,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "lr0OlF3iezdopqhj",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2bWr766QU82xXeXh",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B4_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6332,
+ "y": 2085,
+ "width": 320,
+ "height": 320,
+ "elevation": 0,
+ "sort": 29,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "YN69G9q5zTpytOO9",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2bWr766QU82xXeXh",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6550,
+ 2225,
+ 6488,
+ 2175
+ ],
+ "_id": "axqGmsyP6XN347No",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2bWr766QU82xXeXh",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6488,
+ 2175,
+ 6425,
+ 2225
+ ],
+ "_id": "tqlLkQRQ1UpE46YK",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2bWr766QU82xXeXh",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6425,
+ 2225,
+ 6425,
+ 2288
+ ],
+ "_id": "WNYm8Cx0tejMnIeG",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2bWr766QU82xXeXh",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6425,
+ 2288,
+ 6475,
+ 2325
+ ],
+ "_id": "dgU5uU114pm6HlWG",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2bWr766QU82xXeXh",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6475,
+ 2325,
+ 6538,
+ 2300
+ ],
+ "_id": "BTb8YzQPRbyWLsN5",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2bWr766QU82xXeXh",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6538,
+ 2300,
+ 6550,
+ 2225
+ ],
+ "_id": "K4UEOROfhsXd9VwR",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "2bWr766QU82xXeXh",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-a"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!iVGagdFBAHBDGZgZ"
+}
diff --git a/packsrc/mass-edit-presets/Tree_A5_6x6_XIutuaIC9qVuoQmC.json b/packsrc/mass-edit-presets/Tree_A5_6x6_XIutuaIC9qVuoQmC.json
new file mode 100644
index 0000000..fd1a120
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_A5_6x6_XIutuaIC9qVuoQmC.json
@@ -0,0 +1,546 @@
+{
+ "_id": "XIutuaIC9qVuoQmC",
+ "name": "Tree_A5_6x6",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "XIutuaIC9qVuoQmC",
+ "name": "Tree_A5_6x6",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A5_6x6.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7000,
+ "y": 1600,
+ "width": 1200,
+ "height": 1200,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "IatZzI2TL5iakBKT",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_A5_6x6",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A5_6x6.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_A5_6x6.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_A5_6x6.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_A5_6x6.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_A5_6x6.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_A5_6x6.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "a4A2YgjLDK4sj4HU",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "0rqvH46OfO5eulIH",
+ "placeableId": "IatZzI2TL5iakBKT",
+ "filterInternalId": "a4A2YgjLDK4sj4HU",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "hKYK0hgXLyK4hTvS",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 500000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.XIutuaIC9qVuoQmC",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A5_6x6.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_A5_6x6.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7000,
+ "y": 1600,
+ "width": 1200,
+ "height": 1200,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "DcrQpKHpN6duFOCd",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "hKYK0hgXLyK4hTvS",
+ "type": 1
+ }
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_A5_6x6.webp"
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B5_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7407,
+ "y": 2049,
+ "width": 320,
+ "height": 320,
+ "elevation": 0,
+ "sort": 30,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "JtXq1Kr3eV0YDSgq",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "hKYK0hgXLyK4hTvS",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7638,
+ 2225,
+ 7600,
+ 2163
+ ],
+ "_id": "WIDFfWshZagGMzBT",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "hKYK0hgXLyK4hTvS",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7600,
+ 2163,
+ 7550,
+ 2150
+ ],
+ "_id": "39oU4pXEjEOAYdAn",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "hKYK0hgXLyK4hTvS",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7550,
+ 2150,
+ 7512,
+ 2200
+ ],
+ "_id": "IC7s2IwNAbq8rQdJ",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "hKYK0hgXLyK4hTvS",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7512,
+ 2200,
+ 7513,
+ 2250
+ ],
+ "_id": "cQn5RvvVduC1a40M",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "hKYK0hgXLyK4hTvS",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7513,
+ 2250,
+ 7575,
+ 2275
+ ],
+ "_id": "0GYMVMBitIIyqdFX",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "hKYK0hgXLyK4hTvS",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7575,
+ 2275,
+ 7638,
+ 2225
+ ],
+ "_id": "JWjLUkrtkjix1ZlB",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "hKYK0hgXLyK4hTvS",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-a"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!XIutuaIC9qVuoQmC"
+}
diff --git a/packsrc/mass-edit-presets/Tree_B1_5x5_ufXS6HUAiNMm7ufQ.json b/packsrc/mass-edit-presets/Tree_B1_5x5_ufXS6HUAiNMm7ufQ.json
new file mode 100644
index 0000000..fa697e0
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_B1_5x5_ufXS6HUAiNMm7ufQ.json
@@ -0,0 +1,543 @@
+{
+ "_id": "ufXS6HUAiNMm7ufQ",
+ "name": "Tree_B1_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "ufXS6HUAiNMm7ufQ",
+ "name": "Tree_B1_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B1_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2000,
+ "y": 3200,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "jZSC5QUC7OWvbilV",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_B1_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B1_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_B1_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_B1_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_B1_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_B1_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_B1_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "TrRamUdZXDCpMsqe",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "iqnPmTdTRdy5MpuG",
+ "placeableId": "jZSC5QUC7OWvbilV",
+ "filterInternalId": "TrRamUdZXDCpMsqe",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vXVa1kTbsQ9Z4MCM",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 600000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.ufXS6HUAiNMm7ufQ",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B1_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_B1_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2000,
+ "y": 3200,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "T16ewr9LmhXWbYrX",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vXVa1kTbsQ9Z4MCM",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B6_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2328,
+ "y": 3658,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 31,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "GyHBvafVyyW2TMHR",
+ "rotation": 315,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vXVa1kTbsQ9Z4MCM",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2438,
+ 3750,
+ 2513,
+ 3775
+ ],
+ "_id": "zuD7nSSZH5gEv6WP",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vXVa1kTbsQ9Z4MCM",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2513,
+ 3775,
+ 2513,
+ 3825
+ ],
+ "_id": "5BYiTKDWyzoIynpz",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vXVa1kTbsQ9Z4MCM",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2513,
+ 3825,
+ 2475,
+ 3863
+ ],
+ "_id": "KDFxN3w4rqwx6epA",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vXVa1kTbsQ9Z4MCM",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2475,
+ 3863,
+ 2413,
+ 3838
+ ],
+ "_id": "XlryA5qr4RNAGYm7",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vXVa1kTbsQ9Z4MCM",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2413,
+ 3838,
+ 2413,
+ 3788
+ ],
+ "_id": "3jpZgAepbnzU49hR",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vXVa1kTbsQ9Z4MCM",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2413,
+ 3788,
+ 2438,
+ 3750
+ ],
+ "_id": "BUwhTv57rTJUr165",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vXVa1kTbsQ9Z4MCM",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-b"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!ufXS6HUAiNMm7ufQ"
+}
diff --git a/packsrc/mass-edit-presets/Tree_B2_5x5_JO3Z6swCJg4LKIyu.json b/packsrc/mass-edit-presets/Tree_B2_5x5_JO3Z6swCJg4LKIyu.json
new file mode 100644
index 0000000..7253f34
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_B2_5x5_JO3Z6swCJg4LKIyu.json
@@ -0,0 +1,543 @@
+{
+ "_id": "JO3Z6swCJg4LKIyu",
+ "name": "Tree_B2_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "JO3Z6swCJg4LKIyu",
+ "name": "Tree_B2_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B2_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3000,
+ "y": 3200,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "P5BzYGzjpOjnx3sQ",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_B2_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B2_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_B2_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_B2_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_B2_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_B2_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_B2_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "7eUzLlr6NnrTqYUy",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "9a58MZesWHzbfwaD",
+ "placeableId": "P5BzYGzjpOjnx3sQ",
+ "filterInternalId": "7eUzLlr6NnrTqYUy",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "WnvvWrpqPiQEfNPO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 700000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.JO3Z6swCJg4LKIyu",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B2_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_B2_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3000,
+ "y": 3200,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "vZiZ5nY5UksWveJJ",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "WnvvWrpqPiQEfNPO",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B7_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3347,
+ "y": 3518,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 32,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "r6pwoUfO2YxTOFwm",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "WnvvWrpqPiQEfNPO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3475,
+ 3613,
+ 3525,
+ 3625
+ ],
+ "_id": "SNizFgf3wVsSExsi",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "WnvvWrpqPiQEfNPO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3525,
+ 3625,
+ 3538,
+ 3675
+ ],
+ "_id": "4Vx4sBAMooslszsC",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "WnvvWrpqPiQEfNPO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3538,
+ 3675,
+ 3500,
+ 3725
+ ],
+ "_id": "rK6KZJgpSpBiNvuf",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "WnvvWrpqPiQEfNPO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3500,
+ 3725,
+ 3438,
+ 3700
+ ],
+ "_id": "xMq9uNTPgfRPGpAe",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "WnvvWrpqPiQEfNPO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3438,
+ 3700,
+ 3438,
+ 3650
+ ],
+ "_id": "DEIv1fWZRhuZntL6",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "WnvvWrpqPiQEfNPO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3438,
+ 3650,
+ 3475,
+ 3613
+ ],
+ "_id": "mZOcWoarydpE7VZn",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "WnvvWrpqPiQEfNPO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-b"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!JO3Z6swCJg4LKIyu"
+}
diff --git a/packsrc/mass-edit-presets/Tree_B3_5x5_TEVentXNWNgcbLl8.json b/packsrc/mass-edit-presets/Tree_B3_5x5_TEVentXNWNgcbLl8.json
new file mode 100644
index 0000000..cbf1ef4
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_B3_5x5_TEVentXNWNgcbLl8.json
@@ -0,0 +1,543 @@
+{
+ "_id": "TEVentXNWNgcbLl8",
+ "name": "Tree_B3_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "TEVentXNWNgcbLl8",
+ "name": "Tree_B3_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B3_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 3200,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "piQ76tgTnK6Sgx38",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_B3_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B3_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_B3_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_B3_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_B3_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_B3_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_B3_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "dN7OZApfAFrk1w2B",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "8PQA0ekkPwar9EpK",
+ "placeableId": "piQ76tgTnK6Sgx38",
+ "filterInternalId": "dN7OZApfAFrk1w2B",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vrPuDBAcNY6m0tRc",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 800000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.TEVentXNWNgcbLl8",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B3_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_B3_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 3200,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "ZHVxBpqAW8aJ1NWu",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vrPuDBAcNY6m0tRc",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4365,
+ "y": 3568,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 33,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "krrNwwpQl5dBX3R4",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vrPuDBAcNY6m0tRc",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4463,
+ 3650,
+ 4513,
+ 3663
+ ],
+ "_id": "fv77vnbyudfVys99",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vrPuDBAcNY6m0tRc",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4513,
+ 3663,
+ 4550,
+ 3700
+ ],
+ "_id": "SU5zcZ5IHRhZniQX",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vrPuDBAcNY6m0tRc",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4550,
+ 3700,
+ 4525,
+ 3750
+ ],
+ "_id": "tgKkQFBNSyGSiqu9",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vrPuDBAcNY6m0tRc",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4525,
+ 3750,
+ 4475,
+ 3763
+ ],
+ "_id": "X74eCEWSowYCs8Ao",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vrPuDBAcNY6m0tRc",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4475,
+ 3763,
+ 4438,
+ 3725
+ ],
+ "_id": "NhsWpYs96OO4iIbp",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vrPuDBAcNY6m0tRc",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4438,
+ 3725,
+ 4463,
+ 3650
+ ],
+ "_id": "y35U6b1GUnsJGMxS",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "vrPuDBAcNY6m0tRc",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-b"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!TEVentXNWNgcbLl8"
+}
diff --git a/packsrc/mass-edit-presets/Tree_B4_5x5_pYXDqgwyj83C89zE.json b/packsrc/mass-edit-presets/Tree_B4_5x5_pYXDqgwyj83C89zE.json
new file mode 100644
index 0000000..0b3ace1
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_B4_5x5_pYXDqgwyj83C89zE.json
@@ -0,0 +1,543 @@
+{
+ "_id": "pYXDqgwyj83C89zE",
+ "name": "Tree_B4_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "pYXDqgwyj83C89zE",
+ "name": "Tree_B4_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B4_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5000,
+ "y": 3200,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "o0XLK88JT918ajT5",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_B4_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B4_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_B4_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_B4_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_B4_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_B4_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_B4_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "TkBg6b9GLl0ATUsu",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "9DJis5wjySFHgeTP",
+ "placeableId": "o0XLK88JT918ajT5",
+ "filterInternalId": "TkBg6b9GLl0ATUsu",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "X2AUrLPadvwA8Qh9",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 900000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.pYXDqgwyj83C89zE",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B4_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_B4_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5000,
+ "y": 3200,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "PPzrpFcZJi2MujTy",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "X2AUrLPadvwA8Qh9",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5362,
+ "y": 3589,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 34,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "9Z8HN20fTg65Q8U6",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "X2AUrLPadvwA8Qh9",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5463,
+ 3675,
+ 5513,
+ 3675
+ ],
+ "_id": "uOrnpuOc4XHTnVyt",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "X2AUrLPadvwA8Qh9",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5513,
+ 3675,
+ 5550,
+ 3713
+ ],
+ "_id": "Qpwm7AdbfGwQsgNG",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "X2AUrLPadvwA8Qh9",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5550,
+ 3713,
+ 5525,
+ 3775
+ ],
+ "_id": "TfIh0hoY6RnM4LgD",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "X2AUrLPadvwA8Qh9",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5525,
+ 3775,
+ 5463,
+ 3763
+ ],
+ "_id": "7quH8KgH79pkDbFL",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "X2AUrLPadvwA8Qh9",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5463,
+ 3763,
+ 5438,
+ 3725
+ ],
+ "_id": "hIK62pfLe4GiYraM",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "X2AUrLPadvwA8Qh9",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5438,
+ 3725,
+ 5463,
+ 3675
+ ],
+ "_id": "RplvXKYkbMFVmusB",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "X2AUrLPadvwA8Qh9",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-b"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!pYXDqgwyj83C89zE"
+}
diff --git a/packsrc/mass-edit-presets/Tree_B5_5x5_s9rH3RPws1blnan0.json b/packsrc/mass-edit-presets/Tree_B5_5x5_s9rH3RPws1blnan0.json
new file mode 100644
index 0000000..bedf012
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_B5_5x5_s9rH3RPws1blnan0.json
@@ -0,0 +1,543 @@
+{
+ "_id": "s9rH3RPws1blnan0",
+ "name": "Tree_B5_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "s9rH3RPws1blnan0",
+ "name": "Tree_B5_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B5_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6000,
+ "y": 3200,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "5NBS2IZtQHVKx44e",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_B5_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B5_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_B5_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_B5_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_B5_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_B5_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_B5_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "DARXkUUddX6ZsZQM",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "ddWI8COzw8xTi053",
+ "placeableId": "5NBS2IZtQHVKx44e",
+ "filterInternalId": "DARXkUUddX6ZsZQM",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "pon76zgb6JFQlGZv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1000000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.s9rH3RPws1blnan0",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B5_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_B5_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6000,
+ "y": 3200,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "C6q5keZRi4HYzaQH",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "pon76zgb6JFQlGZv",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B3_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6366,
+ "y": 3617,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 35,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "nJ2K3ikW44bzyHRf",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "pon76zgb6JFQlGZv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6450,
+ 3700,
+ 6513,
+ 3700
+ ],
+ "_id": "Q1PsSgM5A6VGrTec",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "pon76zgb6JFQlGZv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6513,
+ 3700,
+ 6550,
+ 3750
+ ],
+ "_id": "mB7kUiD9Q0jwI2Te",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "pon76zgb6JFQlGZv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6550,
+ 3750,
+ 6525,
+ 3800
+ ],
+ "_id": "90YknKWiWUST0xWH",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "pon76zgb6JFQlGZv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6525,
+ 3800,
+ 6463,
+ 3800
+ ],
+ "_id": "piEDBf4hoe3XZnVL",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "pon76zgb6JFQlGZv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6463,
+ 3800,
+ 6438,
+ 3763
+ ],
+ "_id": "ZP4KL1GIwkd7vjLZ",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "pon76zgb6JFQlGZv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6438,
+ 3763,
+ 6450,
+ 3700
+ ],
+ "_id": "SDf5bD9WIsvQvpqU",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "pon76zgb6JFQlGZv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-b"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!s9rH3RPws1blnan0"
+}
diff --git a/packsrc/mass-edit-presets/Tree_C1_5x5_WxdhcLOfP6mH3JI6.json b/packsrc/mass-edit-presets/Tree_C1_5x5_WxdhcLOfP6mH3JI6.json
new file mode 100644
index 0000000..ed5f26c
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_C1_5x5_WxdhcLOfP6mH3JI6.json
@@ -0,0 +1,508 @@
+{
+ "_id": "WxdhcLOfP6mH3JI6",
+ "name": "Tree_C1_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "WxdhcLOfP6mH3JI6",
+ "name": "Tree_C1_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C1_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2000,
+ "y": 4400,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "IStS43Q46f9xg7bf",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TEST",
+ "Tree_C1_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C1_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_C1_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_C1_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_C1_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_C1_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_C1_5x5.webp"
+ ]
+ },
+ "levels": {
+ "rangeTop": null,
+ "showIfAbove": false,
+ "showAboveRange": null,
+ "noCollision": false,
+ "noFogHide": false,
+ "isBasement": false,
+ "allWallBlockSight": true
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "wSSutUDUiS7D0EL9",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "4ao8mTgd6ExTb6Bs",
+ "placeableId": "IStS43Q46f9xg7bf",
+ "filterInternalId": "wSSutUDUiS7D0EL9",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "JDh6bqrPoZfKCMiA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1100000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.WxdhcLOfP6mH3JI6",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C1_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_C1_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2000,
+ "y": 4400,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "8cuNwKaViyYltp0d",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "JDh6bqrPoZfKCMiA",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B5_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2447,
+ "y": 4760,
+ "width": 229,
+ "height": 229,
+ "elevation": 0,
+ "sort": 36,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "MbKTS0OiqxfYhmZt",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "JDh6bqrPoZfKCMiA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2550,
+ 4825,
+ 2525,
+ 4863
+ ],
+ "_id": "Kc0BGLkLNtikjOh6",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "JDh6bqrPoZfKCMiA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2525,
+ 4863,
+ 2538,
+ 4913
+ ],
+ "_id": "sIuj8gpX7JUigZk6",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "JDh6bqrPoZfKCMiA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2538,
+ 4913,
+ 2588,
+ 4913
+ ],
+ "_id": "KM3I7C94WMpoM0eH",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "JDh6bqrPoZfKCMiA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2588,
+ 4913,
+ 2600,
+ 4875
+ ],
+ "_id": "gvAXoo4GqYobGcw4",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "JDh6bqrPoZfKCMiA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2600,
+ 4875,
+ 2550,
+ 4825
+ ],
+ "_id": "OwjNBFmiMMKOKfKI",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "JDh6bqrPoZfKCMiA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!WxdhcLOfP6mH3JI6"
+}
diff --git a/packsrc/mass-edit-presets/Tree_C2_5x5_MTG3tWrAbc5Q14f8.json b/packsrc/mass-edit-presets/Tree_C2_5x5_MTG3tWrAbc5Q14f8.json
new file mode 100644
index 0000000..b58561e
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_C2_5x5_MTG3tWrAbc5Q14f8.json
@@ -0,0 +1,543 @@
+{
+ "_id": "MTG3tWrAbc5Q14f8",
+ "name": "Tree_C2_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "MTG3tWrAbc5Q14f8",
+ "name": "Tree_C2_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C2_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3000,
+ "y": 4400,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "zjKSDdAM83hHBBbP",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_C2_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C2_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_C2_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_C2_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_C2_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_C2_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_C2_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "KOCEgdAlx5OObZBA",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "TCiUECU83KQKOeuP",
+ "placeableId": "zjKSDdAM83hHBBbP",
+ "filterInternalId": "KOCEgdAlx5OObZBA",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "VA0Az8RB0aD6aZBo",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1200000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.MTG3tWrAbc5Q14f8",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C2_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_C2_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3000,
+ "y": 4400,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "FkD4c9DCEokC9iXX",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "VA0Az8RB0aD6aZBo",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B6_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3439,
+ "y": 4791,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 37,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "xFObBXur5OwiUjE1",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "VA0Az8RB0aD6aZBo",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3563,
+ 4875,
+ 3600,
+ 4900
+ ],
+ "_id": "XHovfty596DF2vdU",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "VA0Az8RB0aD6aZBo",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3600,
+ 4900,
+ 3613,
+ 4963
+ ],
+ "_id": "TLA9KRaZGz4ort4W",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "VA0Az8RB0aD6aZBo",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3613,
+ 4963,
+ 3563,
+ 4988
+ ],
+ "_id": "xsOUXhHqwSR6TO0B",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "VA0Az8RB0aD6aZBo",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3563,
+ 4988,
+ 3525,
+ 4950
+ ],
+ "_id": "sqwozPNWuvatfxMq",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "VA0Az8RB0aD6aZBo",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3525,
+ 4950,
+ 3513,
+ 4900
+ ],
+ "_id": "EbQ06Q4aDSfVwlAx",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "VA0Az8RB0aD6aZBo",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3513,
+ 4900,
+ 3563,
+ 4875
+ ],
+ "_id": "1WWa9MIVCUoBN6ZG",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "VA0Az8RB0aD6aZBo",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!MTG3tWrAbc5Q14f8"
+}
diff --git a/packsrc/mass-edit-presets/Tree_C3_5x5_z0mctTk3NKbIymjU.json b/packsrc/mass-edit-presets/Tree_C3_5x5_z0mctTk3NKbIymjU.json
new file mode 100644
index 0000000..4c428e8
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_C3_5x5_z0mctTk3NKbIymjU.json
@@ -0,0 +1,543 @@
+{
+ "_id": "z0mctTk3NKbIymjU",
+ "name": "Tree_C3_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "z0mctTk3NKbIymjU",
+ "name": "Tree_C3_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C3_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 4400,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "53uUW8qQGRfTt27t",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_C3_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C3_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_C3_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_C3_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_C3_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_C3_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_C3_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "xD0iCcZqu2mth52N",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "2T2qrgDDut8wQDoV",
+ "placeableId": "53uUW8qQGRfTt27t",
+ "filterInternalId": "xD0iCcZqu2mth52N",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1qvWXSDRoIpwGAm4",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1300000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.z0mctTk3NKbIymjU",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C3_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_C3_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 4400,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "wsLnvoTEDCZBdVPX",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1qvWXSDRoIpwGAm4",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B7_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4408,
+ "y": 4748,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 38,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "FOgSWu9rOUtXy7Fo",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1qvWXSDRoIpwGAm4",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4538,
+ 4838,
+ 4500,
+ 4888
+ ],
+ "_id": "xaOcuryoUP7WPnbL",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1qvWXSDRoIpwGAm4",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4500,
+ 4888,
+ 4500,
+ 4925
+ ],
+ "_id": "NGDoBIRY5Wvruh3B",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1qvWXSDRoIpwGAm4",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4500,
+ 4925,
+ 4550,
+ 4950
+ ],
+ "_id": "EmTAO7J7B6Y6pc8O",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1qvWXSDRoIpwGAm4",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4550,
+ 4950,
+ 4588,
+ 4938
+ ],
+ "_id": "KJ7GPiDYBXZjErBk",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1qvWXSDRoIpwGAm4",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4588,
+ 4938,
+ 4600,
+ 4888
+ ],
+ "_id": "FEGIvJaWX9giLsmV",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1qvWXSDRoIpwGAm4",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4600,
+ 4888,
+ 4538,
+ 4838
+ ],
+ "_id": "CYAINy5ivzXGCdZk",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1qvWXSDRoIpwGAm4",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!z0mctTk3NKbIymjU"
+}
diff --git a/packsrc/mass-edit-presets/Tree_C4_5x5_jkP8Xf48Xi996RYH.json b/packsrc/mass-edit-presets/Tree_C4_5x5_jkP8Xf48Xi996RYH.json
new file mode 100644
index 0000000..277b67b
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_C4_5x5_jkP8Xf48Xi996RYH.json
@@ -0,0 +1,453 @@
+{
+ "_id": "jkP8Xf48Xi996RYH",
+ "name": "Tree_C4_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "jkP8Xf48Xi996RYH",
+ "name": "Tree_C4_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C4_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5000,
+ "y": 4400,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "GLSbT5jkBxZWGMh1",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_C4_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C4_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_C4_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_C4_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_C4_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_C4_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_C4_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "Zdn7hDenrYJvp7AX",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "WNfmRiC9YXUFpfzt",
+ "placeableId": "GLSbT5jkBxZWGMh1",
+ "filterInternalId": "Zdn7hDenrYJvp7AX",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yI1l3eFTLpDZIDpR",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1400000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.jkP8Xf48Xi996RYH",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C4_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_C4_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5000,
+ "y": 4400,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Am2xDFdRh0wi9O8Y",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yI1l3eFTLpDZIDpR",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5433,
+ "y": 4692,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 39,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "h9n519nTSJYlXHSr",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yI1l3eFTLpDZIDpR",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5538,
+ 4775,
+ 5613,
+ 4813
+ ],
+ "_id": "WP8JJmVx2fcdcEcJ",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yI1l3eFTLpDZIDpR",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5613,
+ 4813,
+ 5588,
+ 4875
+ ],
+ "_id": "fi3oowcZDMKz0MNw",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yI1l3eFTLpDZIDpR",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5588,
+ 4875,
+ 5513,
+ 4863
+ ],
+ "_id": "smZ7WjIjcD8KakDD",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yI1l3eFTLpDZIDpR",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5513,
+ 4863,
+ 5538,
+ 4775
+ ],
+ "_id": "TfkUJlI9rygWlZ2C",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yI1l3eFTLpDZIDpR",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!jkP8Xf48Xi996RYH"
+}
diff --git a/packsrc/mass-edit-presets/Tree_C5_5x5_CwvsgfpmApzGBPKj.json b/packsrc/mass-edit-presets/Tree_C5_5x5_CwvsgfpmApzGBPKj.json
new file mode 100644
index 0000000..0e104e4
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_C5_5x5_CwvsgfpmApzGBPKj.json
@@ -0,0 +1,543 @@
+{
+ "_id": "CwvsgfpmApzGBPKj",
+ "name": "Tree_C5_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "CwvsgfpmApzGBPKj",
+ "name": "Tree_C5_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C5_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6000,
+ "y": 4400,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "jYNqidOKVgJgUMOx",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_C5_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C5_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_C5_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_C5_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_C5_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_C5_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_C5_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "Lw4ofVGwZADDoC2O",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "3QXAHK3tj1bzxMO9",
+ "placeableId": "jYNqidOKVgJgUMOx",
+ "filterInternalId": "Lw4ofVGwZADDoC2O",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "T6S122QHhb88f2bZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1500000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.CwvsgfpmApzGBPKj",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C5_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_C5_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6000,
+ "y": 4400,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "WH0gwmKw1sf7A6oZ",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "T6S122QHhb88f2bZ",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6380,
+ "y": 4762,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 40,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "UnLa9d6JSX0GUmcm",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "T6S122QHhb88f2bZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6475,
+ 4850,
+ 6525,
+ 4850
+ ],
+ "_id": "ILuS5yPbfzli2qdo",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "T6S122QHhb88f2bZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6525,
+ 4850,
+ 6563,
+ 4900
+ ],
+ "_id": "kWggqXZFJRpvlyuZ",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "T6S122QHhb88f2bZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6563,
+ 4900,
+ 6538,
+ 4950
+ ],
+ "_id": "uPcHoEZX3Dz2z8o6",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "T6S122QHhb88f2bZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6538,
+ 4950,
+ 6475,
+ 4938
+ ],
+ "_id": "NiSU5aP4zcNCxI4F",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "T6S122QHhb88f2bZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6475,
+ 4938,
+ 6463,
+ 4900
+ ],
+ "_id": "0GTCx10C664exo4p",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "T6S122QHhb88f2bZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6463,
+ 4900,
+ 6475,
+ 4850
+ ],
+ "_id": "xkKhZMFVCWgD4qEy",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "T6S122QHhb88f2bZ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!CwvsgfpmApzGBPKj"
+}
diff --git a/packsrc/mass-edit-presets/Tree_C6_3x3_A3MboNOE7cqMAJtk.json b/packsrc/mass-edit-presets/Tree_C6_3x3_A3MboNOE7cqMAJtk.json
new file mode 100644
index 0000000..bb69ec2
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_C6_3x3_A3MboNOE7cqMAJtk.json
@@ -0,0 +1,453 @@
+{
+ "_id": "A3MboNOE7cqMAJtk",
+ "name": "Tree_C6_3x3",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "A3MboNOE7cqMAJtk",
+ "name": "Tree_C6_3x3",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C6_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7000,
+ "y": 4400,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "9GYHCBELy9b3Hmzb",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_C6_3x3",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C6_3x3.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_C6_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_C6_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_C6_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_C6_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_C6_3x3.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "YZiEJlSfrYoVjvjQ",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "UmDRMIZpg0qZ41Oi",
+ "placeableId": "9GYHCBELy9b3Hmzb",
+ "filterInternalId": "YZiEJlSfrYoVjvjQ",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "BA7YKtWaSQQwbLo1",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1600000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.A3MboNOE7cqMAJtk",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C6_3x3.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_C6_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7000,
+ "y": 4400,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "ty8VT1akboDyxf7j",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "BA7YKtWaSQQwbLo1",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B1_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7207,
+ "y": 4649,
+ "width": 178,
+ "height": 178,
+ "elevation": 0,
+ "sort": 46,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "utnnDn0sxgXlclsu",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "BA7YKtWaSQQwbLo1",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7275,
+ 4713,
+ 7325,
+ 4725
+ ],
+ "_id": "ZAiqlwa0wvd9YZLC",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "BA7YKtWaSQQwbLo1",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7325,
+ 4725,
+ 7325,
+ 4775
+ ],
+ "_id": "jPoRvDf5c8py6SzS",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "BA7YKtWaSQQwbLo1",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7325,
+ 4775,
+ 7263,
+ 4775
+ ],
+ "_id": "O77EPAfBCO92JUS6",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "BA7YKtWaSQQwbLo1",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7263,
+ 4775,
+ 7275,
+ 4713
+ ],
+ "_id": "86wICEECSg7Tb0Gp",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "BA7YKtWaSQQwbLo1",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!A3MboNOE7cqMAJtk"
+}
diff --git a/packsrc/mass-edit-presets/Tree_C7_3x3_udCLRvHwGSZgUGHn.json b/packsrc/mass-edit-presets/Tree_C7_3x3_udCLRvHwGSZgUGHn.json
new file mode 100644
index 0000000..f08c80e
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_C7_3x3_udCLRvHwGSZgUGHn.json
@@ -0,0 +1,498 @@
+{
+ "_id": "udCLRvHwGSZgUGHn",
+ "name": "Tree_C7_3x3",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "udCLRvHwGSZgUGHn",
+ "name": "Tree_C7_3x3",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C7_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7600,
+ "y": 4400,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "WfsyQT3ZCKNaTdPg",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_C7_3x3",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C7_3x3.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_C7_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_C7_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_C7_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_C7_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_C7_3x3.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "evNCWxYynlFwJWcW",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "bRF06sakSnL4uXxB",
+ "placeableId": "WfsyQT3ZCKNaTdPg",
+ "filterInternalId": "evNCWxYynlFwJWcW",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "o33NYGcgWMT707fn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1700000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.udCLRvHwGSZgUGHn",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C7_3x3.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_C7_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7600,
+ "y": 4400,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "V8fBW8Y4mC6h8imD",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "o33NYGcgWMT707fn",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7802,
+ "y": 4596,
+ "width": 178,
+ "height": 178,
+ "elevation": 0,
+ "sort": 47,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Sfeo9SSEjNiZYq4n",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "o33NYGcgWMT707fn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7863,
+ 4650,
+ 7863,
+ 4700
+ ],
+ "_id": "UrxjA7rnZnfNiHL5",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "o33NYGcgWMT707fn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7863,
+ 4700,
+ 7900,
+ 4725
+ ],
+ "_id": "tyMwJZn1LH8zrtQx",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "o33NYGcgWMT707fn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7900,
+ 4725,
+ 7925,
+ 4688
+ ],
+ "_id": "79LIxJPEow4TNuP6",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "o33NYGcgWMT707fn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7925,
+ 4688,
+ 7900,
+ 4650
+ ],
+ "_id": "ZG7Yxbtc6AG6I4YK",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "o33NYGcgWMT707fn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7900,
+ 4650,
+ 7863,
+ 4650
+ ],
+ "_id": "7oi6xGOUiKPop9iR",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "o33NYGcgWMT707fn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!udCLRvHwGSZgUGHn"
+}
diff --git a/packsrc/mass-edit-presets/Tree_C8_3x3_pR1aPmgiPrpUeYDv.json b/packsrc/mass-edit-presets/Tree_C8_3x3_pR1aPmgiPrpUeYDv.json
new file mode 100644
index 0000000..87bcfcd
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_C8_3x3_pR1aPmgiPrpUeYDv.json
@@ -0,0 +1,463 @@
+{
+ "_id": "pR1aPmgiPrpUeYDv",
+ "name": "Tree_C8_3x3",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "pR1aPmgiPrpUeYDv",
+ "name": "Tree_C8_3x3",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C8_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 8200,
+ "y": 4400,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "8G4mtxdx2sfzVUMc",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_C8_3x3",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C8_3x3.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_C8_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_C8_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_C8_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_C8_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_C8_3x3.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "TcuUIfWdAv8WtY3p",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "M9dvEtGdStuI7beN",
+ "placeableId": "8G4mtxdx2sfzVUMc",
+ "filterInternalId": "TcuUIfWdAv8WtY3p",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "DkQQpAsPS2AN1lzn",
+ "type": 0
+ }
+ ]
+ },
+ "levels": {
+ "rangeTop": null,
+ "showIfAbove": false,
+ "showAboveRange": null,
+ "noCollision": false,
+ "noFogHide": false,
+ "isBasement": false,
+ "allWallBlockSight": true
+ }
+ }
+ }
+ ],
+ "sort": 1800000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.pR1aPmgiPrpUeYDv",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C8_3x3.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_C8_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 8200,
+ "y": 4400,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "haZwxyWlUII3FxNK",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "DkQQpAsPS2AN1lzn",
+ "type": 1
+ }
+ ]
+ },
+ "tokenmagic": {}
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B3_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 8400,
+ "y": 4600,
+ "width": 178,
+ "height": 178,
+ "elevation": 0,
+ "sort": 48,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "pP7FbQozUvMtxmVy",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "DkQQpAsPS2AN1lzn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8613,
+ 4738,
+ 8575,
+ 4750
+ ],
+ "_id": "ghhkXXBx1CES3Tqf",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "DkQQpAsPS2AN1lzn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8575,
+ 4750,
+ 8563,
+ 4800
+ ],
+ "_id": "LsPzalIlxTWFiHyg",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "DkQQpAsPS2AN1lzn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8563,
+ 4800,
+ 8613,
+ 4800
+ ],
+ "_id": "hFbigrfi5KwDByzE",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "DkQQpAsPS2AN1lzn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8613,
+ 4800,
+ 8613,
+ 4738
+ ],
+ "_id": "bLcTM6mgh1xhu58M",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "DkQQpAsPS2AN1lzn",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!pR1aPmgiPrpUeYDv"
+}
diff --git a/packsrc/mass-edit-presets/Tree_D1_5x5_xAVJiKqpnbuHhxMI.json b/packsrc/mass-edit-presets/Tree_D1_5x5_xAVJiKqpnbuHhxMI.json
new file mode 100644
index 0000000..bfa76ac
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_D1_5x5_xAVJiKqpnbuHhxMI.json
@@ -0,0 +1,498 @@
+{
+ "_id": "xAVJiKqpnbuHhxMI",
+ "name": "Tree_D1_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "xAVJiKqpnbuHhxMI",
+ "name": "Tree_D1_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D1_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2000,
+ "y": 5600,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "8M93cQXU00d7YVNf",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_D1_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D1_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_D1_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_D1_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_D1_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_D1_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_D1_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "i88Ij38prkWjkNUy",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "EqPkWdK3TsMtZ23i",
+ "placeableId": "8M93cQXU00d7YVNf",
+ "filterInternalId": "i88Ij38prkWjkNUy",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "CfYsQDm1ldPZ6muW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 1900000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.xAVJiKqpnbuHhxMI",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D1_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_D1_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2000,
+ "y": 5600,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Aa7vkgb9kcEbIiX1",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "CfYsQDm1ldPZ6muW",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B2_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 2393,
+ "y": 5964,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 41,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "IZKAjZ8iZoqZ2Emy",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "CfYsQDm1ldPZ6muW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2538,
+ 6063,
+ 2575,
+ 6088
+ ],
+ "_id": "IGRWWV76FUqaNS4l",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "CfYsQDm1ldPZ6muW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2575,
+ 6088,
+ 2550,
+ 6150
+ ],
+ "_id": "wx2uoRb6qGjUAo2v",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "CfYsQDm1ldPZ6muW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2550,
+ 6150,
+ 2488,
+ 6125
+ ],
+ "_id": "52eNAhA5n8nspxYc",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "CfYsQDm1ldPZ6muW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2488,
+ 6125,
+ 2488,
+ 6075
+ ],
+ "_id": "DaRjRLWi2hbBKGgZ",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "CfYsQDm1ldPZ6muW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 2488,
+ 6075,
+ 2538,
+ 6063
+ ],
+ "_id": "sew6KwO9vjDeA1CI",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "CfYsQDm1ldPZ6muW",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!xAVJiKqpnbuHhxMI"
+}
diff --git a/packsrc/mass-edit-presets/Tree_D2_5x5_Afs7S5dk9kWkl9I1.json b/packsrc/mass-edit-presets/Tree_D2_5x5_Afs7S5dk9kWkl9I1.json
new file mode 100644
index 0000000..0c176bf
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_D2_5x5_Afs7S5dk9kWkl9I1.json
@@ -0,0 +1,498 @@
+{
+ "_id": "Afs7S5dk9kWkl9I1",
+ "name": "Tree_D2_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "Afs7S5dk9kWkl9I1",
+ "name": "Tree_D2_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D2_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3000,
+ "y": 5600,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "wqcFsn5diJ9T6uX9",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_D2_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D2_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_D2_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_D2_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_D2_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_D2_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_D2_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "GtUTr9cCH8eS1rb4",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "KfPiS4IWWhsyUK46",
+ "placeableId": "wqcFsn5diJ9T6uX9",
+ "filterInternalId": "GtUTr9cCH8eS1rb4",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uNGu5eTQYiUnUKrA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2000000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.Afs7S5dk9kWkl9I1",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D2_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_D2_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3000,
+ "y": 5600,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Cb36t1e3Ix7NnBIr",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uNGu5eTQYiUnUKrA",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B4_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 3418,
+ "y": 5964,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 42,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "OMhUgVByDJDCjVYs",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uNGu5eTQYiUnUKrA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3538,
+ 6050,
+ 3588,
+ 6063
+ ],
+ "_id": "ZTHAoQRviZOe9HXy",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uNGu5eTQYiUnUKrA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3588,
+ 6063,
+ 3600,
+ 6113
+ ],
+ "_id": "exTkKkp8lfFJXqtR",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uNGu5eTQYiUnUKrA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3600,
+ 6113,
+ 3563,
+ 6163
+ ],
+ "_id": "ENQdsTbiQUVYQmVy",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uNGu5eTQYiUnUKrA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3563,
+ 6163,
+ 3500,
+ 6125
+ ],
+ "_id": "I5cRfq3yNIuDf0vw",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uNGu5eTQYiUnUKrA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 3500,
+ 6125,
+ 3538,
+ 6050
+ ],
+ "_id": "KMWEpMA1OWq1kp3D",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "uNGu5eTQYiUnUKrA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!Afs7S5dk9kWkl9I1"
+}
diff --git a/packsrc/mass-edit-presets/Tree_D3_5x5_SdlmHvE9bJs5knxT.json b/packsrc/mass-edit-presets/Tree_D3_5x5_SdlmHvE9bJs5knxT.json
new file mode 100644
index 0000000..ec5afe9
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_D3_5x5_SdlmHvE9bJs5knxT.json
@@ -0,0 +1,543 @@
+{
+ "_id": "SdlmHvE9bJs5knxT",
+ "name": "Tree_D3_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "SdlmHvE9bJs5knxT",
+ "name": "Tree_D3_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D3_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 5600,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "dbzd3vTv0LT2yihK",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_D3_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D3_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_D3_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_D3_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_D3_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_D3_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_D3_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "2X44GZdgFFtB5Vm8",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "pdmfDJ7ebESxHZhG",
+ "placeableId": "dbzd3vTv0LT2yihK",
+ "filterInternalId": "2X44GZdgFFtB5Vm8",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1HiDvwDGFZycfabO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2100000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.SdlmHvE9bJs5knxT",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D3_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_D3_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4000,
+ "y": 5600,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "iKlpHdlkGiqHeHpB",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1HiDvwDGFZycfabO",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B3_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 4351,
+ "y": 5964,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 43,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "pxRT9Ya8lnQg7HGx",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1HiDvwDGFZycfabO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4500,
+ 6063,
+ 4525,
+ 6100
+ ],
+ "_id": "MHOEHEgEwhX37QTP",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1HiDvwDGFZycfabO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4525,
+ 6100,
+ 4513,
+ 6138
+ ],
+ "_id": "ieGxne1PaxT0uFG1",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1HiDvwDGFZycfabO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4513,
+ 6138,
+ 4463,
+ 6138
+ ],
+ "_id": "1jBsn9NGQcynSLWS",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1HiDvwDGFZycfabO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4463,
+ 6138,
+ 4438,
+ 6088
+ ],
+ "_id": "WhZoQNpJXvfGvkPg",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1HiDvwDGFZycfabO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4438,
+ 6088,
+ 4463,
+ 6050
+ ],
+ "_id": "Z01j7LEPukMKtEI5",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1HiDvwDGFZycfabO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 4463,
+ 6050,
+ 4500,
+ 6063
+ ],
+ "_id": "SQzlztycbM5WXhMo",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1HiDvwDGFZycfabO",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!SdlmHvE9bJs5knxT"
+}
diff --git a/packsrc/mass-edit-presets/Tree_D4_5x5_2Iaaks8WNo0RyY1O.json b/packsrc/mass-edit-presets/Tree_D4_5x5_2Iaaks8WNo0RyY1O.json
new file mode 100644
index 0000000..d40fcd1
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_D4_5x5_2Iaaks8WNo0RyY1O.json
@@ -0,0 +1,543 @@
+{
+ "_id": "2Iaaks8WNo0RyY1O",
+ "name": "Tree_D4_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "2Iaaks8WNo0RyY1O",
+ "name": "Tree_D4_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D4_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5000,
+ "y": 5600,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "sLwqykWaELM02hHQ",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_D4_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D4_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_D4_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_D4_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_D4_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_D4_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_D4_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "a7aDyx2rlFLLyzdE",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "9M8k7VmFhYnHfBnL",
+ "placeableId": "sLwqykWaELM02hHQ",
+ "filterInternalId": "a7aDyx2rlFLLyzdE",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TUZW4blAtMh7uJuA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2200000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.2Iaaks8WNo0RyY1O",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D4_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_D4_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5000,
+ "y": 5600,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "aDr1VOOd0JNm1NqU",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TUZW4blAtMh7uJuA",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B4_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 5396,
+ "y": 5984,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 44,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Krr1bqpVBflxdpgl",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TUZW4blAtMh7uJuA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5513,
+ 6075,
+ 5563,
+ 6088
+ ],
+ "_id": "NnR03Zr5Cl5QL3zm",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TUZW4blAtMh7uJuA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5563,
+ 6088,
+ 5575,
+ 6138
+ ],
+ "_id": "vSVz9Nco9z485C4s",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TUZW4blAtMh7uJuA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5575,
+ 6138,
+ 5525,
+ 6175
+ ],
+ "_id": "imJhzxCljBKqcZa8",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TUZW4blAtMh7uJuA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5525,
+ 6175,
+ 5488,
+ 6150
+ ],
+ "_id": "pNzAc4y7vvgtQ5S0",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TUZW4blAtMh7uJuA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5488,
+ 6150,
+ 5488,
+ 6113
+ ],
+ "_id": "wML7xWK0FTCgaGZE",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TUZW4blAtMh7uJuA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 5488,
+ 6113,
+ 5513,
+ 6075
+ ],
+ "_id": "rbvf2k43Bnj5h5Hh",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "TUZW4blAtMh7uJuA",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!2Iaaks8WNo0RyY1O"
+}
diff --git a/packsrc/mass-edit-presets/Tree_D5_5x5_SIYfKaoirm3KzZNY.json b/packsrc/mass-edit-presets/Tree_D5_5x5_SIYfKaoirm3KzZNY.json
new file mode 100644
index 0000000..ca5125d
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_D5_5x5_SIYfKaoirm3KzZNY.json
@@ -0,0 +1,498 @@
+{
+ "_id": "SIYfKaoirm3KzZNY",
+ "name": "Tree_D5_5x5",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "SIYfKaoirm3KzZNY",
+ "name": "Tree_D5_5x5",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D5_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6000,
+ "y": 5600,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "itSDKyOi6RhQ6eo3",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_D5_5x5",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D5_5x5.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_D5_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_D5_5x5.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_D5_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_D5_5x5.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_D5_5x5.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "GlTHeJnxR1z8HZ9c",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "w6jnBW4gdZVrQ9zu",
+ "placeableId": "itSDKyOi6RhQ6eo3",
+ "filterInternalId": "GlTHeJnxR1z8HZ9c",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "RXMNubddbi7NkPyl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2300000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.SIYfKaoirm3KzZNY",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D5_5x5.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_D5_5x5.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6000,
+ "y": 5600,
+ "width": 1000,
+ "height": 1000,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "HOGZVMBAHzoDSYLe",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "RXMNubddbi7NkPyl",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Dark_B5_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 6372,
+ "y": 5963,
+ "width": 267,
+ "height": 267,
+ "elevation": 0,
+ "sort": 45,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "L4XDTdUo5vD1el1O",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "RXMNubddbi7NkPyl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6463,
+ 6088,
+ 6500,
+ 6050
+ ],
+ "_id": "YaLtD8GsxkAcnaps",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "RXMNubddbi7NkPyl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6500,
+ 6050,
+ 6550,
+ 6088
+ ],
+ "_id": "QsAg3Vtgz2ZvRg2h",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "RXMNubddbi7NkPyl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6550,
+ 6088,
+ 6550,
+ 6138
+ ],
+ "_id": "1lV60v3tnOCQApXf",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "RXMNubddbi7NkPyl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6550,
+ 6138,
+ 6488,
+ 6138
+ ],
+ "_id": "xPhT9i8LqSQlgyKG",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "RXMNubddbi7NkPyl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 6488,
+ 6138,
+ 6463,
+ 6088
+ ],
+ "_id": "V3iOfMyXo6UjnV36",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "RXMNubddbi7NkPyl",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!SIYfKaoirm3KzZNY"
+}
diff --git a/packsrc/mass-edit-presets/Tree_D6_3x3_IakSz93I7CoOz344.json b/packsrc/mass-edit-presets/Tree_D6_3x3_IakSz93I7CoOz344.json
new file mode 100644
index 0000000..3fcaa54
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_D6_3x3_IakSz93I7CoOz344.json
@@ -0,0 +1,453 @@
+{
+ "_id": "IakSz93I7CoOz344",
+ "name": "Tree_D6_3x3",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "IakSz93I7CoOz344",
+ "name": "Tree_D6_3x3",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D6_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7000,
+ "y": 5600,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "OtF5S6quR4TWdxaR",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_D6_3x3",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D6_3x3.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_D6_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_D6_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_D6_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_D6_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_D6_3x3.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "V6b5EX1whny3IO2m",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "hsjHwMNIHoMQUzSv",
+ "placeableId": "OtF5S6quR4TWdxaR",
+ "filterInternalId": "V6b5EX1whny3IO2m",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yylkSyLM4hf49YZk",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2400000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.IakSz93I7CoOz344",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D6_3x3.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_D6_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7000,
+ "y": 5600,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "0I2eLLWDf3zb0R3I",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yylkSyLM4hf49YZk",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B4_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7213,
+ "y": 5831,
+ "width": 178,
+ "height": 178,
+ "elevation": 0,
+ "sort": 49,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "nG1phmZGhU3ptnmC",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yylkSyLM4hf49YZk",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7288,
+ 5900,
+ 7313,
+ 5900
+ ],
+ "_id": "aNfdgWRr78I6cVTt",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yylkSyLM4hf49YZk",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7313,
+ 5900,
+ 7325,
+ 5938
+ ],
+ "_id": "Ll2Ih0uDQmJrIYOW",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yylkSyLM4hf49YZk",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7325,
+ 5938,
+ 7288,
+ 5950
+ ],
+ "_id": "Xqg6cCHENZ8N3w1l",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yylkSyLM4hf49YZk",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7288,
+ 5950,
+ 7288,
+ 5900
+ ],
+ "_id": "28n5EFl6WnNGyDln",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "yylkSyLM4hf49YZk",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!IakSz93I7CoOz344"
+}
diff --git a/packsrc/mass-edit-presets/Tree_D7_3x3_oS1XP3W3MfFmA0mA.json b/packsrc/mass-edit-presets/Tree_D7_3x3_oS1XP3W3MfFmA0mA.json
new file mode 100644
index 0000000..7ecd07b
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_D7_3x3_oS1XP3W3MfFmA0mA.json
@@ -0,0 +1,453 @@
+{
+ "_id": "oS1XP3W3MfFmA0mA",
+ "name": "Tree_D7_3x3",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "oS1XP3W3MfFmA0mA",
+ "name": "Tree_D7_3x3",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D7_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7600,
+ "y": 5600,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "msIlzISi4ZaQ6PmU",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_D7_3x3",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D7_3x3.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_D7_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_D7_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_D7_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_D7_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_D7_3x3.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "9l7G5FHxErkFI1dF",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "AHihbJfjMKq2C3yG",
+ "placeableId": "msIlzISi4ZaQ6PmU",
+ "filterInternalId": "9l7G5FHxErkFI1dF",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "gl8JvdtVkfFxHFSv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2500000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.oS1XP3W3MfFmA0mA",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D7_3x3.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_D7_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7600,
+ "y": 5600,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Pz10q8ofdjgMnYKd",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "gl8JvdtVkfFxHFSv",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B5_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 7808,
+ "y": 5841,
+ "width": 178,
+ "height": 178,
+ "elevation": 0,
+ "sort": 50,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "kphQeHNf7HQUzhCM",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "gl8JvdtVkfFxHFSv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7900,
+ 5900,
+ 7863,
+ 5938
+ ],
+ "_id": "TGTmHA7pwdtq6D6T",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "gl8JvdtVkfFxHFSv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7863,
+ 5938,
+ 7888,
+ 5963
+ ],
+ "_id": "wKRX4RQkI2FajyX4",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "gl8JvdtVkfFxHFSv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7888,
+ 5963,
+ 7925,
+ 5938
+ ],
+ "_id": "HgvtK9AThz6uJ7J1",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "gl8JvdtVkfFxHFSv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 7925,
+ 5938,
+ 7900,
+ 5900
+ ],
+ "_id": "Mirr5pRqXI8shPCq",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "gl8JvdtVkfFxHFSv",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!oS1XP3W3MfFmA0mA"
+}
diff --git a/packsrc/mass-edit-presets/Tree_D8_3x3_iFrKPuvDZWnyn3HK.json b/packsrc/mass-edit-presets/Tree_D8_3x3_iFrKPuvDZWnyn3HK.json
new file mode 100644
index 0000000..23aac95
--- /dev/null
+++ b/packsrc/mass-edit-presets/Tree_D8_3x3_iFrKPuvDZWnyn3HK.json
@@ -0,0 +1,453 @@
+{
+ "_id": "iFrKPuvDZWnyn3HK",
+ "name": "Tree_D8_3x3",
+ "pages": [],
+ "folder": "EVsZCt5iMs8NBkuT",
+ "flags": {
+ "multi-token-edit": {
+ "preset": {
+ "id": "iFrKPuvDZWnyn3HK",
+ "name": "Tree_D8_3x3",
+ "data": [
+ {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D8_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 8200,
+ "y": 5600,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 20,
+ "occlusion": {
+ "mode": 1,
+ "alpha": 0
+ },
+ "_id": "8YkwRywtsYo9mhXK",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "Tree_D8_3x3",
+ "TreeCanopy",
+ "TreeLeafy"
+ ]
+ },
+ "multiface-tiles": {
+ "originalImage": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D8_3x3.webp",
+ "altImages": [
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Multicolor1_D8_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Red_D8_3x3.webp",
+ "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Yellow_D8_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor2_D8_3x3.webp",
+ "fa/assets/Feywilds/!Wilderness/Flora/Trees/Tree_Multicolor3_D8_3x3.webp"
+ ]
+ },
+ "tokenmagic": {
+ "filters": [
+ {
+ "tmFilters": {
+ "tmFilterId": "MB - Tree Breeze Ripple",
+ "tmFilterInternalId": "MQtHMS5GCxJvxH3N",
+ "tmFilterType": "distortion",
+ "tmFilterOwner": "sVoCvBU1knmXzoYe",
+ "tmParams": {
+ "filterType": "distortion",
+ "filterId": "MB - Tree Breeze Ripple",
+ "maskPath": "/modules/tokenmagic/fx/assets/distortion-1.png",
+ "maskSpriteScaleX": 8,
+ "maskSpriteScaleY": 4,
+ "padding": 20,
+ "animated": {
+ "maskSpriteX": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ },
+ "maskSpriteY": {
+ "active": true,
+ "speed": 0.015,
+ "animType": "move"
+ }
+ },
+ "rank": 10018,
+ "enabled": true,
+ "updateId": "lsEs9Dv7ZNWni9gS",
+ "placeableId": "8YkwRywtsYo9mhXK",
+ "filterInternalId": "MQtHMS5GCxJvxH3N",
+ "filterOwner": "sVoCvBU1knmXzoYe",
+ "placeableType": "Tile"
+ }
+ }
+ }
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1r7PdHzBPjJWO4iJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "sort": 2600000,
+ "folder": "EVsZCt5iMs8NBkuT",
+ "uuid": "Compendium.world.mass-edit-presets-main.JournalEntry.iFrKPuvDZWnyn3HK",
+ "documentName": "Tile",
+ "addSubtract": [],
+ "randomize": [],
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D8_3x3.webp",
+ "gridSize": 200,
+ "preSpawnScript": "",
+ "postSpawnScript": "fromUuid('Compendium.mb-assets.asset-macros.Macro.jXyqie75jEVIFvb8').then(macro => macro.execute({objects}))",
+ "spawnRandom": false,
+ "attached": [
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Shadows/Tree_Shadow_D8_3x3.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 8200,
+ "y": 5600,
+ "width": 600,
+ "height": 600,
+ "elevation": 4,
+ "sort": 10,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "LM9Wc7QrM75VCxCB",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeShadow"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1r7PdHzBPjJWO4iJ",
+ "type": 1
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Tile",
+ "data": {
+ "texture": {
+ "src": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Stumps/Stump_Light_B6_4x4.webp",
+ "anchorX": 0.5,
+ "anchorY": 0.5,
+ "offsetX": 0,
+ "offsetY": 0,
+ "fit": "fill",
+ "scaleX": 1,
+ "scaleY": 1,
+ "rotation": 0,
+ "tint": "#ffffff",
+ "alphaThreshold": 0.75
+ },
+ "x": 8410,
+ "y": 5783,
+ "width": 178,
+ "height": 178,
+ "elevation": 0,
+ "sort": 51,
+ "occlusion": {
+ "mode": 0,
+ "alpha": 0
+ },
+ "_id": "Hj8SJDG0zCXhNjPo",
+ "rotation": 0,
+ "alpha": 1,
+ "hidden": false,
+ "locked": false,
+ "restrictions": {
+ "light": false,
+ "weather": false
+ },
+ "video": {
+ "loop": true,
+ "autoplay": true,
+ "volume": 0
+ },
+ "flags": {
+ "tagger": {
+ "tags": [
+ "TreeStump"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1r7PdHzBPjJWO4iJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8488,
+ 5850,
+ 8463,
+ 5875
+ ],
+ "_id": "WmAHrmm6pFKStTBH",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1r7PdHzBPjJWO4iJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8463,
+ 5875,
+ 8488,
+ 5913
+ ],
+ "_id": "lrHVwzhZAozVBtZY",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1r7PdHzBPjJWO4iJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8488,
+ 5913,
+ 8525,
+ 5888
+ ],
+ "_id": "nkxh2iqHJxlm8WfU",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1r7PdHzBPjJWO4iJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "documentName": "Wall",
+ "data": {
+ "light": 10,
+ "sight": 10,
+ "sound": 0,
+ "move": 0,
+ "c": [
+ 8525,
+ 5888,
+ 8488,
+ 5850
+ ],
+ "_id": "xVhSj8fBtw49blJo",
+ "dir": 0,
+ "door": 0,
+ "ds": 0,
+ "threshold": {
+ "light": null,
+ "sight": null,
+ "sound": null,
+ "attenuation": false
+ },
+ "animation": null,
+ "flags": {
+ "wall-height": {
+ "top": 3.5,
+ "bottom": 0
+ },
+ "tagger": {
+ "tags": [
+ "TreeWall"
+ ]
+ },
+ "multi-token-edit": {
+ "links": [
+ {
+ "id": "1r7PdHzBPjJWO4iJ",
+ "type": 0
+ }
+ ]
+ }
+ }
+ }
+ }
+ ],
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ],
+ "preserveLinks": false
+ }
+ }
+ },
+ "categories": [],
+ "sort": 0,
+ "ownership": {
+ "default": 0,
+ "sVoCvBU1knmXzoYe": 3
+ },
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750631453770,
+ "modifiedTime": 1750631453770,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!journal!iFrKPuvDZWnyn3HK"
+}
diff --git a/packsrc/mass-edit-presets/Trees_EVsZCt5iMs8NBkuT.json b/packsrc/mass-edit-presets/Trees_EVsZCt5iMs8NBkuT.json
new file mode 100644
index 0000000..fc31844
--- /dev/null
+++ b/packsrc/mass-edit-presets/Trees_EVsZCt5iMs8NBkuT.json
@@ -0,0 +1,28 @@
+{
+ "_id": "EVsZCt5iMs8NBkuT",
+ "name": "Trees",
+ "color": null,
+ "sorting": "m",
+ "folder": "7Hhzf59jc7SqF5x4",
+ "flags": {
+ "multi-token-edit": {
+ "types": [
+ "ALL",
+ "Tile"
+ ]
+ }
+ },
+ "type": "JournalEntry",
+ "description": "",
+ "sort": 0,
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "lastModifiedBy": null
+ },
+ "_key": "!folders!EVsZCt5iMs8NBkuT"
+}
diff --git a/packsrc/mass-edit-presets/Wilderness_OsZiOH83adaCRaaR.json b/packsrc/mass-edit-presets/Wilderness_OsZiOH83adaCRaaR.json
new file mode 100644
index 0000000..dd41dc1
--- /dev/null
+++ b/packsrc/mass-edit-presets/Wilderness_OsZiOH83adaCRaaR.json
@@ -0,0 +1,30 @@
+{
+ "_id": "OsZiOH83adaCRaaR",
+ "name": "Wilderness",
+ "color": null,
+ "sorting": "m",
+ "folder": null,
+ "flags": {
+ "multi-token-edit": {
+ "types": [
+ "ALL",
+ "Tile"
+ ]
+ }
+ },
+ "type": "JournalEntry",
+ "description": "",
+ "sort": 0,
+ "_stats": {
+ "compendiumSource": null,
+ "duplicateSource": null,
+ "exportSource": null,
+ "coreVersion": "13.345",
+ "systemId": "swade",
+ "systemVersion": "5.0.3",
+ "createdTime": 1750645042339,
+ "modifiedTime": 1750645042339,
+ "lastModifiedBy": "sVoCvBU1knmXzoYe"
+ },
+ "_key": "!folders!OsZiOH83adaCRaaR"
+}
diff --git a/packsrc/mass-edit-presets/____METADATA__DO_NOT_DELETE_____MassEditMetaData.json b/packsrc/mass-edit-presets/____METADATA__DO_NOT_DELETE_____MassEditMetaData.json
index 12197ea..1a8c18f 100644
--- a/packsrc/mass-edit-presets/____METADATA__DO_NOT_DELETE_____MassEditMetaData.json
+++ b/packsrc/mass-edit-presets/____METADATA__DO_NOT_DELETE_____MassEditMetaData.json
@@ -76,580 +76,6 @@
"documentName": "AmbientLight",
"tags": []
},
- "j0lYyIfB3OsqDdIZ": {
- "id": "j0lYyIfB3OsqDdIZ",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_A1_8x9.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "rA6bnQ54UilkVcNq": {
- "id": "rA6bnQ54UilkVcNq",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_A2_11x10.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "cA8GkIiNpO6PEOet": {
- "id": "cA8GkIiNpO6PEOet",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_A3_9x8.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "2p8oXvqyxs2WpOau": {
- "id": "2p8oXvqyxs2WpOau",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_A4_8x9.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "43uQLshfZo9AOWib": {
- "id": "43uQLshfZo9AOWib",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_A5_9x8.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "JONE5Ibxsmzm8COA": {
- "id": "JONE5Ibxsmzm8COA",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_A6_8x8.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "Q1CzPYG3ew34Sbiw": {
- "id": "Q1CzPYG3ew34Sbiw",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_A7_10x10.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "gUHxOVw3s22VeiD7": {
- "id": "gUHxOVw3s22VeiD7",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_A8_10x11.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "SR7qVEv1Cr1gw85K": {
- "id": "SR7qVEv1Cr1gw85K",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_A9_9x9.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "rNZQJE8hBMZwqGa1": {
- "id": "rNZQJE8hBMZwqGa1",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_A10_8x9.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "s46sFgRrR3vTUI3X": {
- "id": "s46sFgRrR3vTUI3X",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B1_8x9.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "9l3UKpGvjWa8GY9I": {
- "id": "9l3UKpGvjWa8GY9I",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B2_11x10.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "I0PejdQ5VLOM0io7": {
- "id": "I0PejdQ5VLOM0io7",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B3_9x8.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "ivD9m6qbRTPPkLh5": {
- "id": "ivD9m6qbRTPPkLh5",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B4_8x9.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "GK6Bpm5AvO25hOcg": {
- "id": "GK6Bpm5AvO25hOcg",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B5_9x8.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "AiyT7rI0abxpOnrV": {
- "id": "AiyT7rI0abxpOnrV",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B6_8x8.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "vzJymNBkVoFcis33": {
- "id": "vzJymNBkVoFcis33",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B7_10x10.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "2IhIkcSXrYwpDScA": {
- "id": "2IhIkcSXrYwpDScA",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B8_10x11.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "2X57o9ExlhLhWrQA": {
- "id": "2X57o9ExlhLhWrQA",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B9_9x9.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "RnxFLojyii1tVULY": {
- "id": "RnxFLojyii1tVULY",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B10_8x9.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "bare",
- "fa-style"
- ]
- },
- "7wRmVQFUxbbmfDC8": {
- "id": "7wRmVQFUxbbmfDC8",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_A1_6x6.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "3RCkhV3XeIx5G3Qx": {
- "id": "3RCkhV3XeIx5G3Qx",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_A2_8x7.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "g20gtipYUJrU0T59": {
- "id": "g20gtipYUJrU0T59",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_A3_6x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "uLMyZzGI1alwhQNn": {
- "id": "uLMyZzGI1alwhQNn",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_A4_5x6.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "B3kZM6vDBIPpGeGP": {
- "id": "B3kZM6vDBIPpGeGP",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_A5_6x6.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "corQKkxPGUXmTpQH": {
- "id": "corQKkxPGUXmTpQH",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_A6_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "JZjFv0N0seEFrtAk": {
- "id": "JZjFv0N0seEFrtAk",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_A7_7x7.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "tl9AdyLkPID4nMii": {
- "id": "tl9AdyLkPID4nMii",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_A8_7x7.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "THuTbZWy9FfThZyE": {
- "id": "THuTbZWy9FfThZyE",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_A9_6x6.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "HUbUWsfv39jM0xKA": {
- "id": "HUbUWsfv39jM0xKA",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_A10_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "u1ufj3PZG1Uwaahb": {
- "id": "u1ufj3PZG1Uwaahb",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_B1_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "Ufni9Fa14QdYAE5X": {
- "id": "Ufni9Fa14QdYAE5X",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_B2_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "XjjGiIYABYH2PpZU": {
- "id": "XjjGiIYABYH2PpZU",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_B3_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "ronBCJbj1ul8qGiQ": {
- "id": "ronBCJbj1ul8qGiQ",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_B4_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "Iaf9hJPMvnLKOYoG": {
- "id": "Iaf9hJPMvnLKOYoG",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_B5_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "zjdzg3QKzujGZaoD": {
- "id": "zjdzg3QKzujGZaoD",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_C1_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "zOGnOuAkAdNsidQz": {
- "id": "zOGnOuAkAdNsidQz",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_C2_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "io5gdQ2hWMJFbl8F": {
- "id": "io5gdQ2hWMJFbl8F",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_C3_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "tLkB4QYQsRfdajQs": {
- "id": "tLkB4QYQsRfdajQs",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_C4_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "hvetqYYk8P7MQOHX": {
- "id": "hvetqYYk8P7MQOHX",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_C5_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "P3JITQ3EsfyLJy2N": {
- "id": "P3JITQ3EsfyLJy2N",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_C6_3x3.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "JDZ8ogfNIOJQW9RB": {
- "id": "JDZ8ogfNIOJQW9RB",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_C7_3x3.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "afx5bivZyi59eFed": {
- "id": "afx5bivZyi59eFed",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_C8_3x3.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "F4mraHDjWn4QTcTV": {
- "id": "F4mraHDjWn4QTcTV",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_D1_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "R2VOLHTLBQpMJMMD": {
- "id": "R2VOLHTLBQpMJMMD",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_D2_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "3zZH0u44afoPPNti": {
- "id": "3zZH0u44afoPPNti",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_D3_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "cGWnDX0RhtE8LFi1": {
- "id": "cGWnDX0RhtE8LFi1",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_D4_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "wh9X4a17TdzzBpTC": {
- "id": "wh9X4a17TdzzBpTC",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_D5_5x5.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "VQdK9Ptb0Uw59aDD": {
- "id": "VQdK9Ptb0Uw59aDD",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_D6_3x3.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "ccktZUNo9oh1uX3I": {
- "id": "ccktZUNo9oh1uX3I",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_D7_3x3.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "i9wqaqhQVz7foVkq": {
- "id": "i9wqaqhQVz7foVkq",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Tree_Tops/Tree_Green_D8_3x3.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "leafy",
- "fa-style"
- ]
- },
- "imGRPSGZAC4O6uah": {
- "id": "imGRPSGZAC4O6uah",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Pine_Trees/Pine_Green_A1_4x4.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "pine",
- "fa-style"
- ]
- },
- "KdRyZwRaBxhtRHLh": {
- "id": "KdRyZwRaBxhtRHLh",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Pine_Trees/Pine_Green_A2_4x4.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "pine",
- "fa-style"
- ]
- },
- "NQVgH5VTP1A33lIk": {
- "id": "NQVgH5VTP1A33lIk",
- "img": "assets/tiles/forgotten-adventures/Flora/Trees/Pine_Trees/Pine_Green_A3_4x4.webp",
- "documentName": "Tile",
- "tags": [
- "tree",
- "green",
- "pine",
- "fa-style"
- ]
- },
"lykNH1CF1odY11vX": {
"id": "lykNH1CF1odY11vX",
"img": "icons/svg/circle.svg",
@@ -668,343 +94,644 @@
"silence"
]
},
- "YOw1XiM7KRporF4m": {
- "id": "YOw1XiM7KRporF4m",
- "img": "assets/tiles/active/fa-doors/Door_Wood_Dark_L.closed.webp",
+ "lN1XagNzbEfTk7OG": {
+ "id": "lN1XagNzbEfTk7OG",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A1_6x6.webp",
"documentName": "Tile",
"tags": [
- "door",
+ "tree",
+ "fa",
+ "leafy",
+ "style-a"
+ ]
+ },
+ "rXQJOi2Hi9kmrYXZ": {
+ "id": "rXQJOi2Hi9kmrYXZ",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A2_8x7.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-a"
+ ]
+ },
+ "WZdAmc2bjmOxnOVn": {
+ "id": "WZdAmc2bjmOxnOVn",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A3_6x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-a"
+ ]
+ },
+ "iVGagdFBAHBDGZgZ": {
+ "id": "iVGagdFBAHBDGZgZ",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A4_5x6.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-a"
+ ]
+ },
+ "XIutuaIC9qVuoQmC": {
+ "id": "XIutuaIC9qVuoQmC",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_A5_6x6.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-a"
+ ]
+ },
+ "ufXS6HUAiNMm7ufQ": {
+ "id": "ufXS6HUAiNMm7ufQ",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B1_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-b"
+ ]
+ },
+ "JO3Z6swCJg4LKIyu": {
+ "id": "JO3Z6swCJg4LKIyu",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B2_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-b"
+ ]
+ },
+ "TEVentXNWNgcbLl8": {
+ "id": "TEVentXNWNgcbLl8",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B3_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-b"
+ ]
+ },
+ "pYXDqgwyj83C89zE": {
+ "id": "pYXDqgwyj83C89zE",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B4_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-b"
+ ]
+ },
+ "s9rH3RPws1blnan0": {
+ "id": "s9rH3RPws1blnan0",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_B5_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-b"
+ ]
+ },
+ "WxdhcLOfP6mH3JI6": {
+ "id": "WxdhcLOfP6mH3JI6",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C1_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ]
+ },
+ "MTG3tWrAbc5Q14f8": {
+ "id": "MTG3tWrAbc5Q14f8",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C2_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ]
+ },
+ "z0mctTk3NKbIymjU": {
+ "id": "z0mctTk3NKbIymjU",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C3_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ]
+ },
+ "jkP8Xf48Xi996RYH": {
+ "id": "jkP8Xf48Xi996RYH",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C4_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ]
+ },
+ "CwvsgfpmApzGBPKj": {
+ "id": "CwvsgfpmApzGBPKj",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C5_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ]
+ },
+ "A3MboNOE7cqMAJtk": {
+ "id": "A3MboNOE7cqMAJtk",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C6_3x3.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ]
+ },
+ "udCLRvHwGSZgUGHn": {
+ "id": "udCLRvHwGSZgUGHn",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C7_3x3.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ]
+ },
+ "pR1aPmgiPrpUeYDv": {
+ "id": "pR1aPmgiPrpUeYDv",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_C8_3x3.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-c"
+ ]
+ },
+ "xAVJiKqpnbuHhxMI": {
+ "id": "xAVJiKqpnbuHhxMI",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D1_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ]
+ },
+ "Afs7S5dk9kWkl9I1": {
+ "id": "Afs7S5dk9kWkl9I1",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D2_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ]
+ },
+ "SdlmHvE9bJs5knxT": {
+ "id": "SdlmHvE9bJs5knxT",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D3_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ]
+ },
+ "2Iaaks8WNo0RyY1O": {
+ "id": "2Iaaks8WNo0RyY1O",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D4_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ]
+ },
+ "SIYfKaoirm3KzZNY": {
+ "id": "SIYfKaoirm3KzZNY",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D5_5x5.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ]
+ },
+ "IakSz93I7CoOz344": {
+ "id": "IakSz93I7CoOz344",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D6_3x3.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ]
+ },
+ "oS1XP3W3MfFmA0mA": {
+ "id": "oS1XP3W3MfFmA0mA",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D7_3x3.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ]
+ },
+ "iFrKPuvDZWnyn3HK": {
+ "id": "iFrKPuvDZWnyn3HK",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Tree_Green_D8_3x3.webp",
+ "documentName": "Tile",
+ "tags": [
+ "tree",
+ "fa",
+ "leafy",
+ "style-d"
+ ]
+ },
+ "CQij73v9550W57iY": {
+ "id": "CQij73v9550W57iY",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B1_8x9.webp",
+ "documentName": "Tile",
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "dark",
"wood"
]
},
- "VASvRO76xgBzHzn5": {
- "id": "VASvRO76xgBzHzn5",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Conifer_03_Large.png",
+ "3cMgbQLSDJUhA9PZ": {
+ "id": "3cMgbQLSDJUhA9PZ",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B2_11x10.webp",
+ "documentName": "Tile",
+ "tags": []
+ },
+ "f5oLtF2UIYob6OoM": {
+ "id": "f5oLtF2UIYob6OoM",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B3_9x8.webp",
"documentName": "Tile",
"tags": [
+ "fa",
"tree",
- "conifer",
- "dd-style"
+ "bare",
+ "dark",
+ "wood"
]
},
- "MV274AzMw8K5h31B": {
- "id": "MV274AzMw8K5h31B",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Conifer_04_Medium.png",
+ "62baVbkoegs3p3mU": {
+ "id": "62baVbkoegs3p3mU",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B4_8x9.webp",
"documentName": "Tile",
"tags": [
+ "fa",
"tree",
- "conifer",
- "dd-style"
+ "bare",
+ "dark",
+ "wood"
]
},
- "R6kQ17FKHcKcCTGX": {
- "id": "R6kQ17FKHcKcCTGX",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Conifer_05_Small.png",
+ "kLyow4BBJxT4bai3": {
+ "id": "kLyow4BBJxT4bai3",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B5_9x8.webp",
"documentName": "Tile",
"tags": [
+ "fa",
"tree",
- "conifer",
- "dd-style"
+ "bare",
+ "dark",
+ "wood"
]
},
- "mAzfSNhMWsUKFvGj": {
- "id": "mAzfSNhMWsUKFvGj",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Conifer_06_Small.png",
+ "gWxwZpmNjg7wouX6": {
+ "id": "gWxwZpmNjg7wouX6",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B6_8x8.webp",
"documentName": "Tile",
"tags": [
+ "fa",
"tree",
- "conifer",
- "dd-style"
+ "bare",
+ "dark",
+ "wood"
]
},
- "A71xS4fMUUvl8AUA": {
- "id": "A71xS4fMUUvl8AUA",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Conifer_07_Tiny.png",
+ "UU8sC0zLfRgeUIzb": {
+ "id": "UU8sC0zLfRgeUIzb",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B7_10x10.webp",
"documentName": "Tile",
"tags": [
+ "fa",
"tree",
- "conifer",
- "dd-style"
+ "bare",
+ "dark",
+ "wood"
]
},
- "W4LEGOxm8op9G1u6": {
- "id": "W4LEGOxm8op9G1u6",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Frond_01_Large.png",
+ "w4naaZQWylF6ywE7": {
+ "id": "w4naaZQWylF6ywE7",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B8_10x11.webp",
"documentName": "Tile",
"tags": [
+ "fa",
"tree",
- "frond",
- "dd-style"
+ "bare",
+ "dark",
+ "wood"
]
},
- "hIEQicuVzRTCvxKv": {
- "id": "hIEQicuVzRTCvxKv",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Frond_02_Medium.png",
+ "Stt1NfzEAzbBToJN": {
+ "id": "Stt1NfzEAzbBToJN",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B9_9x9.webp",
"documentName": "Tile",
"tags": [
+ "fa",
"tree",
- "frond",
- "dd-style"
+ "bare",
+ "dark",
+ "wood"
]
},
- "SxVyjBXyxkXJZQIh": {
- "id": "SxVyjBXyxkXJZQIh",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Frond_03_Small.png",
+ "xFknz35l1hk1m0CP": {
+ "id": "xFknz35l1hk1m0CP",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Dark_B10_8x9.webp",
"documentName": "Tile",
"tags": [
+ "fa",
"tree",
- "frond",
- "dd-style"
+ "bare",
+ "dark",
+ "wood"
]
},
- "2uRgVFSREUAAfVDd": {
- "id": "2uRgVFSREUAAfVDd",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Leafy_01_Massive.png",
- "documentName": "Tile",
- "tags": [
- "tree",
- "leafy",
- "dd-style"
- ]
- },
- "53CcexLYPc7ZIN51": {
- "id": "53CcexLYPc7ZIN51",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Leafy_02_Rather_Large.png",
- "documentName": "Tile",
- "tags": [
- "tree",
- "leafy",
- "dd-style"
- ]
- },
- "kleM3JGOM1jGV7pH": {
- "id": "kleM3JGOM1jGV7pH",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Leafy_03_Large.png",
- "documentName": "Tile",
- "tags": [
- "tree",
- "leafy",
- "dd-style"
- ]
- },
- "5kYyuCCMekKvbFW3": {
- "id": "5kYyuCCMekKvbFW3",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Leafy_04%20_Medium.png",
- "documentName": "Tile",
- "tags": [
- "tree",
- "leafy",
- "dd-style"
- ]
- },
- "WBMszxpQavpVBd2v": {
- "id": "WBMszxpQavpVBd2v",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Leafy_05_Medium.png",
- "documentName": "Tile",
- "tags": [
- "tree",
- "leafy",
- "dd-style"
- ]
- },
- "SdI5ETpc0UKneTMt": {
- "id": "SdI5ETpc0UKneTMt",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Leafy_06_Small.png",
- "documentName": "Tile",
- "tags": [
- "tree",
- "leafy",
- "dd-style"
- ]
- },
- "BUK5BqW4Ko6kWIXL": {
- "id": "BUK5BqW4Ko6kWIXL",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Leafy_07_Small.png",
- "documentName": "Tile",
- "tags": [
- "tree",
- "leafy",
- "dd-style"
- ]
- },
- "XvJs5UYH4ZqGOTFL": {
- "id": "XvJs5UYH4ZqGOTFL",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Leafy_08_Tiny.png",
- "documentName": "Tile",
- "tags": [
- "tree",
- "leafy",
- "dd-style"
- ]
- },
- "9RjEOm2mfaS7Fy5q": {
- "id": "9RjEOm2mfaS7Fy5q",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Leafy_09_Tiny.png",
- "documentName": "Tile",
- "tags": [
- "tree",
- "leafy",
- "dd-style"
- ]
- },
- "wZ2ZQJ5t6AY8Th63": {
- "id": "wZ2ZQJ5t6AY8Th63",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Trunk_01_Massive.png",
+ "Hluflk5VK4jxwOvD": {
+ "id": "Hluflk5VK4jxwOvD",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B1_8x9.webp",
"documentName": "Tile",
"tags": [
"tree",
"bare",
- "dd-style"
+ "fa",
+ "ashen",
+ "wood"
]
},
- "SpGsKU9uk4IjpJFr": {
- "id": "SpGsKU9uk4IjpJFr",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Trunk_02_Rather_Large.png",
+ "3QMUweqIPcgoHtn1": {
+ "id": "3QMUweqIPcgoHtn1",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B2_11x10.webp",
"documentName": "Tile",
"tags": [
"tree",
"bare",
- "dd-style"
+ "fa",
+ "ashen",
+ "wood"
]
},
- "7NgWFrwsKPLyYwah": {
- "id": "7NgWFrwsKPLyYwah",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Trunk_03_Large.png",
+ "JzykxHR1l1ywhLz7": {
+ "id": "JzykxHR1l1ywhLz7",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B3_9x8.webp",
"documentName": "Tile",
"tags": [
"tree",
"bare",
- "dd-style"
+ "fa",
+ "ashen",
+ "wood"
]
},
- "qIm1Pmps39MK7XVR": {
- "id": "qIm1Pmps39MK7XVR",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Trunk_04_Large.png",
+ "nktxGgWuoEbASyvt": {
+ "id": "nktxGgWuoEbASyvt",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B4_8x9.webp",
"documentName": "Tile",
"tags": [
"tree",
"bare",
- "dd-style"
+ "fa",
+ "ashen",
+ "wood"
]
},
- "8fSvoh9MxerJlu79": {
- "id": "8fSvoh9MxerJlu79",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Trunk_05_Medium.png",
+ "VhtF1tY7heS7JvmU": {
+ "id": "VhtF1tY7heS7JvmU",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B5_9x8.webp",
"documentName": "Tile",
"tags": [
"tree",
"bare",
- "dd-style"
+ "fa",
+ "ashen",
+ "wood"
]
},
- "t9TXPwY0FX6gmTyb": {
- "id": "t9TXPwY0FX6gmTyb",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Trunk_06_Small.png",
+ "uiu2R7e3egQ95TLR": {
+ "id": "uiu2R7e3egQ95TLR",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B6_8x8.webp",
"documentName": "Tile",
"tags": [
"tree",
"bare",
- "dd-style"
+ "fa",
+ "ashen",
+ "wood"
]
},
- "MqC4Z8ZUvIrxFlAy": {
- "id": "MqC4Z8ZUvIrxFlAy",
- "img": "assets/tiles/dungeondraft/skront/trees/Tree_Trunk_07_Tiny.png",
+ "diJLh88EHCfxCNzM": {
+ "id": "diJLh88EHCfxCNzM",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B7_10x10.webp",
"documentName": "Tile",
"tags": [
"tree",
"bare",
- "dd-style"
+ "fa",
+ "ashen",
+ "wood"
]
},
- "QJCbQ3TmMf0XTEHb": {
- "id": "QJCbQ3TmMf0XTEHb",
- "img": "assets/tiles/dungeondraft/skront/bushes/Bush_Leafy_01.png",
+ "90gDCbKXqfJeJOIS": {
+ "id": "90gDCbKXqfJeJOIS",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B8_10x11.webp",
"documentName": "Tile",
"tags": [
- "dd-style",
- "bush",
- "leafy"
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
]
},
- "Jnfk3SOwVKNf8Mjn": {
- "id": "Jnfk3SOwVKNf8Mjn",
- "img": "assets/tiles/dungeondraft/skront/bushes/Bush_Leafy_02.png",
+ "3mJFOHq4SspPKKP8": {
+ "id": "3mJFOHq4SspPKKP8",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B9_9x9.webp",
"documentName": "Tile",
"tags": [
- "dd-style",
- "bush",
- "leafy"
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
]
},
- "ngZHMwLGaKNMR2yy": {
- "id": "ngZHMwLGaKNMR2yy",
- "img": "assets/tiles/dungeondraft/skront/bushes/Bush_Leafy_03.png",
+ "2FgRIPoVz5ljoDQF": {
+ "id": "2FgRIPoVz5ljoDQF",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Ashen_B10_8x9.webp",
"documentName": "Tile",
"tags": [
- "dd-style",
- "bush",
- "leafy"
+ "tree",
+ "bare",
+ "fa",
+ "ashen",
+ "wood"
]
},
- "WcsWkpb7AVZOEd1L": {
- "id": "WcsWkpb7AVZOEd1L",
- "img": "assets/tiles/dungeondraft/skront/bushes/Bush_Leafy_04.png",
+ "77Dc7tb95qq5yVgE": {
+ "id": "77Dc7tb95qq5yVgE",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B1_9x9.webp",
"documentName": "Tile",
"tags": [
- "dd-style",
- "bush",
- "leafy"
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
]
},
- "wwmn7dCj3wS3xj6C": {
- "id": "wwmn7dCj3wS3xj6C",
- "img": "assets/tiles/dungeondraft/skront/bushes/Bush_Leafy_05.png",
+ "6rWiBf3QuEzZ8JUt": {
+ "id": "6rWiBf3QuEzZ8JUt",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B2_11x11.webp",
"documentName": "Tile",
"tags": [
- "dd-style",
- "bush",
- "leafy"
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
]
},
- "4PbdVeSdldNTEJP4": {
- "id": "4PbdVeSdldNTEJP4",
- "img": "assets/tiles/dungeondraft/skront/bushes/Bush_Spiky_01.png",
+ "k4IG8QwgqS0IADs3": {
+ "id": "k4IG8QwgqS0IADs3",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B3_9x9.webp",
"documentName": "Tile",
"tags": [
- "dd-style",
- "bush",
- "spikey"
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
]
},
- "HQ5f8kWYRdiYDjMJ": {
- "id": "HQ5f8kWYRdiYDjMJ",
- "img": "assets/tiles/dungeondraft/skront/bushes/Bush_Spiky_02.png",
+ "dtJ9oxGrlmVr3aos": {
+ "id": "dtJ9oxGrlmVr3aos",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B4_8x9.webp",
"documentName": "Tile",
"tags": [
- "dd-style",
- "bush",
- "spikey"
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
]
},
- "l9MPm9Ar2NhExEtA": {
- "id": "l9MPm9Ar2NhExEtA",
- "img": "assets/tiles/dungeondraft/skront/bushes/Bush_Spiky_03.png",
+ "BAZM5h6QEQLrUFfd": {
+ "id": "BAZM5h6QEQLrUFfd",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B5_9x8.webp",
"documentName": "Tile",
"tags": [
- "dd-style",
- "bush",
- "spikey"
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
]
},
- "faumrDmyk0Squ0Ra": {
- "id": "faumrDmyk0Squ0Ra",
- "img": "assets/tiles/dungeondraft/skront/bushes/Bush_Spiky_04.png",
+ "zRxciV5dCcXasDub": {
+ "id": "zRxciV5dCcXasDub",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B6_8x8.webp",
"documentName": "Tile",
"tags": [
- "dd-style",
- "bush",
- "spikey"
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ]
+ },
+ "9vT4XFgn3EwvYhAv": {
+ "id": "9vT4XFgn3EwvYhAv",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B7_10x10.webp",
+ "documentName": "Tile",
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ]
+ },
+ "EyIn7kuosYsNfCw0": {
+ "id": "EyIn7kuosYsNfCw0",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B8_10x11.webp",
+ "documentName": "Tile",
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ]
+ },
+ "wqUfEQRgOaMIDCry": {
+ "id": "wqUfEQRgOaMIDCry",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B9_9x9.webp",
+ "documentName": "Tile",
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
+ ]
+ },
+ "CGYEktZcak7S96mk": {
+ "id": "CGYEktZcak7S96mk",
+ "img": "fa/assets/Woodlands/!Wilderness/Flora/Trees/Bare_Trees/Bare_Tree_Light_B10_8x9.webp",
+ "documentName": "Tile",
+ "tags": [
+ "fa",
+ "tree",
+ "bare",
+ "light",
+ "wood"
]
}
}
@@ -1020,12 +747,14 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.4.1",
- "coreVersion": "12.330",
+ "coreVersion": "13.345",
"createdTime": 1707793089424,
- "modifiedTime": 1723345950613,
+ "modifiedTime": 1750645043354,
"lastModifiedBy": "sVoCvBU1knmXzoYe",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
+ "categories": [],
"_key": "!journal!MassEditMetaData"
}
diff --git a/packsrc/playlists/Ambiance_pQRChUUC2iOiyoLO.json b/packsrc/playlists/Ambiance_pQRChUUC2iOiyoLO.json
index e610f3c..f9bb45c 100644
--- a/packsrc/playlists/Ambiance_pQRChUUC2iOiyoLO.json
+++ b/packsrc/playlists/Ambiance_pQRChUUC2iOiyoLO.json
@@ -28,12 +28,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.1.4",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1693073688276,
"modifiedTime": 1696219377489,
"lastModifiedBy": "Aqnn9hCDQPbyTWiq",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"description": "",
"sort": 0,
diff --git a/packsrc/playlists/Combat_rbwKY3elvEq5gdnu.json b/packsrc/playlists/Combat_rbwKY3elvEq5gdnu.json
index 78d68e4..6f7af93 100644
--- a/packsrc/playlists/Combat_rbwKY3elvEq5gdnu.json
+++ b/packsrc/playlists/Combat_rbwKY3elvEq5gdnu.json
@@ -58,12 +58,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.1.4",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1690754421539,
"modifiedTime": 1696219377489,
"lastModifiedBy": "Aqnn9hCDQPbyTWiq",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"description": "",
"sort": 100000,
diff --git a/packsrc/playlists/Forest__Day_dUnHqr0G8y6CAcop.json b/packsrc/playlists/Forest__Day_dUnHqr0G8y6CAcop.json
index a760b36..15a8ccd 100644
--- a/packsrc/playlists/Forest__Day_dUnHqr0G8y6CAcop.json
+++ b/packsrc/playlists/Forest__Day_dUnHqr0G8y6CAcop.json
@@ -73,12 +73,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.1.4",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1693072128156,
"modifiedTime": 1696219358389,
"lastModifiedBy": "Aqnn9hCDQPbyTWiq",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"description": "",
"sort": 0,
diff --git a/packsrc/playlists/Forest__Night_9fqziaqs18aJDpjP.json b/packsrc/playlists/Forest__Night_9fqziaqs18aJDpjP.json
index 2f0297f..6781b36 100644
--- a/packsrc/playlists/Forest__Night_9fqziaqs18aJDpjP.json
+++ b/packsrc/playlists/Forest__Night_9fqziaqs18aJDpjP.json
@@ -73,12 +73,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.1.4",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1693072225484,
"modifiedTime": 1696219358389,
"lastModifiedBy": "Aqnn9hCDQPbyTWiq",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"description": "",
"sort": 0,
diff --git a/packsrc/playlists/Rural_Settlement_ynw5hUH1ZPbAGq8g.json b/packsrc/playlists/Rural_Settlement_ynw5hUH1ZPbAGq8g.json
index 38623cc..f69119a 100644
--- a/packsrc/playlists/Rural_Settlement_ynw5hUH1ZPbAGq8g.json
+++ b/packsrc/playlists/Rural_Settlement_ynw5hUH1ZPbAGq8g.json
@@ -43,12 +43,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.1.4",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1690754607069,
"modifiedTime": 1696219377489,
"lastModifiedBy": "Aqnn9hCDQPbyTWiq",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"description": "",
"sort": 200000,
diff --git a/packsrc/playlists/Tavern_PD3AGCUqpHodoLit.json b/packsrc/playlists/Tavern_PD3AGCUqpHodoLit.json
index 5e88536..5105479 100644
--- a/packsrc/playlists/Tavern_PD3AGCUqpHodoLit.json
+++ b/packsrc/playlists/Tavern_PD3AGCUqpHodoLit.json
@@ -28,12 +28,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.1.4",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1690754527479,
"modifiedTime": 1696219377489,
"lastModifiedBy": "Aqnn9hCDQPbyTWiq",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"description": "",
"sort": 150000,
diff --git a/packsrc/playlists/Thunder_s4qUB7R1HdhA7wrv.json b/packsrc/playlists/Thunder_s4qUB7R1HdhA7wrv.json
index 50e32c3..2f65979 100644
--- a/packsrc/playlists/Thunder_s4qUB7R1HdhA7wrv.json
+++ b/packsrc/playlists/Thunder_s4qUB7R1HdhA7wrv.json
@@ -118,12 +118,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.1.4",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1690754331515,
"modifiedTime": 1696219358389,
"lastModifiedBy": "Aqnn9hCDQPbyTWiq",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"description": "",
"sort": 100000,
diff --git a/packsrc/playlists/Wilderness_17I7TlXzNqxG154i.json b/packsrc/playlists/Wilderness_17I7TlXzNqxG154i.json
index 2569481..1213b45 100644
--- a/packsrc/playlists/Wilderness_17I7TlXzNqxG154i.json
+++ b/packsrc/playlists/Wilderness_17I7TlXzNqxG154i.json
@@ -43,12 +43,13 @@
"_stats": {
"systemId": "swade",
"systemVersion": "3.1.4",
- "coreVersion": "12.328",
+ "coreVersion": "13.342",
"createdTime": 1692669673089,
"modifiedTime": 1696219377489,
"lastModifiedBy": "Aqnn9hCDQPbyTWiq",
"compendiumSource": null,
- "duplicateSource": null
+ "duplicateSource": null,
+ "exportSource": null
},
"description": "",
"sort": 0,