From cb49656cc852f80f8a0b01e173f59be9304c0aa9 Mon Sep 17 00:00:00 2001 From: dscarpac Date: Thu, 11 Jan 2024 15:13:50 -0600 Subject: [PATCH 01/11] added mouse mask --- objects/AllPlayerCards.15bb07.json | 4 +- .../MouseMask.32ad21.gmnotes | 18 ++++++ .../MouseMask.32ad21.json | 62 +++++++++++++++++++ 3 files changed, 83 insertions(+), 1 deletion(-) create mode 100644 objects/AllPlayerCards.15bb07/MouseMask.32ad21.gmnotes create mode 100644 objects/AllPlayerCards.15bb07/MouseMask.32ad21.json diff --git a/objects/AllPlayerCards.15bb07.json b/objects/AllPlayerCards.15bb07.json index b3cba98d..fd38d0c6 100644 --- a/objects/AllPlayerCards.15bb07.json +++ b/objects/AllPlayerCards.15bb07.json @@ -1642,7 +1642,9 @@ "SpeaktotheDead.c763aa", "Accursed.e91c5e", "ThrowTheBookAtThem.d617ab", - "FoxMask.4144cd" + "FoxMask.4144cd", + "MouseMask.32ad21" + ], "ContainedObjects_path": "AllPlayerCards.15bb07", "Description": "", diff --git a/objects/AllPlayerCards.15bb07/MouseMask.32ad21.gmnotes b/objects/AllPlayerCards.15bb07/MouseMask.32ad21.gmnotes new file mode 100644 index 00000000..34196068 --- /dev/null +++ b/objects/AllPlayerCards.15bb07/MouseMask.32ad21.gmnotes @@ -0,0 +1,18 @@ +{ + "id": "10043", + "type": "Asset", + "class": "Seeker", + "cost": 1, + "level": 0, + "traits": "Item. Charm. Mask.", + "willpowerIcons": 1, + "intellectIcons": 1, + "uses": [ + { + "count": 2, + "type": "Offering", + "token": "resource" + } + ], + "cycle": "The Feast of Hemlock Vale" +} \ No newline at end of file diff --git a/objects/AllPlayerCards.15bb07/MouseMask.32ad21.json b/objects/AllPlayerCards.15bb07/MouseMask.32ad21.json new file mode 100644 index 00000000..d345d856 --- /dev/null +++ b/objects/AllPlayerCards.15bb07/MouseMask.32ad21.json @@ -0,0 +1,62 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "CardID": 2400, + "ColorDiffuse": { + "b": 0.71324, + "g": 0.71324, + "r": 0.71324 + }, + "CustomDeck": { + "24": { + "BackIsHidden": true, + "BackURL": "https://i.imgur.com/EcbhVuh.jpg/", + "FaceURL": "http://cloud-3.steamusercontent.com/ugc/2317731538678126539/603CACA51D3BB18D8E97BB18CE9DE3A6E517AFF6/", + "NumHeight": 1, + "NumWidth": 1, + "Type": 0, + "UniqueBack": false + } + }, + "Description": "The Meek Watcher", + "DragSelectable": true, + "GMNotes_path": "AllPlayerCards.15bb07/MouseMask.32ad21.gmnotes", + "GUID": "32ad21", + "Grid": true, + "GridProjection": false, + "Hands": true, + "HideWhenFaceDown": true, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": false, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "CardCustom", + "Nickname": "Mouse Mask", + "SidewaysCard": false, + "Snap": true, + "Sticky": true, + "Tags": [ + "Asset", + "PlayerCard" + ], + "Tooltip": true, + "Transform": { + "posX": 13.082, + "posY": 3.548, + "posZ": -7.159, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 1, + "scaleY": 1, + "scaleZ": 1 + }, + "Value": 0, + "XmlUI": "" +} \ No newline at end of file From 3e333c3d2dd48fab58aad115c9fe587bb189bc02 Mon Sep 17 00:00:00 2001 From: dscarpac Date: Thu, 11 Jan 2024 15:55:32 -0600 Subject: [PATCH 02/11] added button to reshuffle encounter discard pile into deck --- objects/MythosArea.9f334f.json | 2 +- src/core/MythosArea.ttslua | 21 +++++++++++++++++++++ xml/MythosArea.xml | 10 ++++++++++ 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 xml/MythosArea.xml diff --git a/objects/MythosArea.9f334f.json b/objects/MythosArea.9f334f.json index 1eeead24..6565bb79 100644 --- a/objects/MythosArea.9f334f.json +++ b/objects/MythosArea.9f334f.json @@ -82,5 +82,5 @@ "scaleZ": 6.5 }, "Value": 0, - "XmlUI": "" + "XmlUI": "\u003cInclude src=\"MythosArea.xml\"/\u003e" } diff --git a/src/core/MythosArea.ttslua b/src/core/MythosArea.ttslua index a4f0f719..3b0cd774 100644 --- a/src/core/MythosArea.ttslua +++ b/src/core/MythosArea.ttslua @@ -201,6 +201,27 @@ function reshuffleEncounterDeck(params) Wait.time(function() isReshuffling = false end, 1) end +function discardIntoDeck() + --flag to avoid multiple calls + if isReshuffling then return end + isReshuffling = true + + -- flip deck and then shuffle + local discardPile = searchLib.atPosition(ENCOUNTER_DISCARD_POSITION, "isCardOrDeck") + if #discardPile > 0 then + local deck = discardPile[1] + if not deck.is_face_down then deck.flip() end + deck.setPositionSmooth(Vector(ENCOUNTER_DECK_POS) + Vector(0, 2, 0), false, true) + --wait until deck is in place .75 seconds, then shuffle + broadcastToAll("Shuffled encounter discard into deck.", "White") + Wait.time(function() searchLib.atPosition(ENCOUNTER_DECK_POS, "isCardOrDeck")[1].shuffle() end, .75) + else + broadcastToAll("Encounter discard pile is already empty.", "Red") + end + + -- disable flag + Wait.time(function() isReshuffling = false end, 1) +end --------------------------------------------------------- -- helper functions --------------------------------------------------------- diff --git a/xml/MythosArea.xml b/xml/MythosArea.xml new file mode 100644 index 00000000..80631181 --- /dev/null +++ b/xml/MythosArea.xml @@ -0,0 +1,10 @@ + + + + + + + \ No newline at end of file From 86f2329f5a150483780e8b181abee873dd43f222 Mon Sep 17 00:00:00 2001 From: dscarpac Date: Fri, 12 Jan 2024 14:33:32 -0600 Subject: [PATCH 03/11] made adjustments to merge with current encounter reshuffle function --- src/core/MythosArea.ttslua | 60 ++++++++++++++------------------------ xml/MythosArea.xml | 2 +- 2 files changed, 23 insertions(+), 39 deletions(-) diff --git a/src/core/MythosArea.ttslua b/src/core/MythosArea.ttslua index 3b0cd774..7814d3f7 100644 --- a/src/core/MythosArea.ttslua +++ b/src/core/MythosArea.ttslua @@ -134,13 +134,6 @@ end function getEncounterDeck() local searchResult = searchLib.atPosition(ENCOUNTER_DECK_POS, "isCardOrDeck") - for _, obj in ipairs(searchResult) do - if obj.type == 'Deck' then - return obj - end - end - - -- if no deck was found, return the first hit (a card) if #searchResult > 0 then return searchResult[1] end @@ -151,6 +144,7 @@ function drawEncounterCard(params) local encounterDeck = getEncounterDeck() if encounterDeck then + reshuffledAlready = false local card if encounterDeck.type == "Deck" then card = encounterDeck.takeObject() @@ -160,7 +154,14 @@ function drawEncounterCard(params) actualEncounterCardDraw(card, params) else -- nothing here, time to reshuffle - reshuffleEncounterDeck(params) + if reshuffledAlready == true then + reshuffledAlready = false + -- print something? + return + end + reshuffleEncounterDeck() -- if there is no discard pile either, reshuffleEncounterDeck will give an error message already + reshuffledAlready = true + drawEncounterCard(params) end end @@ -180,41 +181,24 @@ function actualEncounterCardDraw(card, params) deckLib.placeOrMergeIntoDeck(card, pos, { 0, rotY, faceUpRotation }) end -function reshuffleEncounterDeck(params) - -- flag to avoid multiple calls - if isReshuffling then return end - isReshuffling = true - - -- shuffle and flip deck, draw card after completion - local searchResult = searchLib.atPosition(ENCOUNTER_DISCARD_POSITION, "isCardOrDeck") - if #searchResult > 0 then - local deck = searchResult[1] - if not deck.is_face_down then deck.flip() end - deck.shuffle() - deck.setPositionSmooth(Vector(ENCOUNTER_DECK_POS) + Vector(0, 2, 0), false, true) - Wait.time(function() actualEncounterCardDraw(deck.takeObject({ index = 0 }), params) end, 0.5) - else - printToAll("Couldn't find encounter discard pile to reshuffle.", { 1, 0, 0 }) - end - - -- disable flag - Wait.time(function() isReshuffling = false end, 1) -end - -function discardIntoDeck() +function reshuffleEncounterDeck() --flag to avoid multiple calls if isReshuffling then return end isReshuffling = true - - -- flip deck and then shuffle + local encounterDeck = getEncounterDeck() local discardPile = searchLib.atPosition(ENCOUNTER_DISCARD_POSITION, "isCardOrDeck") + if #discardPile > 0 then - local deck = discardPile[1] - if not deck.is_face_down then deck.flip() end - deck.setPositionSmooth(Vector(ENCOUNTER_DECK_POS) + Vector(0, 2, 0), false, true) - --wait until deck is in place .75 seconds, then shuffle - broadcastToAll("Shuffled encounter discard into deck.", "White") - Wait.time(function() searchLib.atPosition(ENCOUNTER_DECK_POS, "isCardOrDeck")[1].shuffle() end, .75) + local discardDeck = discardPile[1] + if not discardDeck.is_face_down then discardDeck.setRotation({0, -90, 180}) end --flips discard pile + if encounterDeck == nil then + discardDeck.setPosition(Vector(ENCOUNTER_DECK_POS) + Vector({0, 1, 0})) + discardDeck.shuffle() + else + encounterDeck.putObject(discardDeck) + encounterDeck.shuffle() + end + broadcastToAll("Shuffled encounter discard into deck.", "White") else broadcastToAll("Encounter discard pile is already empty.", "Red") end diff --git a/xml/MythosArea.xml b/xml/MythosArea.xml index 80631181..07de2c8e 100644 --- a/xml/MythosArea.xml +++ b/xml/MythosArea.xml @@ -4,7 +4,7 @@ height="74" width="74"> - + \ No newline at end of file From e8269ed69c0b5fdea45b21f412d9b99b2ebbdac8 Mon Sep 17 00:00:00 2001 From: dscarpac Date: Sun, 14 Jan 2024 16:34:05 -0600 Subject: [PATCH 04/11] coding and button appearance updates --- src/core/MythosArea.ttslua | 9 +++++---- xml/MythosArea.xml | 13 +++---------- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/src/core/MythosArea.ttslua b/src/core/MythosArea.ttslua index 7814d3f7..b9b94001 100644 --- a/src/core/MythosArea.ttslua +++ b/src/core/MythosArea.ttslua @@ -156,7 +156,6 @@ function drawEncounterCard(params) -- nothing here, time to reshuffle if reshuffledAlready == true then reshuffledAlready = false - -- print something? return end reshuffleEncounterDeck() -- if there is no discard pile either, reshuffleEncounterDeck will give an error message already @@ -182,7 +181,7 @@ function actualEncounterCardDraw(card, params) end function reshuffleEncounterDeck() - --flag to avoid multiple calls + -- flag to avoid multiple calls if isReshuffling then return end isReshuffling = true local encounterDeck = getEncounterDeck() @@ -190,7 +189,9 @@ function reshuffleEncounterDeck() if #discardPile > 0 then local discardDeck = discardPile[1] - if not discardDeck.is_face_down then discardDeck.setRotation({0, -90, 180}) end --flips discard pile + if not discardDeck.is_face_down then --flips discard pile + discardDeck.setRotation({0, -90, 180}) + end if encounterDeck == nil then discardDeck.setPosition(Vector(ENCOUNTER_DECK_POS) + Vector({0, 1, 0})) discardDeck.shuffle() @@ -198,7 +199,7 @@ function reshuffleEncounterDeck() encounterDeck.putObject(discardDeck) encounterDeck.shuffle() end - broadcastToAll("Shuffled encounter discard into deck.", "White") + broadcastToAll("Shuffled encounter discard into deck.", "White") else broadcastToAll("Encounter discard pile is already empty.", "Red") end diff --git a/xml/MythosArea.xml b/xml/MythosArea.xml index 07de2c8e..bbe1cde1 100644 --- a/xml/MythosArea.xml +++ b/xml/MythosArea.xml @@ -1,10 +1,3 @@ - - - - - - - \ No newline at end of file + + + From 1699e3f07ade4ea5cdd32397f75d8498fbc896c2 Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Mon, 15 Jan 2024 11:07:41 +0100 Subject: [PATCH 05/11] added space --- xml/MythosArea.xml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/xml/MythosArea.xml b/xml/MythosArea.xml index bbe1cde1..07ac69e0 100644 --- a/xml/MythosArea.xml +++ b/xml/MythosArea.xml @@ -1,3 +1,11 @@ - - + + From 9c63578be2940b4e362eaf5ac255b97445f431b7 Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Mon, 15 Jan 2024 15:21:05 +0100 Subject: [PATCH 06/11] bugfix --- src/accessories/CleanUpHelper.ttslua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/accessories/CleanUpHelper.ttslua b/src/accessories/CleanUpHelper.ttslua index 022f9e2b..d6d18ada 100644 --- a/src/accessories/CleanUpHelper.ttslua +++ b/src/accessories/CleanUpHelper.ttslua @@ -121,7 +121,6 @@ function cleanUp(_, color) blessCurseManagerApi.removeAll(color) removeLines() discardHands() - tokenSpawnTrackerApi.resetAll() chaosBagApi.returnChaosTokens() chaosBagApi.releaseAllSealedTokens(color) @@ -317,6 +316,8 @@ function tidyPlayerMatCoroutine() end end + -- reset spawned data + tokenSpawnTrackerApi.resetAll() local datahelper = guidReferenceApi.getObjectByOwnerAndType("Mythos", "DataHelper") if datahelper then datahelper.setTable("SPAWNED_PLAYER_CARD_GUIDS", {}) From f92d5bc97d158c4cfa53724528a7947fc7dae4c2 Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Mon, 15 Jan 2024 17:07:44 +0100 Subject: [PATCH 07/11] added token cache --- config.json | 21 ++++++- modsettings/SnapPoints.json | 6 +- objects/-1.b644d2.json | 57 +++++++++++++++++++ objects/-2.8af600.json | 57 +++++++++++++++++++ objects/-3.a7a9cb.json | 57 +++++++++++++++++++ objects/-4.984eec.json | 57 +++++++++++++++++++ objects/-5.1df0a5.json | 57 +++++++++++++++++++ objects/-6.2460df.json | 57 +++++++++++++++++++ objects/-7.81a1d7.json | 57 +++++++++++++++++++ objects/-8.298b5f.json | 57 +++++++++++++++++++ objects/0.0a8592.json | 57 +++++++++++++++++++ objects/1.a15273.json | 57 +++++++++++++++++++ objects/AllPlayerCards.15bb07.json | 7 +-- ...965de.gmnotes => Confound3.9965de.gmnotes} | 0 ...ound.9965de.json => Confound3.9965de.json} | 0 .../ScrimshawCharm.c1fb2e.json | 2 +- ...d6.gmnotes => Strong-Armed1.294d6.gmnotes} | 0 ...d1.294d6.json => Strong-Armed1.294d6.json} | 4 +- .../SurvivalTechnique2.2ea0d4.json | 2 +- ...tes => ThrowtheBookatThem1.d617ab.gmnotes} | 0 ...b.json => ThrowtheBookatThem1.d617ab.json} | 4 +- objects/Auto-fail.e31821.json | 57 +++++++++++++++++++ objects/Bless.8e3aab.json | 57 +++++++++++++++++++ objects/Cultist.7d6103.json | 57 +++++++++++++++++++ objects/Curse.16a9a7.json | 57 +++++++++++++++++++ objects/ElderSign.0b1aca.json | 57 +++++++++++++++++++ objects/ElderThing.38609c.json | 57 +++++++++++++++++++ objects/FogOfWarTrigger.3aab97.json | 2 +- objects/Frost.b2b7be.json | 57 +++++++++++++++++++ objects/GameData.3dbe47.json | 6 +- objects/Skull.cc8bbb.json | 57 +++++++++++++++++++ objects/Tablet.1a1506.json | 57 +++++++++++++++++++ 32 files changed, 1119 insertions(+), 18 deletions(-) create mode 100644 objects/-1.b644d2.json create mode 100644 objects/-2.8af600.json create mode 100644 objects/-3.a7a9cb.json create mode 100644 objects/-4.984eec.json create mode 100644 objects/-5.1df0a5.json create mode 100644 objects/-6.2460df.json create mode 100644 objects/-7.81a1d7.json create mode 100644 objects/-8.298b5f.json create mode 100644 objects/0.0a8592.json create mode 100644 objects/1.a15273.json rename objects/AllPlayerCards.15bb07/{Confound.9965de.gmnotes => Confound3.9965de.gmnotes} (100%) rename objects/AllPlayerCards.15bb07/{Confound.9965de.json => Confound3.9965de.json} (100%) rename objects/AllPlayerCards.15bb07/{StrongArmed1.294d6.gmnotes => Strong-Armed1.294d6.gmnotes} (100%) rename objects/AllPlayerCards.15bb07/{StrongArmed1.294d6.json => Strong-Armed1.294d6.json} (94%) rename objects/AllPlayerCards.15bb07/{ThrowTheBookAtThem.d617ab.gmnotes => ThrowtheBookatThem1.d617ab.gmnotes} (100%) rename objects/AllPlayerCards.15bb07/{ThrowTheBookAtThem.d617ab.json => ThrowtheBookatThem1.d617ab.json} (94%) create mode 100644 objects/Auto-fail.e31821.json create mode 100644 objects/Bless.8e3aab.json create mode 100644 objects/Cultist.7d6103.json create mode 100644 objects/Curse.16a9a7.json create mode 100644 objects/ElderSign.0b1aca.json create mode 100644 objects/ElderThing.38609c.json create mode 100644 objects/Frost.b2b7be.json create mode 100644 objects/Skull.cc8bbb.json create mode 100644 objects/Tablet.1a1506.json diff --git a/config.json b/config.json index e0499e07..68e7796b 100644 --- a/config.json +++ b/config.json @@ -205,7 +205,26 @@ "ChaosBagManager.023240", "PlaceholderBoxDummy.a93466", "BaldursGateIII.695abd", - "ArkhamSCE340-11182023-Page1.964222" + "ArkhamSCE340-11182023-Page1.964222", + "1.a15273", + "0.0a8592", + "-1.b644d2", + "-2.8af600", + "-3.a7a9cb", + "-4.984eec", + "-5.1df0a5", + "-6.2460df", + "-7.81a1d7", + "-8.298b5f", + "Skull.cc8bbb", + "Cultist.7d6103", + "Tablet.1a1506", + "ElderThing.38609c", + "Auto-fail.e31821", + "ElderSign.0b1aca", + "Bless.8e3aab", + "Curse.16a9a7", + "Frost.b2b7be" ], "PlayArea": 1, "PlayerCounts": [ diff --git a/modsettings/SnapPoints.json b/modsettings/SnapPoints.json index 3cae06b2..0fca0905 100644 --- a/modsettings/SnapPoints.json +++ b/modsettings/SnapPoints.json @@ -321,9 +321,9 @@ }, { "Position": { - "x": 1.598, - "y": 1.583, - "z": -13.746 + "x": -28.643, + "y": 1.481, + "z": -38.649 }, "Rotation": { "x": 0, diff --git a/objects/-1.b644d2.json b/objects/-1.b644d2.json new file mode 100644 index 00000000..537275ff --- /dev/null +++ b/objects/-1.b644d2.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/w3XbrCC.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "b644d2", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "-1", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 2.545, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/-2.8af600.json b/objects/-2.8af600.json new file mode 100644 index 00000000..0e45190d --- /dev/null +++ b/objects/-2.8af600.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/bfTg2hb.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "8af600", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "-2", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 2.745, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/-3.a7a9cb.json b/objects/-3.a7a9cb.json new file mode 100644 index 00000000..5b113eef --- /dev/null +++ b/objects/-3.a7a9cb.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/yfs8gHq.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "a7a9cb", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "-3", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 77.999, + "posY": 2.245, + "posZ": -36.001, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/-4.984eec.json b/objects/-4.984eec.json new file mode 100644 index 00000000..8686635b --- /dev/null +++ b/objects/-4.984eec.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/qrgGQRD.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "984eec", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "-4", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 1.845, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/-5.1df0a5.json b/objects/-5.1df0a5.json new file mode 100644 index 00000000..7d453440 --- /dev/null +++ b/objects/-5.1df0a5.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/3Ym1IeG.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "1df0a5", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "-5", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 77.999, + "posY": 2.145, + "posZ": -36.001, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/-6.2460df.json b/objects/-6.2460df.json new file mode 100644 index 00000000..52d2db47 --- /dev/null +++ b/objects/-6.2460df.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/c9qdSzS.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "2460df", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "-6", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 77.998, + "posY": 1.345, + "posZ": -36.004, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/-7.81a1d7.json b/objects/-7.81a1d7.json new file mode 100644 index 00000000..bee515fd --- /dev/null +++ b/objects/-7.81a1d7.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/4WRD42n.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "81a1d7", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "-7", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 2.045, + "posZ": -36.001, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/-8.298b5f.json b/objects/-8.298b5f.json new file mode 100644 index 00000000..f51c4de5 --- /dev/null +++ b/objects/-8.298b5f.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/9t3rPTQ.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "298b5f", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "-8", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 2.945, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/0.0a8592.json b/objects/0.0a8592.json new file mode 100644 index 00000000..169b0652 --- /dev/null +++ b/objects/0.0a8592.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/btEtVfd.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "0a8592", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "0", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 2.845, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/1.a15273.json b/objects/1.a15273.json new file mode 100644 index 00000000..cfcb9b9f --- /dev/null +++ b/objects/1.a15273.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/uIx8jbY.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "a15273", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "+1", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 1.545, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/AllPlayerCards.15bb07.json b/objects/AllPlayerCards.15bb07.json index fd38d0c6..ab0f3aed 100644 --- a/objects/AllPlayerCards.15bb07.json +++ b/objects/AllPlayerCards.15bb07.json @@ -47,8 +47,8 @@ "TokenofFaith3.2ea0d1", "Transmogrify.9965dd", "Absolution.aef183", - "Confound.9965de", - "StrongArmed1.294d6", + "Confound3.9965de", + "Strong-Armed1.294d6", "SurvivalTechnique2.2ea0d4", "ScrimshawCharm.c1fb2e", "Vamp3.add233", @@ -1641,10 +1641,9 @@ "BlackmailFile.de456d", "SpeaktotheDead.c763aa", "Accursed.e91c5e", - "ThrowTheBookAtThem.d617ab", + "ThrowtheBookatThem.d617ab", "FoxMask.4144cd", "MouseMask.32ad21" - ], "ContainedObjects_path": "AllPlayerCards.15bb07", "Description": "", diff --git a/objects/AllPlayerCards.15bb07/Confound.9965de.gmnotes b/objects/AllPlayerCards.15bb07/Confound3.9965de.gmnotes similarity index 100% rename from objects/AllPlayerCards.15bb07/Confound.9965de.gmnotes rename to objects/AllPlayerCards.15bb07/Confound3.9965de.gmnotes diff --git a/objects/AllPlayerCards.15bb07/Confound.9965de.json b/objects/AllPlayerCards.15bb07/Confound3.9965de.json similarity index 100% rename from objects/AllPlayerCards.15bb07/Confound.9965de.json rename to objects/AllPlayerCards.15bb07/Confound3.9965de.json diff --git a/objects/AllPlayerCards.15bb07/ScrimshawCharm.c1fb2e.json b/objects/AllPlayerCards.15bb07/ScrimshawCharm.c1fb2e.json index 3cd8492d..2e235709 100644 --- a/objects/AllPlayerCards.15bb07/ScrimshawCharm.c1fb2e.json +++ b/objects/AllPlayerCards.15bb07/ScrimshawCharm.c1fb2e.json @@ -59,4 +59,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/StrongArmed1.294d6.gmnotes b/objects/AllPlayerCards.15bb07/Strong-Armed1.294d6.gmnotes similarity index 100% rename from objects/AllPlayerCards.15bb07/StrongArmed1.294d6.gmnotes rename to objects/AllPlayerCards.15bb07/Strong-Armed1.294d6.gmnotes diff --git a/objects/AllPlayerCards.15bb07/StrongArmed1.294d6.json b/objects/AllPlayerCards.15bb07/Strong-Armed1.294d6.json similarity index 94% rename from objects/AllPlayerCards.15bb07/StrongArmed1.294d6.json rename to objects/AllPlayerCards.15bb07/Strong-Armed1.294d6.json index f379c372..c0151b34 100644 --- a/objects/AllPlayerCards.15bb07/StrongArmed1.294d6.json +++ b/objects/AllPlayerCards.15bb07/Strong-Armed1.294d6.json @@ -24,7 +24,7 @@ }, "Description": "", "DragSelectable": true, - "GMNotes_path": "AllPlayerCards.15bb07/StrongArmed1.294d6.gmnotes", + "GMNotes_path": "AllPlayerCards.15bb07/Strong-Armed1.294d6.gmnotes", "GUID": "294d6", "Grid": true, "GridProjection": false, @@ -58,4 +58,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/SurvivalTechnique2.2ea0d4.json b/objects/AllPlayerCards.15bb07/SurvivalTechnique2.2ea0d4.json index 7152a665..f516a248 100644 --- a/objects/AllPlayerCards.15bb07/SurvivalTechnique2.2ea0d4.json +++ b/objects/AllPlayerCards.15bb07/SurvivalTechnique2.2ea0d4.json @@ -59,4 +59,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/ThrowTheBookAtThem.d617ab.gmnotes b/objects/AllPlayerCards.15bb07/ThrowtheBookatThem1.d617ab.gmnotes similarity index 100% rename from objects/AllPlayerCards.15bb07/ThrowTheBookAtThem.d617ab.gmnotes rename to objects/AllPlayerCards.15bb07/ThrowtheBookatThem1.d617ab.gmnotes diff --git a/objects/AllPlayerCards.15bb07/ThrowTheBookAtThem.d617ab.json b/objects/AllPlayerCards.15bb07/ThrowtheBookatThem1.d617ab.json similarity index 94% rename from objects/AllPlayerCards.15bb07/ThrowTheBookAtThem.d617ab.json rename to objects/AllPlayerCards.15bb07/ThrowtheBookatThem1.d617ab.json index a6c4ada0..dcb7c6bb 100644 --- a/objects/AllPlayerCards.15bb07/ThrowTheBookAtThem.d617ab.json +++ b/objects/AllPlayerCards.15bb07/ThrowtheBookatThem1.d617ab.json @@ -24,7 +24,7 @@ }, "Description": "", "DragSelectable": true, - "GMNotes_path": "AllPlayerCards.15bb07/ThrowTheBookAtThem.d617ab.gmnotes", + "GMNotes_path": "AllPlayerCards.15bb07/ThrowtheBookatThem.d617ab.gmnotes", "GUID": "d617ab", "Grid": true, "GridProjection": false, @@ -58,4 +58,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Auto-fail.e31821.json b/objects/Auto-fail.e31821.json new file mode 100644 index 00000000..ba91bee4 --- /dev/null +++ b/objects/Auto-fail.e31821.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/lns4fhz.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "e31821", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "Auto-fail", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 1.745, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/Bless.8e3aab.json b/objects/Bless.8e3aab.json new file mode 100644 index 00000000..6e86637f --- /dev/null +++ b/objects/Bless.8e3aab.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 0.04894, + "g": 0.32859, + "r": 0.37456 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/1655601092778627699/339FB716CB25CA6025C338F13AFDFD9AC6FA8356/", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "8e3aab", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "Bless", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 77.999, + "posY": 1.245, + "posZ": -36.002, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/Cultist.7d6103.json b/objects/Cultist.7d6103.json new file mode 100644 index 00000000..f35f5f54 --- /dev/null +++ b/objects/Cultist.7d6103.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/VzhJJaH.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "7d6103", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "Cultist", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 1.945, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/Curse.16a9a7.json b/objects/Curse.16a9a7.json new file mode 100644 index 00000000..22170ee1 --- /dev/null +++ b/objects/Curse.16a9a7.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 0.44425, + "g": 0.00387, + "r": 0.27072 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/1655601092778636039/2A25BD38E8C44701D80DD96BF0121DA21843672E/", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "16a9a7", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "Curse", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 1.145, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/ElderSign.0b1aca.json b/objects/ElderSign.0b1aca.json new file mode 100644 index 00000000..0c3eba13 --- /dev/null +++ b/objects/ElderSign.0b1aca.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/nEmqjmj.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "0b1aca", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "Elder Sign", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 1.645, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/ElderThing.38609c.json b/objects/ElderThing.38609c.json new file mode 100644 index 00000000..14e27bfc --- /dev/null +++ b/objects/ElderThing.38609c.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/ttnspKt.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "38609c", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "Elder Thing", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 2.445, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/FogOfWarTrigger.3aab97.json b/objects/FogOfWarTrigger.3aab97.json index 42a8b166..4ea396cb 100644 --- a/objects/FogOfWarTrigger.3aab97.json +++ b/objects/FogOfWarTrigger.3aab97.json @@ -6,7 +6,7 @@ }, "Autoraise": true, "ColorDiffuse": { - "a": 0.75, + "a": 0.25, "b": 0.168, "g": 0.701, "r": 0.192 diff --git a/objects/Frost.b2b7be.json b/objects/Frost.b2b7be.json new file mode 100644 index 00000000..f11c7234 --- /dev/null +++ b/objects/Frost.b2b7be.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 0.04894, + "g": 0.32859, + "r": 0.37456 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "http://cloud-3.steamusercontent.com/ugc/1858293462583104677/195F93C063A8881B805CE2FD4767A9718B27B6AE/", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "b2b7be", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "Frost", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 2.445, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 180, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/GameData.3dbe47.json b/objects/GameData.3dbe47.json index be58a685..92a87544 100644 --- a/objects/GameData.3dbe47.json +++ b/objects/GameData.3dbe47.json @@ -6,7 +6,7 @@ }, "Autoraise": true, "ColorDiffuse": { - "a": 0.75, + "a": 0.25, "b": 0.25, "g": 0.25, "r": 0.25 @@ -36,13 +36,13 @@ "Tooltip": true, "Transform": { "posX": 78, - "posY": 1.9, + "posY": 2.4, "posZ": 0, "rotX": 0, "rotY": 270, "rotZ": 0, "scaleX": 84, - "scaleY": 1.5, + "scaleY": 2.5, "scaleZ": 3 }, "Value": 0, diff --git a/objects/Skull.cc8bbb.json b/objects/Skull.cc8bbb.json new file mode 100644 index 00000000..4fc3444a --- /dev/null +++ b/objects/Skull.cc8bbb.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/stbBxtx.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "cc8bbb", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "Skull", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 2.645, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} diff --git a/objects/Tablet.1a1506.json b/objects/Tablet.1a1506.json new file mode 100644 index 00000000..c2a14fb3 --- /dev/null +++ b/objects/Tablet.1a1506.json @@ -0,0 +1,57 @@ +{ + "AltLookAngle": { + "x": 0, + "y": 0, + "z": 0 + }, + "Autoraise": true, + "ColorDiffuse": { + "b": 1, + "g": 1, + "r": 1 + }, + "CustomImage": { + "CustomTile": { + "Stackable": false, + "Stretch": true, + "Thickness": 0.1, + "Type": 2 + }, + "ImageScalar": 1, + "ImageSecondaryURL": "", + "ImageURL": "https://i.imgur.com/1plY463.png", + "WidthScale": 0 + }, + "Description": "", + "DragSelectable": true, + "GMNotes": "", + "GUID": "1a1506", + "Grid": true, + "GridProjection": false, + "Hands": false, + "HideWhenFaceDown": false, + "IgnoreFoW": false, + "LayoutGroupSortIndex": 0, + "Locked": true, + "LuaScript": "", + "LuaScriptState": "", + "MeasureMovement": false, + "Name": "Custom_Tile", + "Nickname": "Tablet", + "Snap": true, + "Sticky": true, + "Tooltip": true, + "Transform": { + "posX": 78, + "posY": 1.445, + "posZ": -36, + "rotX": 0, + "rotY": 270, + "rotZ": 0, + "scaleX": 0.81, + "scaleY": 1, + "scaleZ": 0.81 + }, + "Value": 0, + "XmlUI": "" +} From b72e49c12b6316b86d9f0f3d46705a5ca9db75f3 Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Mon, 15 Jan 2024 17:07:59 +0100 Subject: [PATCH 08/11] fixed name --- ...okatThem1.d617ab.gmnotes => ThrowtheBookatThem.d617ab.gmnotes} | 0 ...wtheBookatThem1.d617ab.json => ThrowtheBookatThem.d617ab.json} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename objects/AllPlayerCards.15bb07/{ThrowtheBookatThem1.d617ab.gmnotes => ThrowtheBookatThem.d617ab.gmnotes} (100%) rename objects/AllPlayerCards.15bb07/{ThrowtheBookatThem1.d617ab.json => ThrowtheBookatThem.d617ab.json} (100%) diff --git a/objects/AllPlayerCards.15bb07/ThrowtheBookatThem1.d617ab.gmnotes b/objects/AllPlayerCards.15bb07/ThrowtheBookatThem.d617ab.gmnotes similarity index 100% rename from objects/AllPlayerCards.15bb07/ThrowtheBookatThem1.d617ab.gmnotes rename to objects/AllPlayerCards.15bb07/ThrowtheBookatThem.d617ab.gmnotes diff --git a/objects/AllPlayerCards.15bb07/ThrowtheBookatThem1.d617ab.json b/objects/AllPlayerCards.15bb07/ThrowtheBookatThem.d617ab.json similarity index 100% rename from objects/AllPlayerCards.15bb07/ThrowtheBookatThem1.d617ab.json rename to objects/AllPlayerCards.15bb07/ThrowtheBookatThem.d617ab.json From 9959cbcfd6805dcbd362932c75e1b0045bbad384 Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Mon, 15 Jan 2024 17:16:16 +0100 Subject: [PATCH 09/11] renaming --- config.json | 38 +++++++++---------- .../Confound3.9965de.json | 2 +- ....b644d2.json => Tokencache_-1.b644d2.json} | 4 +- ....8af600.json => Tokencache_-2.8af600.json} | 4 +- ....a7a9cb.json => Tokencache_-3.a7a9cb.json} | 4 +- ....984eec.json => Tokencache_-4.984eec.json} | 4 +- ....1df0a5.json => Tokencache_-5.1df0a5.json} | 4 +- ....2460df.json => Tokencache_-6.2460df.json} | 4 +- ....81a1d7.json => Tokencache_-7.81a1d7.json} | 4 +- ....298b5f.json => Tokencache_-8.298b5f.json} | 4 +- ...0.0a8592.json => Tokencache_0.0a8592.json} | 4 +- ...1.a15273.json => Tokencache_1.a15273.json} | 4 +- ....json => Tokencache_Auto-fail.e31821.json} | 4 +- ...3aab.json => Tokencache_Bless.8e3aab.json} | 4 +- ...03.json => Tokencache_Cultist.7d6103.json} | 4 +- ...a9a7.json => Tokencache_Curse.16a9a7.json} | 4 +- ....json => Tokencache_ElderSign.0b1aca.json} | 4 +- ...json => Tokencache_ElderThing.38609c.json} | 4 +- ...b7be.json => Tokencache_Frost.b2b7be.json} | 4 +- ...8bbb.json => Tokencache_Skull.cc8bbb.json} | 4 +- ...506.json => Tokencache_Tablet.1a1506.json} | 4 +- 21 files changed, 58 insertions(+), 58 deletions(-) rename objects/{-1.b644d2.json => Tokencache_-1.b644d2.json} (96%) rename objects/{-2.8af600.json => Tokencache_-2.8af600.json} (96%) rename objects/{-3.a7a9cb.json => Tokencache_-3.a7a9cb.json} (96%) rename objects/{-4.984eec.json => Tokencache_-4.984eec.json} (96%) rename objects/{-5.1df0a5.json => Tokencache_-5.1df0a5.json} (96%) rename objects/{-6.2460df.json => Tokencache_-6.2460df.json} (96%) rename objects/{-7.81a1d7.json => Tokencache_-7.81a1d7.json} (96%) rename objects/{-8.298b5f.json => Tokencache_-8.298b5f.json} (96%) rename objects/{0.0a8592.json => Tokencache_0.0a8592.json} (96%) rename objects/{1.a15273.json => Tokencache_1.a15273.json} (96%) rename objects/{Auto-fail.e31821.json => Tokencache_Auto-fail.e31821.json} (96%) rename objects/{Bless.8e3aab.json => Tokencache_Bless.8e3aab.json} (96%) rename objects/{Cultist.7d6103.json => Tokencache_Cultist.7d6103.json} (96%) rename objects/{Curse.16a9a7.json => Tokencache_Curse.16a9a7.json} (96%) rename objects/{ElderSign.0b1aca.json => Tokencache_ElderSign.0b1aca.json} (96%) rename objects/{ElderThing.38609c.json => Tokencache_ElderThing.38609c.json} (96%) rename objects/{Frost.b2b7be.json => Tokencache_Frost.b2b7be.json} (96%) rename objects/{Skull.cc8bbb.json => Tokencache_Skull.cc8bbb.json} (96%) rename objects/{Tablet.1a1506.json => Tokencache_Tablet.1a1506.json} (96%) diff --git a/config.json b/config.json index 68e7796b..07e2bfee 100644 --- a/config.json +++ b/config.json @@ -206,25 +206,25 @@ "PlaceholderBoxDummy.a93466", "BaldursGateIII.695abd", "ArkhamSCE340-11182023-Page1.964222", - "1.a15273", - "0.0a8592", - "-1.b644d2", - "-2.8af600", - "-3.a7a9cb", - "-4.984eec", - "-5.1df0a5", - "-6.2460df", - "-7.81a1d7", - "-8.298b5f", - "Skull.cc8bbb", - "Cultist.7d6103", - "Tablet.1a1506", - "ElderThing.38609c", - "Auto-fail.e31821", - "ElderSign.0b1aca", - "Bless.8e3aab", - "Curse.16a9a7", - "Frost.b2b7be" + "Tokencache_1.a15273", + "Tokencache_0.0a8592", + "Tokencache_-1.b644d2", + "Tokencache_-2.8af600", + "Tokencache_-3.a7a9cb", + "Tokencache_-4.984eec", + "Tokencache_-5.1df0a5", + "Tokencache_-6.2460df", + "Tokencache_-7.81a1d7", + "Tokencache_-8.298b5f", + "Tokencache_Skull.cc8bbb", + "Tokencache_Cultist.7d6103", + "Tokencache_Tablet.1a1506", + "Tokencache_ElderThing.38609c", + "Tokencache_Auto-fail.e31821", + "Tokencache_ElderSign.0b1aca", + "Tokencache_Bless.8e3aab", + "Tokencache_Curse.16a9a7", + "Tokencache_Frost.b2b7be" ], "PlayArea": 1, "PlayerCounts": [ diff --git a/objects/AllPlayerCards.15bb07/Confound3.9965de.json b/objects/AllPlayerCards.15bb07/Confound3.9965de.json index a6e974b0..2a063511 100644 --- a/objects/AllPlayerCards.15bb07/Confound3.9965de.json +++ b/objects/AllPlayerCards.15bb07/Confound3.9965de.json @@ -24,7 +24,7 @@ }, "Description": "", "DragSelectable": true, - "GMNotes_path": "AllPlayerCards.15bb07/Confound.9965de.gmnotes", + "GMNotes_path": "AllPlayerCards.15bb07/Confound3.9965de.gmnotes", "GUID": "9965de", "Grid": true, "GridProjection": false, diff --git a/objects/-1.b644d2.json b/objects/Tokencache_-1.b644d2.json similarity index 96% rename from objects/-1.b644d2.json rename to objects/Tokencache_-1.b644d2.json index 537275ff..b67a16fd 100644 --- a/objects/-1.b644d2.json +++ b/objects/Tokencache_-1.b644d2.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "-1", + "Nickname": "Tokencache_-1", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/-2.8af600.json b/objects/Tokencache_-2.8af600.json similarity index 96% rename from objects/-2.8af600.json rename to objects/Tokencache_-2.8af600.json index 0e45190d..f9aef810 100644 --- a/objects/-2.8af600.json +++ b/objects/Tokencache_-2.8af600.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "-2", + "Nickname": "Tokencache_-2", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/-3.a7a9cb.json b/objects/Tokencache_-3.a7a9cb.json similarity index 96% rename from objects/-3.a7a9cb.json rename to objects/Tokencache_-3.a7a9cb.json index 5b113eef..daed16c4 100644 --- a/objects/-3.a7a9cb.json +++ b/objects/Tokencache_-3.a7a9cb.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "-3", + "Nickname": "Tokencache_-3", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/-4.984eec.json b/objects/Tokencache_-4.984eec.json similarity index 96% rename from objects/-4.984eec.json rename to objects/Tokencache_-4.984eec.json index 8686635b..ff025fd8 100644 --- a/objects/-4.984eec.json +++ b/objects/Tokencache_-4.984eec.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "-4", + "Nickname": "Tokencache_-4", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/-5.1df0a5.json b/objects/Tokencache_-5.1df0a5.json similarity index 96% rename from objects/-5.1df0a5.json rename to objects/Tokencache_-5.1df0a5.json index 7d453440..373bafc6 100644 --- a/objects/-5.1df0a5.json +++ b/objects/Tokencache_-5.1df0a5.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "-5", + "Nickname": "Tokencache_-5", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/-6.2460df.json b/objects/Tokencache_-6.2460df.json similarity index 96% rename from objects/-6.2460df.json rename to objects/Tokencache_-6.2460df.json index 52d2db47..2e3ba3b8 100644 --- a/objects/-6.2460df.json +++ b/objects/Tokencache_-6.2460df.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "-6", + "Nickname": "Tokencache_-6", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/-7.81a1d7.json b/objects/Tokencache_-7.81a1d7.json similarity index 96% rename from objects/-7.81a1d7.json rename to objects/Tokencache_-7.81a1d7.json index bee515fd..2d8b8dec 100644 --- a/objects/-7.81a1d7.json +++ b/objects/Tokencache_-7.81a1d7.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "-7", + "Nickname": "Tokencache_-7", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/-8.298b5f.json b/objects/Tokencache_-8.298b5f.json similarity index 96% rename from objects/-8.298b5f.json rename to objects/Tokencache_-8.298b5f.json index f51c4de5..8d4e3ab9 100644 --- a/objects/-8.298b5f.json +++ b/objects/Tokencache_-8.298b5f.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "-8", + "Nickname": "Tokencache_-8", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/0.0a8592.json b/objects/Tokencache_0.0a8592.json similarity index 96% rename from objects/0.0a8592.json rename to objects/Tokencache_0.0a8592.json index 169b0652..b15666e8 100644 --- a/objects/0.0a8592.json +++ b/objects/Tokencache_0.0a8592.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "0", + "Nickname": "Tokencache_0", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/1.a15273.json b/objects/Tokencache_1.a15273.json similarity index 96% rename from objects/1.a15273.json rename to objects/Tokencache_1.a15273.json index cfcb9b9f..7f7da708 100644 --- a/objects/1.a15273.json +++ b/objects/Tokencache_1.a15273.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "+1", + "Nickname": "Tokencache_+1", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/Auto-fail.e31821.json b/objects/Tokencache_Auto-fail.e31821.json similarity index 96% rename from objects/Auto-fail.e31821.json rename to objects/Tokencache_Auto-fail.e31821.json index ba91bee4..24e19943 100644 --- a/objects/Auto-fail.e31821.json +++ b/objects/Tokencache_Auto-fail.e31821.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "Auto-fail", + "Nickname": "Tokencache_Auto-fail", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/Bless.8e3aab.json b/objects/Tokencache_Bless.8e3aab.json similarity index 96% rename from objects/Bless.8e3aab.json rename to objects/Tokencache_Bless.8e3aab.json index 6e86637f..7332ca47 100644 --- a/objects/Bless.8e3aab.json +++ b/objects/Tokencache_Bless.8e3aab.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "Bless", + "Nickname": "Tokencache_Bless", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/Cultist.7d6103.json b/objects/Tokencache_Cultist.7d6103.json similarity index 96% rename from objects/Cultist.7d6103.json rename to objects/Tokencache_Cultist.7d6103.json index f35f5f54..fc1a27a2 100644 --- a/objects/Cultist.7d6103.json +++ b/objects/Tokencache_Cultist.7d6103.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "Cultist", + "Nickname": "Tokencache_Cultist", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/Curse.16a9a7.json b/objects/Tokencache_Curse.16a9a7.json similarity index 96% rename from objects/Curse.16a9a7.json rename to objects/Tokencache_Curse.16a9a7.json index 22170ee1..fb151457 100644 --- a/objects/Curse.16a9a7.json +++ b/objects/Tokencache_Curse.16a9a7.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "Curse", + "Nickname": "Tokencache_Curse", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/ElderSign.0b1aca.json b/objects/Tokencache_ElderSign.0b1aca.json similarity index 96% rename from objects/ElderSign.0b1aca.json rename to objects/Tokencache_ElderSign.0b1aca.json index 0c3eba13..f439d53d 100644 --- a/objects/ElderSign.0b1aca.json +++ b/objects/Tokencache_ElderSign.0b1aca.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "Elder Sign", + "Nickname": "Tokencache_Elder Sign", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/ElderThing.38609c.json b/objects/Tokencache_ElderThing.38609c.json similarity index 96% rename from objects/ElderThing.38609c.json rename to objects/Tokencache_ElderThing.38609c.json index 14e27bfc..02e53038 100644 --- a/objects/ElderThing.38609c.json +++ b/objects/Tokencache_ElderThing.38609c.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "Elder Thing", + "Nickname": "Tokencache_Elder Thing", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/Frost.b2b7be.json b/objects/Tokencache_Frost.b2b7be.json similarity index 96% rename from objects/Frost.b2b7be.json rename to objects/Tokencache_Frost.b2b7be.json index f11c7234..2b3301bb 100644 --- a/objects/Frost.b2b7be.json +++ b/objects/Tokencache_Frost.b2b7be.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "Frost", + "Nickname": "Tokencache_Frost", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/Skull.cc8bbb.json b/objects/Tokencache_Skull.cc8bbb.json similarity index 96% rename from objects/Skull.cc8bbb.json rename to objects/Tokencache_Skull.cc8bbb.json index 4fc3444a..92a18a9b 100644 --- a/objects/Skull.cc8bbb.json +++ b/objects/Tokencache_Skull.cc8bbb.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "Skull", + "Nickname": "Tokencache_Skull", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file diff --git a/objects/Tablet.1a1506.json b/objects/Tokencache_Tablet.1a1506.json similarity index 96% rename from objects/Tablet.1a1506.json rename to objects/Tokencache_Tablet.1a1506.json index c2a14fb3..0bc6a5a9 100644 --- a/objects/Tablet.1a1506.json +++ b/objects/Tokencache_Tablet.1a1506.json @@ -37,7 +37,7 @@ "LuaScriptState": "", "MeasureMovement": false, "Name": "Custom_Tile", - "Nickname": "Tablet", + "Nickname": "Tokencache_Tablet", "Snap": true, "Sticky": true, "Tooltip": true, @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} +} \ No newline at end of file From 3da5afcc8fb26bebcaf2f28b3098ce137ad7959f Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Mon, 15 Jan 2024 17:17:00 +0100 Subject: [PATCH 10/11] end of file new lines --- config.json | 1 + objects/AllPlayerCards.15bb07/Absolution.aef183.json | 2 +- objects/AllPlayerCards.15bb07/BuriedSecrets.28080e.json | 2 +- objects/AllPlayerCards.15bb07/Confound3.9965de.json | 2 +- objects/AllPlayerCards.15bb07/MontereyJackParallel.46b146.json | 2 +- .../AllPlayerCards.15bb07/MontereyJackParallelBack.46b148.json | 2 +- .../AllPlayerCards.15bb07/MontereyJackParallelFront.46b147.json | 2 +- objects/AllPlayerCards.15bb07/MouseMask.32ad21.gmnotes | 2 +- objects/AllPlayerCards.15bb07/MouseMask.32ad21.json | 2 +- objects/AllPlayerCards.15bb07/TrustyBullwhip.ca9a61.json | 2 +- objects/AllPlayerCards.15bb07/Vamp3.add233.json | 2 +- objects/AllPlayerCards.15bb07/WolfMask.975d89.json | 2 +- objects/Tokencache_-1.b644d2.json | 2 +- objects/Tokencache_-2.8af600.json | 2 +- objects/Tokencache_-3.a7a9cb.json | 2 +- objects/Tokencache_-4.984eec.json | 2 +- objects/Tokencache_-5.1df0a5.json | 2 +- objects/Tokencache_-6.2460df.json | 2 +- objects/Tokencache_-7.81a1d7.json | 2 +- objects/Tokencache_-8.298b5f.json | 2 +- objects/Tokencache_0.0a8592.json | 2 +- objects/Tokencache_1.a15273.json | 2 +- objects/Tokencache_Auto-fail.e31821.json | 2 +- objects/Tokencache_Bless.8e3aab.json | 2 +- objects/Tokencache_Cultist.7d6103.json | 2 +- objects/Tokencache_Curse.16a9a7.json | 2 +- objects/Tokencache_ElderSign.0b1aca.json | 2 +- objects/Tokencache_ElderThing.38609c.json | 2 +- objects/Tokencache_Frost.b2b7be.json | 2 +- objects/Tokencache_Skull.cc8bbb.json | 2 +- objects/Tokencache_Tablet.1a1506.json | 2 +- 31 files changed, 31 insertions(+), 30 deletions(-) diff --git a/config.json b/config.json index 07e2bfee..06ac5882 100644 --- a/config.json +++ b/config.json @@ -3,6 +3,7 @@ "ComponentTags_path": "ComponentTags.json", "CustomUIAssets_path": "CustomUIAssets.json", "DecalPallet_path": "DecalPallet.json", + "Decals": [], "GameComplexity": "", "GameMode": "Arkham Horror LCG - Super Complete Edition", "GameType": "", diff --git a/objects/AllPlayerCards.15bb07/Absolution.aef183.json b/objects/AllPlayerCards.15bb07/Absolution.aef183.json index a0bb2d1b..ea6cc794 100644 --- a/objects/AllPlayerCards.15bb07/Absolution.aef183.json +++ b/objects/AllPlayerCards.15bb07/Absolution.aef183.json @@ -58,4 +58,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/BuriedSecrets.28080e.json b/objects/AllPlayerCards.15bb07/BuriedSecrets.28080e.json index 9902422f..d116bd57 100644 --- a/objects/AllPlayerCards.15bb07/BuriedSecrets.28080e.json +++ b/objects/AllPlayerCards.15bb07/BuriedSecrets.28080e.json @@ -58,4 +58,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/Confound3.9965de.json b/objects/AllPlayerCards.15bb07/Confound3.9965de.json index 2a063511..c7b7332e 100644 --- a/objects/AllPlayerCards.15bb07/Confound3.9965de.json +++ b/objects/AllPlayerCards.15bb07/Confound3.9965de.json @@ -58,4 +58,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/MontereyJackParallel.46b146.json b/objects/AllPlayerCards.15bb07/MontereyJackParallel.46b146.json index ee41bd06..1b061e9a 100644 --- a/objects/AllPlayerCards.15bb07/MontereyJackParallel.46b146.json +++ b/objects/AllPlayerCards.15bb07/MontereyJackParallel.46b146.json @@ -59,4 +59,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/MontereyJackParallelBack.46b148.json b/objects/AllPlayerCards.15bb07/MontereyJackParallelBack.46b148.json index f3117f03..99f523d0 100644 --- a/objects/AllPlayerCards.15bb07/MontereyJackParallelBack.46b148.json +++ b/objects/AllPlayerCards.15bb07/MontereyJackParallelBack.46b148.json @@ -59,4 +59,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/MontereyJackParallelFront.46b147.json b/objects/AllPlayerCards.15bb07/MontereyJackParallelFront.46b147.json index 232bb3ed..c79d005a 100644 --- a/objects/AllPlayerCards.15bb07/MontereyJackParallelFront.46b147.json +++ b/objects/AllPlayerCards.15bb07/MontereyJackParallelFront.46b147.json @@ -59,4 +59,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/MouseMask.32ad21.gmnotes b/objects/AllPlayerCards.15bb07/MouseMask.32ad21.gmnotes index 34196068..623dcd23 100644 --- a/objects/AllPlayerCards.15bb07/MouseMask.32ad21.gmnotes +++ b/objects/AllPlayerCards.15bb07/MouseMask.32ad21.gmnotes @@ -15,4 +15,4 @@ } ], "cycle": "The Feast of Hemlock Vale" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/MouseMask.32ad21.json b/objects/AllPlayerCards.15bb07/MouseMask.32ad21.json index d345d856..8e173a50 100644 --- a/objects/AllPlayerCards.15bb07/MouseMask.32ad21.json +++ b/objects/AllPlayerCards.15bb07/MouseMask.32ad21.json @@ -59,4 +59,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/TrustyBullwhip.ca9a61.json b/objects/AllPlayerCards.15bb07/TrustyBullwhip.ca9a61.json index 75cce435..e4bef902 100644 --- a/objects/AllPlayerCards.15bb07/TrustyBullwhip.ca9a61.json +++ b/objects/AllPlayerCards.15bb07/TrustyBullwhip.ca9a61.json @@ -59,4 +59,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/Vamp3.add233.json b/objects/AllPlayerCards.15bb07/Vamp3.add233.json index 10146d70..d089c3d8 100644 --- a/objects/AllPlayerCards.15bb07/Vamp3.add233.json +++ b/objects/AllPlayerCards.15bb07/Vamp3.add233.json @@ -58,4 +58,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/AllPlayerCards.15bb07/WolfMask.975d89.json b/objects/AllPlayerCards.15bb07/WolfMask.975d89.json index 63db211e..4337805c 100644 --- a/objects/AllPlayerCards.15bb07/WolfMask.975d89.json +++ b/objects/AllPlayerCards.15bb07/WolfMask.975d89.json @@ -59,4 +59,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_-1.b644d2.json b/objects/Tokencache_-1.b644d2.json index b67a16fd..5526a98d 100644 --- a/objects/Tokencache_-1.b644d2.json +++ b/objects/Tokencache_-1.b644d2.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_-2.8af600.json b/objects/Tokencache_-2.8af600.json index f9aef810..907534d9 100644 --- a/objects/Tokencache_-2.8af600.json +++ b/objects/Tokencache_-2.8af600.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_-3.a7a9cb.json b/objects/Tokencache_-3.a7a9cb.json index daed16c4..8da0006e 100644 --- a/objects/Tokencache_-3.a7a9cb.json +++ b/objects/Tokencache_-3.a7a9cb.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_-4.984eec.json b/objects/Tokencache_-4.984eec.json index ff025fd8..1dffe951 100644 --- a/objects/Tokencache_-4.984eec.json +++ b/objects/Tokencache_-4.984eec.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_-5.1df0a5.json b/objects/Tokencache_-5.1df0a5.json index 373bafc6..6af33256 100644 --- a/objects/Tokencache_-5.1df0a5.json +++ b/objects/Tokencache_-5.1df0a5.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_-6.2460df.json b/objects/Tokencache_-6.2460df.json index 2e3ba3b8..acd7f0c3 100644 --- a/objects/Tokencache_-6.2460df.json +++ b/objects/Tokencache_-6.2460df.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_-7.81a1d7.json b/objects/Tokencache_-7.81a1d7.json index 2d8b8dec..70bcda63 100644 --- a/objects/Tokencache_-7.81a1d7.json +++ b/objects/Tokencache_-7.81a1d7.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_-8.298b5f.json b/objects/Tokencache_-8.298b5f.json index 8d4e3ab9..2009cf05 100644 --- a/objects/Tokencache_-8.298b5f.json +++ b/objects/Tokencache_-8.298b5f.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_0.0a8592.json b/objects/Tokencache_0.0a8592.json index b15666e8..1a2cf7e9 100644 --- a/objects/Tokencache_0.0a8592.json +++ b/objects/Tokencache_0.0a8592.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_1.a15273.json b/objects/Tokencache_1.a15273.json index 7f7da708..6c10066e 100644 --- a/objects/Tokencache_1.a15273.json +++ b/objects/Tokencache_1.a15273.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_Auto-fail.e31821.json b/objects/Tokencache_Auto-fail.e31821.json index 24e19943..0e03c174 100644 --- a/objects/Tokencache_Auto-fail.e31821.json +++ b/objects/Tokencache_Auto-fail.e31821.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_Bless.8e3aab.json b/objects/Tokencache_Bless.8e3aab.json index 7332ca47..3cbab6e9 100644 --- a/objects/Tokencache_Bless.8e3aab.json +++ b/objects/Tokencache_Bless.8e3aab.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_Cultist.7d6103.json b/objects/Tokencache_Cultist.7d6103.json index fc1a27a2..7696d059 100644 --- a/objects/Tokencache_Cultist.7d6103.json +++ b/objects/Tokencache_Cultist.7d6103.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_Curse.16a9a7.json b/objects/Tokencache_Curse.16a9a7.json index fb151457..55b373c5 100644 --- a/objects/Tokencache_Curse.16a9a7.json +++ b/objects/Tokencache_Curse.16a9a7.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_ElderSign.0b1aca.json b/objects/Tokencache_ElderSign.0b1aca.json index f439d53d..f962f0b9 100644 --- a/objects/Tokencache_ElderSign.0b1aca.json +++ b/objects/Tokencache_ElderSign.0b1aca.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_ElderThing.38609c.json b/objects/Tokencache_ElderThing.38609c.json index 02e53038..32721112 100644 --- a/objects/Tokencache_ElderThing.38609c.json +++ b/objects/Tokencache_ElderThing.38609c.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_Frost.b2b7be.json b/objects/Tokencache_Frost.b2b7be.json index 2b3301bb..fd63ae5f 100644 --- a/objects/Tokencache_Frost.b2b7be.json +++ b/objects/Tokencache_Frost.b2b7be.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_Skull.cc8bbb.json b/objects/Tokencache_Skull.cc8bbb.json index 92a18a9b..2857fd17 100644 --- a/objects/Tokencache_Skull.cc8bbb.json +++ b/objects/Tokencache_Skull.cc8bbb.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} diff --git a/objects/Tokencache_Tablet.1a1506.json b/objects/Tokencache_Tablet.1a1506.json index 0bc6a5a9..55ef9a99 100644 --- a/objects/Tokencache_Tablet.1a1506.json +++ b/objects/Tokencache_Tablet.1a1506.json @@ -54,4 +54,4 @@ }, "Value": 0, "XmlUI": "" -} \ No newline at end of file +} From 55c9ec456ec92ee68bad24061dbd1357df6e163b Mon Sep 17 00:00:00 2001 From: Chr1Z93 Date: Mon, 15 Jan 2024 17:32:57 +0100 Subject: [PATCH 11/11] added ui asset --- objects/MythosArea.9f334f.json | 7 +++++++ xml/MythosArea.xml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/objects/MythosArea.9f334f.json b/objects/MythosArea.9f334f.json index 6565bb79..32bc9eca 100644 --- a/objects/MythosArea.9f334f.json +++ b/objects/MythosArea.9f334f.json @@ -48,6 +48,13 @@ "ImageURL": "http://cloud-3.steamusercontent.com/ugc/952965089462071147/F586DAA07E810B16A62C23AE2EA526BE3C7FD7FB/", "WidthScale": 0 }, + "CustomUIAssets": [ + { + "Name": "font_teutonic-arkham", + "Type": 1, + "URL": "http://cloud-3.steamusercontent.com/ugc/2027213118467703445/89328E273B4C5180BF491516CE998DE3C604E162/" + } + ], "Description": "", "DragSelectable": true, "GMNotes": "", diff --git a/xml/MythosArea.xml b/xml/MythosArea.xml index 07ac69e0..356838c1 100644 --- a/xml/MythosArea.xml +++ b/xml/MythosArea.xml @@ -7,5 +7,5 @@ textColors="#ffffff|#88e3cf|#4f8478" font="font_teutonic-arkham" fontSize="62" - onClick="reshuffleEncounterDeck">Reshuffle ➡ + onClick="reshuffleEncounterDeck">Reshuffle ➡